how can i give acl permission in numerical mode on linux
Answer Posted / sandeep badsra
By using chmod command
for example chmod 777 <file name>
its for full permissionof the file
read =4
write =2
execute=1
user group other
7 7 7
4+2+1 4+2+1 4+2+1
r+w+e r+w+e r+w+e
other example
we give permission to user to full and give group and other
to only read and execute than
chmod 755 <file name>
| Is This Answer Correct ? | 9 Yes | 12 No |
Post New Answer View All Answers
What does && mean in bash?
Why echo is used in linux?
What does mkdir mean?
How do I run multiple commands in linux?
What is the purpose output of cd command?
How do I run a bash script in linux?
What is the command to delete a file linux?
What does chmod 777 do?
What is the best cpu stress test?
What is the default number of shell commands saved in the history list of .cshrc file?
What is ulimit in linux?
What is unix finger command?
Where is command history stored in linux?
What is cpu in top command?
How will you suspend a running process and put it in the background?