建立用户:
useradd -c “this is my first username oh! oh! ” -g mygroup -u 6666 -d /home/gmh emo
结果报错:
useradd: warning: the home directory already exists.
Not copying any file from skel directory into it.
进入/home/gmh目录,没有.bash_profile’,.bashrc,bash_logout
原因:
系统添加用户的标准步骤
1.编辑/etc/passwd与/etc/group
2.创建用户主目录
3.从/etc/skel拷贝文件与目录
4.让新用户获得其主目录与文件的拥有权限
5.给新用户一个密码
解决办法:
依旧使用上面的脚本建用户,然后手动拷贝配置文件到/home/gmh下。
cp /etc/skel/.bash_profile /home/gmh
cp /etc/skel/.bashrc /home/gmh
cp /etc/skel/.bash_logout /home/gmh