Skip to content

Commit 4f13e2e

Browse files
ivankellerdlech
authored andcommitted
Update setting-up-an-nfs-file-share.md
Add `sudo` in front systemctl commands on EV3 to avoid Permission denied error
1 parent 7770ffe commit 4f13e2e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/tutorials/setting-up-an-nfs-file-share.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ Now update the fstab on the EV3.
103103

104104
On the EV3 we first need to enable and start NFS modules. Type these commands on the command line:
105105

106-
systemctl enable nfs-common.service
107-
systemctl start nfs-common.service
108-
systemctl enable rpcbind.service
109-
systemctl start rpcbind.service
106+
sudo systemctl enable nfs-common.service
107+
sudo systemctl start nfs-common.service
108+
sudo systemctl enable rpcbind.service
109+
sudo systemctl start rpcbind.service
110110

111111
Next you'll need to update a file (as root) called `/etc/fstab`. You should have already set up USB Networking, so `ssh` to the EV3 and run an editor like `vi` or `nano` to edit the file. Here's the line you want to add to `/etc/fstab` - DO NOT TOUCH ANYTHING ELSE IN THERE!
112112

0 commit comments

Comments
 (0)