this post was submitted on 21 Nov 2023
698 points (97.7% liked)

Linux

48329 readers
639 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

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
[–] vsis@feddit.cl 44 points 1 year ago (5 children)

I remember myself asking why directories had x flags in their permissions. Like, you don't execute them. What do they use the x flag for?

[–] TootSweet@lemmy.world 33 points 1 year ago (3 children)

There needs to be a Linux kernel fork that when you try to execute a directory executes all programs in the directory. In parallel. Juuuuuuuust to fuck with people who might accidentally execute the /usr/bin directory.

[–] rotopenguin@infosec.pub 28 points 1 year ago

And if there's a circular symlink, we fork bomb

[–] SzethFriendOfNimi@lemmy.world 16 points 1 year ago (1 children)

Or worse… In order. Based on last Modified date. And use that as the basis for some scheduling agent where timing and order of execution is essential.

[–] MajorHavoc@lemmy.world 6 points 1 year ago (1 children)

That's the most evil thing I've heard in awhile, and I would absolutely make use of it anyway.

[–] SzethFriendOfNimi@lemmy.world 5 points 1 year ago

All you have to do is touch the files in order. Why aren’t you using this touchsched repo here….

[–] donio@lemmy.world 5 points 1 year ago

Those of us who use the autocd feature of shells "execute" directories all the time. For example I'd type just /usr/bin RET if I wanted to cd to /usr/bin.

[–] TQuid@beehaw.org 22 points 1 year ago (1 children)

For directories, it’s permission to cd into it. Read is whether you can list files, and write is remove, rename, or create new files. Don’t ask questions about the secret sticky bit

[–] vsis@feddit.cl 1 points 1 year ago

cd as owner lol

[–] _s10e@feddit.de 17 points 1 year ago (1 children)

The x permission on directories is exactly for this purpose. You can use the directory. You cannot read (requires rx), you cannot write (w), but you can 'cd' and operate on files in the directory.

This is important, you can lock someone out from a directory tree buy not giving them 'x' on the root. So, if your home is rwx------, no one but the owner can do anything in your home. This is effective even if some files and subdirectories have less restrictive permissions.

[–] KISSmyOS@lemmy.world 2 points 1 year ago (1 children)

So, if your home is rwx------, no one but the owner can do anything in your home.

Does that include root?

[–] _s10e@feddit.de 7 points 1 year ago

Point for you, root is special.

[–] SzethFriendOfNimi@lemmy.world 14 points 1 year ago

Executing a list read of the inode?

[–] atzanteol@sh.itjust.works 7 points 1 year ago* (last edited 1 year ago)

It's necessary if you want to give somebody rw access to a subdirectory but not the parent.

The parent gets "x" and the child gets "rwx".

This way you can have multiple users with their own directories under, say, /var/www/html but restrict access to /var/www/html itself.

If the user doesn't have "x" then they can't see anything in that directory at all.