Skip to content

Instantly share code, notes, and snippets.

@NguyenTrungTin
Last active December 13, 2019 03:49
Show Gist options
  • Save NguyenTrungTin/f0b13df6d01436f2b2647d5ca1318b53 to your computer and use it in GitHub Desktop.
Save NguyenTrungTin/f0b13df6d01436f2b2647d5ca1318b53 to your computer and use it in GitHub Desktop.
Linux add new user
```bash
sudo adduser username
```
Add the new user to `sudo` group
```
sudo usermod -aG sudo username
```
Add the new user to `adm` group (read logs)
```
sudo usermod -aG adm username
```
Test `sudo` access
```bash
sudo su - username
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment