使用普通用戶編輯nginx.conf 等配置文件:
保存的時(shí) 候會(huì)提示:沒有Root Permission
可以用如下方法解決:
保存時(shí)加上:
:w !sudo tee %
我這里 有一個(gè)問題。沒有配置sudo權(quán)限。
用sudo時(shí)提示"xxx is not in the sudoers file. This incident will be reported.其中XXX是你的用戶名,也就是你的用戶名沒有權(quán)限使用sudo,我們只要修改一下/etc/sudoers文件就行了。下面是修改方 法:
1)進(jìn)入超級(jí)用戶模式。也就是輸入"su -",系統(tǒng)會(huì)讓你輸入超級(jí)用戶密碼,輸入密碼后就進(jìn)入了超級(jí)用戶模式。(當(dāng)然,你也可以直接用root用)
2)添加文件的寫權(quán)限。也就是輸入命 令"chmod u+w /etc/sudoers"。
3)編輯/etc/sudoers文件。也就是輸入命令"vim /etc/sudoers",輸入"i"進(jìn)入編輯模式,找到這一 行:"root ALL=(ALL) ALL"在起下面添加"xxx ALL=(ALL) ALL"(這里的xxx是你的用戶名),然后保存(就是先按一 下Esc鍵,然后輸入":wq")退出。
4)撤銷文件的寫 權(quán)限。也就是輸入命令"chmod u-w /etc/sudoers"。
再次保存:
查看是否 成功:
$ grep sudo nginx.conf
#test :w !sudo tee %
解釋:
:w : Write a file.可以將文件寫入,文件仍然是只讀模式,通過 :q! 退出
!sudo : Call shell sudo command.
tee : The output of the vi/vim write command is redirected using tee.
% : Triggers the use of the current filename.
Simply put, the ‘tee’ command is run as sudo and follows the vi/vim command on the current filename given.
補(bǔ)充:
在網(wǎng)上看了很多解答,大多是一句話:
:w !sudo tee %;
或者是:
你有權(quán)限修改文件嗎?
如果是root權(quán)限,可以
:wq!
實(shí)際上我想說的就是一句話:在打開文件時(shí)加上sudo。
即:sudo vi /etc/crontab
命令打開文件,此時(shí)便是以root權(quán)限進(jìn)入該文件。
此時(shí)退出文件使用:wq!就可以了。
想必很多像我一樣的小白在見到上面的答案時(shí),最不了解的時(shí)自己出問題時(shí)是否具備root權(quán)限,苦惱全來源于此啊!
小白加油!