Skip to main content
Topic: For the Guys wich thinks sudo is bloated (Read 1122 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

For the Guys wich thinks sudo is bloated

and wanted to use opendoas, maybe already know that there exist opendoas-sudo in AUR for drop-in replacement (symlink doas to sudo) so you can type sudo (and programs wich use sudo) instead of doas (for convenience).

But there was still a thing like visudo missing. 

So i forked vidoas (see links below) and changed it for Arch specifics. And created a drop-in replacement for it too.

See:

https://github.com/solisinvictum/vidoas
https://github.com/solisinvictum/vidoas-visudo

AUR Links:

https://aur.archlinux.org/packages/vidoas-visudo
https://aur.archlinux.org/packages/vidoas

A maybe interesting Link regarding the Wiki:

https://bbs.archlinux.org/viewtopic.php?pid=2052390#p2052390

Re: For the Guys wich thinks sudo is bloated

Reply #1
You don't even need opendoas or any kind of third party program to install, just use su.

I even wrote a wrapper script:
Code: [Select]
#!/bin/sh
su root -c "$*"

If you just want to run certain commands as root without putting in any password, my project https://github.com/Lancia-Greggori/priv might interest you.

 

Re: For the Guys wich thinks sudo is bloated

Reply #2
There are many ways leading to Rome  :)