使用 Linux,我需要创建一个新用户,但在 /etc/passwd 中个性化自己的主目录路径。目前我使用:
adduser test0 --shell /bin/nologin --disabled-password --no-create-home --quiet --force-badname --gecos ""
但是在 /etc/passwd 中
test0:x:1004:1005:,,,:/home/test0:/bin/nologin
我需要这样的想法:
test0:x:1004:1005:,,,:/home/personal/test0:/bin/nologin
答案1
您可以添加参数--home HOME_DIR
来定义主目录。
因此命令行必须是
adduser test0 --shell /bin/nologin --disabled-password --home /home/personal/test0 --no-create-home --quiet --force-badname --gecos ""