Mon 15th June 2020 By David T. Sadler.
In a previous post I installed Arch Linux on my Thinkpad X220. Since it was a very minimal install there are no user accounts except for the root user. So to add myself as a user I need to use the useradd command.
$ useradd -m -s /bin/bash david
I used the below options with the command.
This creates a new account for me and also ensures that a home directory is created as /home/david.
The new account will require a password so assign one with the passwd command.
$ passwd david
New password:
Retype new password:
passwd: password updated successfully
Now all I have to do is logout of the root account.
$ logout
Then login with the new credentials to confirm that everything is okay.
suliman login: david
Password:
david@suliman:$
I don't have comments as I don't want to manage them. You can however contact me at the below address if you want to.
Email david@davidtsadler.comCopyright © 2021 David T. Sadler.
Return to Homepage.