Tip: sudoedit often overlooked as an alternative to sudo vim
from thingsiplay@beehaw.org to linux@lemmy.ml on 05 Dec 05:11
https://beehaw.org/post/17407956

This is a reminder to user sudoedit. Especially useful for Vim and Neovim users who have a rich and personal configuration.

sudoedit /etc/fstab

is also an option. sudoedit is a short form for sudo -e. It uses the default editor set int EDITOR or VISUAL variable. The difference to sudo vim FILE or sudo nano FILE is, that sudoedit FILE will use the editor configuration from the current user instead from the root. For me this makes a huge difference, because my plugins and settings for Neovim are not used when doing sudo vim.

Man page: linux.die.net/man/8/sudoedit

-e’ The -e (edit) option indicates that, instead of running a command, the user wishes to edit one or more files. In lieu of a command, the string “sudoedit” is used when consulting the security policy. If the user is authorized by the policy, the following steps are taken:

  1. Temporary copies are made of the files to be edited with the owner set to the invoking user.

  2. The editor specified by the policy is run to edit the temporary files. The sudoers policy uses the SUDO_EDITOR, VISUAL and EDITOR environment variables (in that order). If none of SUDO_EDITOR, VISUAL or EDITOR are set, the first program listed in the editor sudoers(5) option is used.

  3. If they have been modified, the temporary files are copied back to their original location and the temporary versions are removed.

If the specified file does not exist, it will be created. Note that unlike most commands run by sudo, the editor is run with the invoking user’s environment unmodified. If, for some reason, sudo is unable to update a file with its edited version, the user will receive a warning and the edited copy will remain in a temporary file.

#linux

threaded - newest

Yingwu@lemmy.dbzer0.com on 05 Dec 05:33 next collapse

I had a problem where even if I tried to set the default editor to vim, it’d still not use my lazyvim setup and I never figured out how to fix it.

thingsiplay@beehaw.org on 05 Dec 06:11 collapse

I use LazyVim too BTW. You mean it would not use in sudo environment or in your current environment?

Yingwu@lemmy.dbzer0.com on 05 Dec 10:27 collapse

It worked fine in my current environment, but not with sudoedit no. Can’t remember exactly why, might look at it again. It worked for you just by setting the default editor variable?

mbirth@lemmy.ml on 05 Dec 12:43 next collapse

It’s probably loading the home environment of root similar to sudo -H vim … instead of just elevating privileges but keeping your home environment.

thingsiplay@beehaw.org on 05 Dec 15:26 collapse

I didn’t do anything special to make that work. The variable export EDITOR=‘nvim’ is set in my “.bash_profile” file in “Home” directly. The point of sudoedit is to use your personal environment, so it should pick it up. If there is any configuration needed to make this work, then I"m not aware of it.

dino@discuss.tchncs.de on 05 Dec 08:30 next collapse

Totally agree with OP, this also works with different editors like Helix.

starbrite@lemmy.zip on 05 Dec 09:00 next collapse

Doas moment x.x

Neptr@lemmy.blahaj.zone on 05 Dec 09:35 collapse

Just get doasedit. I remember finding scripts that achieve similar functionality as sudoedit.

lnxtx@feddit.nl on 05 Dec 10:16 next collapse

Also. With sudo vim (or other editor) you can do privilege escalation, became root.

thingsiplay@beehaw.org on 05 Dec 15:52 collapse

Yes. And this has huge implications, as as root user in Vim you can load and edit other files. While sudoedit is limited to your personal environment, as while the editing process no root privileges are in use. (I think…)

Strit@lemmy.linuxuserspace.show on 05 Dec 10:19 next collapse

How is sudoedit shorter than sudo -e ? :D

foremanguy92_@lemmy.ml on 05 Dec 12:12 next collapse

Easier to type, I think ¯_(ツ)_/¯

elkalbil@jlai.lu on 05 Dec 13:26 next collapse

Most admins will type sudoe<tab> , which is shorter

Strit@lemmy.linuxuserspace.show on 05 Dec 13:48 collapse

Good point. sudoe + TAB is 1 keystroke shorter than sudo -e :)

thingsiplay@beehaw.org on 05 Dec 15:49 collapse

Not even a joke, I was sleepy (before going to bed) when making this post. :D So not sure why I said this. I like how the replies have good faith and trying to find a reason.^^ lovely community

beeng@discuss.tchncs.de on 05 Dec 11:54 next collapse

Appreciate you :)

notabot@lemm.ee on 05 Dec 13:18 next collapse

Be cautious of doing this with security sensitive files. When it copies the file and gives you ownership, any sensitive data in it is exposed to any process running as your user id, and and temporary fil£s the editor creates may also contain the sensitive content and be owned by you.

thingsiplay@beehaw.org on 05 Dec 15:39 collapse

Good point. I was always wondering how secure this is, as it works with copies of the files in my environment. Because I’m in my personal environment, doing sudoedit /etc/fstab does not let me edit other files from root while in that file. That means if any of the plugins from Vim tries to, they can’t edit arbitrary files, right? (If you don’t trust the plugin, then don’t use, but that’s another topic.) Little side note, just learned that sudoedit ~/.bashrc does not allow me to edit files in my home too.

notabot@lemm.ee on 06 Dec 01:41 collapse

Vim is running as you, rather than root, so you wont be able to edit other files as root, and any rogue plugins wont be able to either, which is good.

Sudoedit has various guards around what it’ll let you edit, in particular, you can’t edit a file in a directory you already have write permission on as doing so allows the user to bypass restrictions in the sudoers setup (there’s more detail in their issue tracker. If the directory is already writable though, you don’t need sudoedit anyway.

adamnejm@programming.dev on 07 Dec 08:38 collapse

Meanwhile, a reverse vim enjoyer like myself, using micro to edit any file running as my user. If it requires root to write, it will simply elevate the permissions for that operation when I press Ctrl+S, asking for password if needed.

Same idea with VSCodium, but via GUI polkit prompt.

Life is good when you don’t hjkl ^_^