ユーザー作成時(useraddコマンド)のホームディレクトリへのファイル追加

メモ

ユーザーアカウントを作成すると/etc/skelディレクトリ内にあるファイルが、そのホームディレクトリ内にコピーされます。

/etc/skelディレクトリには、どのユーザーにも必要と思われる基本的な設定ファイルなどを格納しておきます。

これらのファイルをスケルトンファイルといいます。

# pwd
/etc/skel

# ls -la
total 24
drwxr-xr-x. 3 root root 4096 Jun 9 15:41 .
drwxr-xr-x. 85 root root 4096 Jun 9 12:53 ..
-rw-r–r–. 1 root root 18 Apr 1 11:17 .bash_logout
-rw-r–r–. 1 root root 193 Apr 1 11:17 .bash_profile
-rw-r–r–. 1 root root 231 Apr 1 11:17 .bashrc

例)ssh用に.sshディレクトリを追加

# mkdir /etc/skel/.ssh
# chmod 700 /etc/skel/.ssh

 

タイトルとURLをコピーしました