Atopos

导航

Linux里不使用useradd命令创建用户方法

不使用useradd创建用户:

mkdir -p /home/test

echo 'test:x:1001:1001::/home/test:/bin/bash' >> /etc/passwd
echo 'test:x:1001' >> /etc/group

cp /etc/skel/.bashrc  /home/test
cp /etc/skel/.bash_profile   /home/test

su - test

posted on 2021-12-14 19:43  Atopos_q  阅读(7)  评论(0编辑  收藏  举报