新使用者建立時模板檔案放在/etc/skel中,只要在skel中放入相應文件,即可在建立使用者時在其家目錄中產生對應文件
[00:30:48 root@c8[ ~]#ll -a /etc/skel/ ##在skel中新增.welcome檔案
total 24
drwxr-xr-x. 2 root root 95 jul 13 00:30 .
drwxr-xr-x. 103 root root 8192 jul 12 23:42 ..
-rw-r--r--. 1 root root 18 nov 9 2019 .bash_logout
-rw-r--r--. 1 root root 141 nov 9 2019 .bash_profile
-rw-r--r--. 1 root root 312 nov 9 2019 .bashrc
-rw-r--r--. 1 root root 0 jul 13 00:07 null.test
-rw-r--r--. 1 root root 0 jul 13 00:30 .welcome
[00:30:54 root@c8[ ~]#useradd test985 ##新建使用者test985
[00:31:17 root@c8[ ~]#ll -a /home/test985/ ##檢視自動建立的家目錄
total 12
drwx------. 2 test985 test985 95 jul 13 00:31 .
drwxr-xr-x. 4 root root 36 jul 13 00:31 ..
-rw-r--r--. 1 test985 test985 18 nov 9 2019 .bash_logout
-rw-r--r--. 1 test985 test985 141 nov 9 2019 .bash_profile
-rw-r--r--. 1 test985 test985 312 nov 9 2019 .bashrc
-rw-r--r--. 1 test985 test985 0 jul 13 00:07 null.test
-rw-r--r--. 1 test985 test985 0 jul 13 00:30 .welcome ##赫然在列
[00:31:39 root@c8[ ~]#ll -a /home/test211/ ##檢視之前建立的test211使用者家目錄
total 12
drwxr-xr-x. 2 root root 79 jul 13 00:16 .
drwxr-xr-x. 4 root root 36 jul 13 00:31 ..
-rw-r--r--. 1 root root 18 jul 13 00:16 .bash_logout
-rw-r--r--. 1 root root 141 jul 13 00:16 .bash_profile
-rw-r--r--. 1 root root 312 jul 13 00:16 .bashrc
-rw-r--r--. 1 root root 0 jul 13 00:16 null.test ##只有之前建立的檔案,沒有welcome
linux建立使用者
新增使用者 root localhost useradd test root localhost passwd test changing password for user test.new unix password retype new unix password passwd all aut...
linux建立使用者
1.su root 非root許可權使用者 2.useradd g 組 使用者名稱 3.passwd 密碼 ps 準備在redhat下增加乙個新使用者,操作如下 利用su先進入root,然後在root下敲入useradd dauglas命令,但是敲入以後特別奇怪,出現以下錯誤 bash userad...
linux 建立使用者
實習期間,由於公司的需要,建立使用者並指定該使用者的主目錄,也就是賬戶一登入,就直接到該目錄下來,當時很傻的以為是useradd g g p d什麼的,一頓試啊,結果還是試出來了,因為之前在培訓的時候就死記了useradd g g 那些固定好了的命令,到現實中的時候,發現並不是這樣的,一定要學會靈活...