歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> 關於Linux

vim保存root權限的文件

vim保存root權限的文件   在Linux,沒有sudo 就直接用vim 編輯/etc/內的文件,等編輯好了之後,使用vim保存時,得到提示說文件無法保存,這時候才發現沒權限。針對這種問題,目前有如下幾種解決方案。 1. vi /etc/httpd.conf 保存時,用命令:w !sudo tee %     :w - Write a file.     !sudo - Call shell sudo command.     tee - The output of write (vim :w) command is redirected using tee. The % is nothing but current file name i.e. /etc/httpd.conf. In other words tee command is run as root and it takes standard input and write it to a file represented by %. However, this will prompt to reload file again (hit L to load changes in vim itself). 強烈推薦這一種用法。不過,首先得保證運行vim的用戶有sudo的權限。   2.編輯用戶$HOME/.vimrc文件將第一種方案的比較難記的命令重命名一下,下次可以直接使用。    vim $HOME/.vimrc  添加如下的一句話,並保存。    command -nargs=? Sudow :w !sudo tee %    今後用vim編輯時,需要sudo保存時,直接用此處定義的Sudow命令保存即可。   3. 先保存到一個臨時文件中,然後用root去拷貝它去覆蓋需要編輯的文件。     可能用user賬號打開的一個文件,vim /etc/httpd.conf,然後在vim編輯號後,用:w /tmp/httpd.conf即可保存為一個臨時文件。   4. 使用vim之時直接用sudo vim也可以,哈哈,如  sudo vim /etc/httpd.conf  
Copyright © Linux教程網 All Rights Reserved