The following script does the trick: sudo su – // elevate priveleges to the superuser useradd -d /home/USERNAME USERNAME // create user with home dir passwd USERNAME // set password for the user chown USERNAME /home/USERNAME // grant priveleges for using the home dir chsh -s /bin/bash // specify to use bash when the user [...]