answersLogoWhite

0


Best Answer

[object Object]

User Avatar

Anonymous

Lvl 1
3y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What will be the permission of the myfile with the following command chmod 4764 myfile?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you change the permission modes of a file and directory in Linux?

use the chmod command syntax: chmod #### -option1 -option2 filename man chmod (for more information)


What Linux command sets a files permission?

In Linux the chmod command is used to set file permissions.


What command is used to assign executable permission to all for the filetxt in Linux?

the command to make anything executable is chmod +x <file>


What command change the permission r rx x of file shokeenda in Linux?

chmod but only if you are root, or logged in as the user and group shown when you do ls -l shokeenda See man chmod for its usage


Linux command will allow you to change file permissions?

The chmod command. For it's usage, consult it's manual page with the... $ man chmod command....


How would you allow a user to execute a specific privilege command without giving the user the root password?

using chmod you can give users certain privileges.Following are the symbolic representation of three different roles:u is for user,g is for group,and o is for others.Following are the symbolic representation of three different permissions:r is for read permission,w is for write permission,x is for execute permission.ex command: chmod u+x filenameex command2: chmod u+r,g+x filename


How would you allow a user to execute a specific privileged command without giving the user the root password?

using chmod you can give users certain privileges.Following are the symbolic representation of three different roles:u is for user,g is for group,and o is for others.Following are the symbolic representation of three different permissions:r is for read permission,w is for write permission,x is for execute permission.ex command: chmod u+x filenameex command2: chmod u+r,g+x filename


What are file permissions in Linux?

The typical way to view file permissions is to use the 'ls' command with the long listing options enabled, For example, to see the file permissions for everything in the current directory, type: ls -lsa


Explain the use of chmod command in Unix with syntax?

To complex to answer completely here - see related link.


What is a chmod in reference to an operating system?

It sets the access permission of a file. Allowing permission of a file to follow a certain path. It also will modify the mode bits and extends the access control.


Why does delete command in ftp failed?

You might not have permission to delete files. On a Linux server, it could be either: 1. You are not listed as the "owner" of the FTP file -- then you'd need to "chown" or change ownership 2. That you don't have the permissions to delete -- then you'd need to "chmod" the file if possible


How do you change permissions on a shell script in unix?

Use the 'chmod' command to change permissions on any file. Note: you have to be the owner (or the superuser) to do this.