how can i give acl permission in numerical mode on linux
Answers were Sorted based on User's Feedback
Answer / pramod kumar mohapatra
setfacl -m u:username:7 filename //{it means i have given rwx}
| Is This Answer Correct ? | 29 Yes | 1 No |
Answer / mahireddy
setfacl -u 666 its for full permistion
setfacl -u 646 its for others have full permestion
| Is This Answer Correct ? | 10 Yes | 3 No |
Answer / susheel
[root@susheel ~]# useradd susheel
[root@susheel ~]# mkdir ballia
[root@susheel ~]# setfacl -m u:susheel:7 ballia/
[root@susheel ~]# getfacl ballia/
# file: ballia
# owner: root
# group: root
user::rwx
user:susheel:rwx
group::r-x
mask::rwx
other::r-x
Note: here 7 means rwx for susheel
| Is This Answer Correct ? | 6 Yes | 0 No |
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 |
What is the difference between command ‘ping’ and ‘ping6’?
What does pwd mean in linux?
What is du command in linux?
What does chmod 777 do?
What will happen when a system call is encountered in a user program?
What is linux load average?
Explain about kernel file in linux?
How do I find hostname in linux?
I have a user name in /etc/vsftpd/user_list which is for blocking the ftp user. Now i blocked the user as well ,but without removing username in user_list i wanna access the users home directory and his own directory .How will you access the data ????
How can we increase disk read performance in single command in Linux operating system?
when zombie process fully cleared?
What is the status code 403,404 represented in apache server?