jdoe
添加到组 sales
:sudo usermod -a -G sales jdoe
jdoe
的主目录更改为 /home/jdoe-new
:sudo usermod -d /home/jdoe-new jdoe
jdoe
的注释信息为 "John Doe, Engineering"
:sudo usermod -c "John Doe, Engineering" jdoe
jdoe
的默认 shell 为 zsh
:sudo usermod -s /bin/zsh jdoe
jdoe
的 UID 为 1001
:sudo usermod -u 1001 jdoe