問:unix下建立使用者組的命令是?
答:groupadd [-g gid] groupname
說明:
g 制定組的id號
gid 組的id號(不能與現有的組id號重複)
groupname 組名
如:groupadd -g 110 vteam
問:unix下如何建立使用者?
答:useradd命令增加使用者組
useradd [-u uid | -g group] | -d dir | -s shell | -c comment | -m [-k skel_dir] ] login
說明:
u 指定使用者id號 (不能與現有的使用者id號重複)
g 制定所在組
d 指定使用者目錄
s 制定使用者shell
c 使用者的注釋
m 建立使用者目錄
login 使用者的登入名
如:useradd -u 1001 -g vteam -d /opt/eric -c "wangying test" -m -s /bin/bash eric
問:如何為新建立的使用者設定密碼?
答:為新建立的使用者設定密碼使用passwd命令
passwd username
說明:
username 指定使用者名稱
根據提示輸入兩次密碼就ok了。
[root@ay121111063220db82482 opt]# passwd eric
changing password for user eric.
new unix password:
retype new unix password:
passwd: all authentication tokens updated successfully.
linux 建立使用者和使用者組
useradd testuser 建立使用者testuser 建立新使用者後,同時會在etc目錄下的passwd檔案中新增這個新使用者的相關資訊 passwd testuser 給已建立的使用者testuser設定密碼 說明 新建立的使用者會在 home下建立乙個使用者目錄testuser user...
使用者和使用者組
許可權 建立user1和user1組,並且user1和user1組擁有ssh登陸許可權。假如 擁有ssh登陸許可權的組為test,不想新建user1使用者對應的組。在新建user1使用者後,指定user1的組為test即可。擴充套件 乙個使用者可以屬於多個組,不過有個主屬組而已。受定式思維影響 以為...
使用者和使用者組
使用者資訊檔案 etc passwd 影子檔案 etc shadow 組資訊檔案 etc group 組密碼檔案 etc gshadow root localhost vim etc passwd root x 0 0 root root bin bash bin x 1 1 bin bin sbi...