sudo note
筆記
Ubuntu Community Help Wiki
參考文章
(http://tech-tacolin.blogspot.tw/2013/05/ubuntu-script-sudo.html)
(http://www.arthurtoday.com/2015/02/ubuntu-modify-a-invalid-etc-sudoers-file-with-pkexec.html)
- (http://www.arthurtoday.com/2015/02/ubuntu-log-sudo-activity.html)
- (http://www.arthurtoday.com/2015/02/how-to-run-sudo-command-remotely-with-ssh-in-ubuntu.html)
關鍵字查詢
參考指令
$ sudo usermod -a -G groupname username
$ usermod -a -G sudo username
案例
# http://www.ubuntu-tw.org/modules/newbb/viewtopic.php?post_id=310770#forumpost310770
1.在開機時按住shift鍵,進入grub2開機選單,選擇修復模式(recovery mode)
2.選擇進入root模式
3.讓根目錄轉為可寫入模式:
# mount -o remount,rw /
4.將使用者加回sudo群組
# usermod -aG sudo weiwei
5.重新開機
# reboot