linux之/etc/skel目录

/etc/skel目录是在使用useradd添加用户时,一个需要用到的目录,该目录用来存放新建用户时需要拷贝到新建用户家目录下的文件。即:当我们新建新用户时,这个目录下的所有文件会自动被复制到新建用户的家目录下,默认情况下,/etc/skel 目录下的所有文件都是隐藏文件(以.点开头的文件);通过增加、修改、删除/etc/skel目录下的文件,我们可以为新创建的用户提供统一的、标准的、初始化的用户环境

/etc/skel目录

[root@centos79-3 skel]# pwd
/etc/skel
[root@centos79-3 skel]# ls -la
total 28
drwxr-xr-x.  2 root root   77 Sep 24 12:04 .
drwxr-xr-x. 85 root root 8192 Sep 24 11:27 ..
-rw-r--r--.  1 root root   18 Apr  1  2020 .bash_logout
-rw-r--r--.  1 root root  193 Apr  1  2020 .bash_profile
-rw-r--r--.  1 root root  231 Apr  1  2020 .bashrc
-rw-r--r--   1 root root    4 Sep 24 12:04 ztj.txt
[root@centos79-3 skel]# cat ztj.txt 
ztj
[root@centos79-3 skel]# 

新建用户验证

useradd test

[root@centos79-3 skel]# useradd test
[root@centos79-3 skel]# cd /home/test/
[root@centos79-3 test]# ls
ztj.txt
[root@centos79-3 test]# cat ztj.txt 
ztj
[root@centos79-3 test]# 

你可能感兴趣的:(linux小常识,linux,服务器,运维)