Answers for "log into account ubuntu with username command"

3

ubuntu rename user login

#As root / or as another user. 
# Kill the processes of the user to rename
pkill -u <OldLoginName>

#Rename user login
usermod -l <OldLoginName> <NewLoginName>

#Rename HomeDir 

sudo usermod -d /home/NewHomeDir -m NewLoginName
Posted by: Guest on February-21-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language