Skip to content

Instantly share code, notes, and snippets.

@seafooler
Last active January 3, 2018 03:02
Show Gist options
  • Save seafooler/eec67e29b27042755ae722f5b62835c2 to your computer and use it in GitHub Desktop.
Save seafooler/eec67e29b27042755ae722f5b62835c2 to your computer and use it in GitHub Desktop.
Create a new user and related home directory
#Create a new user and related home directory
```
sudo useradd -d /home/$username -m $username
```
#Set the passwd
```
sudo passwd $username
```
#Set the default shell
```
sudo usermod -s /bin/bash $username
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment