Slashdot Mirror


User: chrisj00m

chrisj00m's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Re:SUDO Commands on Linux in a Business - Got Root? · · Score: 1

    Is that the sticky bit?

    Not quite. setuid/setgid, when applied to a directory, make files created within that directory inherit the user/group of the directory, instead of the user/default group of their creator. the setuid bit generally doesn't work on directories (for rather obvious security reasons), unless a particular flag is set against the file system in /etc/fstab.

    The sticky bit is used to secure directories like /tmp, and prevents you from removing files from the directory -- even if you have write permissions -- unless you are the owner of the file.