Linux command for file permissions Flashcards
1
Q
u
A
user
2
Q
g
A
group
3
Q
o
A
others
4
Q
a
A
all
5
Q
+
A
add
6
Q
-
A
remove
7
Q
=
A
assign
8
Q
s
A
set user ID
9
Q
r
A
read
10
Q
w
A
write
11
Q
x
A
execute
12
Q
how to make chmod readable to all?
A
chmod a+r *
13
Q
how to make chmod readable and writeable for a group?
A
chmod g+rw *
14
Q
how to remove read write and execute permissions from a user?
A
(command) u-rwx *
15
Q
how to change ownership of directory cups to user ID and group ID sys?
A
chown. lp.sys cups