unix permissions Flashcards
1
Q
what three things can be done to a file
A
read, write, execute
2
Q
change file permissions
A
chmod, chown
3
Q
read and write (good for files)
A
chmod +600
4
Q
read, write, and execute (good for scripts)
A
chmod +700
5
Q
read, write, and everyone else can only read (good for websites)
A
chmod +644
6
Q
read, write, and execute, and everyone else can read and execute (good for sharing)
A
chmod +755