手动建立帐号
[root@localhost ~]# id feige
id: feige: No such user
[root@localhost ~]# echo "feige::1000:1000::/home/feige:/bin/bash" >> /etc/passwd
[root@localhost ~]# id feige
uid=1000(feige) gid=1000 groups=1000
[root@localhost ~]# su - feige
su: warning: cannot change directory to /home/feige: No such file or directory
-bash-3.00$
-bash-3.00$ pwd
/root
-bash-3.00$ whoami
feige
-bash-3.00$ exit
logout
[root@localhost ~]#
[root@localhost ~]# ls -ld ~feige
ls: /home/feige: No such file or directory
[root@localhost ~]# cp -r /etc/skel/ ~feige
[root@localhost ~]# echo "feige::1000:" >> /etc/group
[root@localhost ~]# chown -R feige:feige ~feige/
[root@localhost ~]# chmod 0700 ~feige/
[root@localhost ~]# ls -ld ~feige/
drwx------ 2 feige feige 4096 May 5 19:50 /home/feige/
[root@localhost ~]# su - feige
[feige@localhost ~]$