32
sudon't – blog by Tony Finch
(dotat.at)
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.
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
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.
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).