Possible Duplicate:
Becoming root from inside Vim
It could happen to anyone. The admin types:
vi /etc/resolv.conf
as a regulare user. He edits the /etc/resolv.conf file, but when he wants to hit :x he suddenly notices that he was editing the file in read-only mode because he opened it with a normal user, not root.
Are there any vi commands to get root priviledges, so that the admin wont have to hit :q! and sudo su - and vi /etc/resolv.conf and edit it again?
sudo vi /etc/resolve.confshould be sufficient, no need to start a root login shell. – Mat Jan 4 '12 at 8:17sudo vi .... It doesn't quite do what you asked, but it avoid having to re-enter the changes you've made. – Keith Thompson Jan 4 '12 at 9:09