Sometimes I start editing configuration files in /etc using Vim, but forget to use sudo to start Vim. The inevitable result then is that after finishing my edits I encounter the dreaded notice that I don’t have the permission to save the file.
Mostly the edits are small enough that I just exit Vim and do the whole thing again as root. I could of course save to a location I can write to and then copy as root, but that is also somewhat annoying.
But I’m sure there is an easier way to become root or use sudo from inside Vim, without having to discard the changes. If the method would not rely on sudo being set up for the user that would be even better.
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
sudo cannot change the effective user of an existing process, it always creates a new process that has the elevated privileges and the original shell is unaffected. This is a fundamental of UNIX design. I most often just save the file to /tmp as a workaround. If you really want to save it directly you might try using a feature of Vim where it can pipe a file to another process. Try saving with this command:
:w !sudo dd of=%
Tested and works. Vim will then ask you to reload the file, but it’s unnecessary: you can just press o to avoid reloading and losing your undo history. You can even save this to a Vim command/function or even bind it to a key for easy access, but I’ll leave that as an exercise to the reader.
Method 2
Saving the file as root:
:w !sudo tee %
Method 3
Call sudoedit to edit files as root.
Think of the inconvenience when calling vim directly as a warning that you’re being too casual in doing something potentially dangerous.
Method 4
You can put this in your .vimrc
cmap w!! %!sudo tee > /dev/null %
You trigger it by doing :w!! – it will push the file through sudo tee to the current filename (%).
From a now-deleted post at https://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks; see also: https://stackoverflow.com/questions/1218390/what-is-your-most-productive-shortcut-with-vim
Method 5
This also works well:
:w !sudo sh -c "cat > %"
This is inspired by the comment of @Nathan Long in this answer.
NOTICE:
" must be used instead of ' because we want % to be expanded before passing to shell.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0