centos7_指定用户的家目录

建立用户:

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’.bashrcbash_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

    原文作者:Eden_严
    原文地址: https://blog.csdn.net/qq_41709044/article/details/88719847
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞