this post was submitted on 03 May 2024
31 points (79.2% liked)
Linux
47952 readers
1608 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Sudo and doas are 1000x (in loc) more complex than they need to be for destop pc. Yet they are always default installed and some tools even expect them.
edit: didn't know that doas is that small. I thought it has ~1/10 of sudo's code but it's actually ~2k vs. 132k of sudo.
I await your much improved solution then. It sounds so simple, I bet you knock it out over the weekend, right?
Actually, i thought about merging rdo and ssu, both a bit over 100 loc in C. Yes, it would be feasible over a weekend. I just have a lot of other stuff i need to do first.
Found ssu here : https://github.com/illiliti/ssu Can't find rdo. What is it ?
https://codeberg.org/sw1tchbl4d3/rdo
Thought about "merging" because ssu works without asking for password, but it has weak argument parsing (need 'ssu -- stuff') and works only on cli stuff. "Merging" meaning taking some inspirations from rdo to fix ssu. But ssu is great if used in yay (aur helper) or for nano, mv & co.
Thanks
doas
is relativly simple (a few hundred LOC), especially compared tosudo
. The main benefit ofrun0
overdoas
is that it isn't a SUID binary, they are similary complex.Actually it's close to 2k lines of code (1,946 to be exact). But yes, it's certainly a lot simpler than sudo (132k).
I use rdo and ssu, each with a bit over 100 loc C code. Though they both have their own strong and weak points, i'm sure there are other similiar tools around.