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
不使用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