ubuntu 下新增使用者 並獲得root許可權
sudo passwd root
然後登入時使用者名稱輸入root,再輸入密碼就行了。
ubuntu建使用者最好用adduser,雖然adduser和useradd是一樣的在別的linux糸統下,但是我在ubuntu下用useradd時,並沒有建立同名的使用者主目錄。
例子:adduser user1
這樣他就會自動建立使用者主目錄,建立使用者同名的組。
[email protected]:~# sudo adduser linuxidc
[sudo] password for xx:
輸入xx使用者的密碼,出現如下資訊
正在新增使用者"linuxidc"…
正在新增新組"linuxidc" (1006)…
正在新增新使用者"linuxidc" (1006) 到組"linuxidc"…
建立主目錄"/home/linuxidc"…
正在從"/etc/skel"複製檔案…
輸入新的 UNIX 口令:
重新輸入新的 UNIX 口令:
兩次輸入linuxidc的初始密碼,出現的資訊如下
passwd: password updated successfully
Changing the user information for linuxidc
Enter the new value, or press ENTER for the default
Full Name []:
Room Number []:
Work Phone []:
Home Phone []:
Other []:
Full Name []:等資訊一路回車
這個資訊是否正確? [Y/n] y
到此,使用者新增成功。如果需要讓此使用者有root許可權,執行命令:
[email protected]:~# sudo vim /etc/sudoers
修改檔案如下:
# User privilege specification
root ALL=(ALL) ALL
linuxidc ALL=(ALL) ALL
儲存退出,linuxidc使用者就擁有了root許可權