Difference between revisions of "Saving file as root using sudo"

From Notes_Wiki
(Created page with "<yambe:breadcrumb>Vim|Vim</yambe:breadcrumb> =Saving files as root using sudo= Many times while working as normal user, one ends up editing a system file such as '<tt>/etc/ho...")
 
m
Line 1: Line 1:
<yambe:breadcrumb>Vim|Vim</yambe:breadcrumb>
<yambe:breadcrumb self="Saving file as root using sudo">Vim|Vim</yambe:breadcrumb>
=Saving files as root using sudo=
=Saving files as root using sudo=


Line 9: Line 9:


Steps learned from http://www.cyberciti.biz/faq/vim-vi-text-editor-save-file-without-root-permission/
Steps learned from http://www.cyberciti.biz/faq/vim-vi-text-editor-save-file-without-root-permission/
<yambe:breadcrumb self="Saving file as root using sudo">Vim|Vim</yambe:breadcrumb>

Revision as of 08:52, 12 September 2018

<yambe:breadcrumb self="Saving file as root using sudo">Vim|Vim</yambe:breadcrumb>

Saving files as root using sudo

Many times while working as normal user, one ends up editing a system file such as '/etc/hosts' as normal user. On saving the changes error 'readonly' file gets generated due to insufficient permissions. In such cases to save file as root without loosing the changes one can use 'sudo' command, provided the current user has sudo access. (Sudo access configuration can be learned from Allowing user to run all commands as root without specifying password). To save file as root with sudo one can use:

:w !sudo tee %


Steps learned from http://www.cyberciti.biz/faq/vim-vi-text-editor-save-file-without-root-permission/


<yambe:breadcrumb self="Saving file as root using sudo">Vim|Vim</yambe:breadcrumb>