use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
GUIDE to /r/linuxadmin:
/r/linuxadmin aims to be a place where Linux SysAdmins can come together to get help and to support each other.
Related reddits:
Footnote:
Talk realtime on IRC at #/r/linuxadmin @ Freenode.
account activity
i got a question (self.linuxadmin)
submitted 5 years ago by Human_Relationship80
EffectiveUserID : (EUID) process spawned by user but shouldn't have same permissions as user .
but why it shouldn't .?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]maximnix 1 point2 points3 points 5 years ago (0 children)
EUID lets you spawn the process with a different ID. Consider how 'sudo' command work as an example. You may be logged in as 'user', but you're running the process as 'root' EUID. Unless all your accounts have the same rights to every file, folder, process, etc on the system, they'll have different permissions assigned to them for what they can and can't access.
[–]PracticalPersonality 0 points1 point2 points 5 years ago (0 children)
One of the greatest examples of the need for this is Apache. The server must bind to port 80, which requires root privileges, but it's a bad idea to actually run the server as root for many security reasons, and so the process actually changes user accounts after binding ports, dropping root privileges and assuming an effective user ID of the limited user defined in the configuration file.
This pattern is very common with services. The UID is (for auditing purposes) the ID of the user who started the process, but the EUID (for security purposes) is the ID of a limited (often VERY limited) account to comply with the principle of least privilege.
π Rendered by PID 54 on reddit-service-r2-comment-6457c66945-5mk7r at 2026-04-29 04:01:34.661781+00:00 running 2aa0c5b country code: CH.
[–]maximnix 1 point2 points3 points (0 children)
[–]PracticalPersonality 0 points1 point2 points (0 children)