1./etc/skelscentos
[root@centos6 user1]# ls -al /etc/skel/bash
total 20ide
drwxr-xr-x. 2 root root 4096 Oct 16 02:08 .spa
drwxr-xr-x. 81 root root 4096 Nov 10 15:12 ..orm
-rw-r--r--. 1 root root 18 Mar 23 2017 .bash_logoutit
-rw-r--r--. 1 root root 176 Mar 23 2017 .bash_profileclass
-rw-r--r--. 1 root root 124 Mar 23 2017 .bashrc配置
目錄存放着新增用戶時所須要複製的文件,複製至用戶的家目錄。file
問題: 切換用戶的時候顯示如下問題, 緣由爲家目錄的配置文件丟失了。grep
[root@centos6 user1]# su - user1
-bash-4.1$
-bash-4.1$
解決方法: 複製文件並受權
cp -av /etc/skel/.bash* /home/user1/
chown -R user1:user1 /home/user1
2./etc/login.defs
配置默認密碼長度
[root@centos6 user1]# cat /etc/login.defs|grep -Ev '^#|^$'
MAIL_DIR /var/spool/mail
PASS_MAX_DAYS 99999
PASS_MIN_DAYS 0
PASS_MIN_LEN 5 ##密碼最短長度
PASS_WARN_AGE 7
UID_MIN 500
UID_MAX 60000
GID_MIN 500
GID_MAX 60000
CREATE_HOME yes
UMASK 077
USERGROUPS_ENAB yes
ENCRYPT_METHOD SHA512
3./etc/default/useradd
建立用戶的配置文件
[root@centos6 user1]# cat /etc/default/useradd
# useradd defaults file
GROUP=100
HOME=/home
INACTIVE=-1
EXPIRE=
SHELL=/bin/bash
SKEL=/etc/skel
CREATE_MAIL_SPOOL=yes