this post was submitted on 31 Dec 2023
178 points (95.9% liked)
ADHD memes
11051 readers
755 users here now
ADHD Memes
The lighter side of ADHD
Rules
Other ND communities
- !adhd@lemmy.world - Generic discussion
- !ausomememes@lemmy.dbzer0.com
- !autism@lemmy.world
- !autisticandadhd
- !neurodivergence@beehaw.org
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
This sounds cool. Do I also understand right that file extensions aren't anything more than the file name?
I can also conceptually appreciate the input/output/error piece, although I bet it'll make more sense when I find a use case for it eventually. Thanks!
For the kernel, yeah. A lot of apps use them, though, but mostly for determining whet kind of text plain text files are.
But files have some "mode bits" at the start, hwich tell the kernel if they're executable, and whether they should always have root (admin) perms.
Speaking of root, that's the user with full perms. Root can access any file on the system, and can basically do anything. Root is also known as the superuser. When you use sudo, you run the program as root (it stands for "Super User DO").
You're very welcome!
Not quite! The setuid bit means the file will be run as its owner, not necessarily as root. The most common use for this (which is used by sudo) is to have the file owned by root and executable by everyone, so that when anyone runs it it will run as root, but you can also use it to have a program always run as any user (thus limiting what it's allowed to do). There's also a setgid bit so it will be run as its owning group, which is less frequently used. Fun fact!