Skip to content

Instantly share code, notes, and snippets.

@costa86
Last active July 29, 2021 15:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save costa86/1776dfe47e2a2dea296d4ec97544b71d to your computer and use it in GitHub Desktop.
Save costa86/1776dfe47e2a2dea296d4ec97544b71d to your computer and use it in GitHub Desktop.
Create a user
read -p 'User: ' user
group=$user
adduser $user
usermod -aG sudo $user
cd /home/$user
rsync --archive --chown=$user:$group ~/.ssh /home/$user
su $user
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment