Fedora默認未將普通帳戶加入sudo組,須要root權限時須要su切換,如下將普通用戶加入sudo。vim
$ su # visudo(或者 vim /etc/sudoers)
visudo的操做與vim相似,插入添加ide
<your_user_name> ALL=(ALL) ALL
輸入:wq!進行保存推出。sudoers是隻讀文件,須要"!"進行強制保存退出。默認5分鐘後剛纔輸入的sudo密碼過時,下次sudo須要從新輸入密碼,若是以爲在sudo的時候輸入密碼麻煩,把剛纔的輸入換成以下內容便可:code
<your_user_name> ALL=(ALL) NOPASSWD: ALL