You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -21,19 +21,19 @@ Download Raspbian (choose whether you want desktop or just CLI, I use the CLI):
21
21
2) If using a desktop version, find how to start the terminal as this will be where you do all your install / config.
22
22
3) Add your own user and give them sudo permissions, run these commands, as is (changing names):
23
23
24
-
`adduser tobias`
24
+
`adduser exampleuser`
25
25
26
-
`usermod -aG sudo tobias`
26
+
`usermod -aG sudo exampleuser`
27
27
28
28
`vi /etc/sudoers`
29
29
30
30
Check out some VI commands here if you need some help - https://kb.iu.edu/d/afdc
31
31
32
-
4) Paste `tobias ALL=(ALL) NOPASSWD: ALL` (changing the username to the one you just created) into your /etc/sudoers file so that you can sudo around without a password, it should looks like so:
32
+
4) Paste `exampleuser ALL=(ALL) NOPASSWD: ALL` (changing the username to the one you just created) into your /etc/sudoers file so that you can sudo around without a password, it should looks like so:
33
33
34
34
```# User privilege specification
35
35
root ALL=(ALL:ALL) ALL
36
-
tobias ALL=(ALL) NOPASSWD: ALL
36
+
exampleuser ALL=(ALL) NOPASSWD: ALL
37
37
# Allow members of group sudo to execute any command
38
38
%sudo ALL=(ALL:ALL) ALL
39
39
```
@@ -294,9 +294,9 @@ Once PiVPN has been installed you get a nice utility to add and remove users. We
0 commit comments