Add instructions for disabling sudo password requirement

This commit is contained in:
Quad 2021-07-12 17:53:16 +02:00
parent 2be94f081e
commit 50b8761901
1 changed files with 10 additions and 0 deletions

View File

@ -133,3 +133,13 @@ To use it, open your `~/.bashrc` file and add the following line:
```
source gpd-prompt
```
### Disabling sudo password
If you use your GPD Win 3 as only a gaming device, and security isn't a huge concern. Disabling the password requirement for sudo might be an idea. To do this, run the command `sudo visudo` and ensure the following line is in the file:
```
username ALL=(ALL) NOPASSWD:ALL
```
Replacing `username` with your own username. This will allow sudo commands (including the ones used by scripts) to run without asking for a password.