新建使用者並將使用者新增到root使用者組內

lsblk0402發表於2024-05-06

----新增使用者newusername
useradd newusername
---設定密碼
passwd newusername
----輸入兩次密碼
---加入root使用者組
usermod -aG root newusername
----修改/etc/sudoers
visudo
shift+g切換到最後一行,並在最後一行新增一下命令
newusername ALL=(ALL:ALL) ALL

相關文章