각 사용자의 홈 디렉토리에 있는 기본 파일

각 사용자의 홈 디렉토리에 있는 기본 파일

우분투 서버 14.04를 사용하고 있습니다. 사용자 계정이 생성될 때마다 기본적으로 각 사용자의 홈 디렉터리에 일부 파일과 폴더를 추가하고 싶습니다.

답변1

디렉토리에 추가할 파일을 추가할 수 있습니다 /etc/skel.

$ sudo touch /etc/skel/test.txt
$ sudo useradd -m test
$ ls /home/test
test.txt

에서 man useradd:

-k, --skel SKEL_DIR
           The skeleton directory, which contains files and directories to 
           be copied in the user's home directory, when the home
           directory is created by useradd.

           This option is only valid if the -m (or --create-home) option is 
           specified.

           If this option is not set, the skeleton directory is defined by 
           the SKEL variable in /etc/default/useradd or, by
           default, /etc/skel.

           If possible, the ACLs and extended attributes are copied.

관련 정보