新增使用者:
[root@localhost ~]# useradd test
[root@localhost ~]# passwd test
changing password for user test.
new unix password:
retype new unix password:
passwd: all authentication tokens updated successfully.
此時,該使用者才是可以使用的。
設定的預設規則如下:
[root@localhost ~]# useradd -d
group=100
home=/home
inactive=-1
expire=
shell=/bin/bash
skel=/etc/skel
create_mail_spool=no
刪除使用者:
[root@localhost ~]# userdel test
[root@localhost ~]# userdel -r test
注:可以用userdel 來刪除test使用者,我們看到第二個例子中多了乙個引數-r ,第乙個例子是說只刪除test使用者,其家目錄和mail等仍會儲存;加上-r 引數,是刪除家目錄及mail等;所以要小心操作;用userdel 刪除使用者的同時,也會把其使用者組刪除;
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 那些固定好了的命令,到現實中的時候,發現並不是這樣的,一定要學會靈活...
linux建立使用者
新增使用者 root localhost useradd test root localhost passwd test changing password for user test.new unix password retype new unix password passwd all aut...