在ubuntu建立新使用者,發現不能sudo。
aabbcc is not in the sudoers file. this incident will be reported.
這是因為你新增的新使用者不在sudo組內。
執行groups命令,可以檢視你賬戶所在的組,帶sudo的表示可以執行sudo,否則不能執行sudo。
解決辦法:
執行以下3條命令,將你的使用者重新加入到sudo group。
記得退出後重新登入。
su -
usermod -ag sudo your_username
exit
ubuntu新增sudo許可權
ubuntu有時候沒有開通sudo功能,有些操作只能切換到root進行,很不方便。1.切換到root su root 2.開啟suduers檔案 gedit etc sudoers 3.找到下面這一行,user privilege specification root all all all all...
ubuntu給使用者新增sudo許可權
1 設定sudo密碼 sudo passwd 2 進入超級使用者模式 su 3 新增檔案的寫許可權 chmod u w etc sudoersvim etc sudoers在 root all all all all 下一行新增 kang all all all all如圖 1 在 sudo all...
新增sudo許可權
linux給使用者新增sudo許可權 有時候,linux下面執行sudo命令,會提示類似 is not in the sudoers file.this incident will be reported.這裡,是使用者名稱,然後導致無法執行sudo命令,這時候,如下解決 1 進入超級使用者模式。也...