📜  ubuntu 重命名用户登录 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:49.391000             🧑  作者: Mango

代码示例3
# To manage every aspect of the user database, you use the usermod tool.
# To change username (it is probably best to do this without being logged in):

sudo usermod -l newUsername oldUsername
# This however, doesn't rename the home folder.
# To change home-folder, use

sudo usermod -d /home/newHomeDir -m newUsername