answersLogoWhite

0

What else can I help you with?

Related Questions

If Alex's user account belongs to the teachers group on a windows server 2008 network and the teachers group has read and execute permissions for the lessons folder what can alex do with documents in?

delete an existing document


If the permissions are r-xrwxrwx who can't write?

In the permissions r-xrwxrwx, the owner has read and execute permissions (r-x), the group has read, write, and execute permissions (rwx), and others also have read, write, and execute permissions (rwx). This means that the owner cannot write to the file, as indicated by the absence of the write permission in the owner's set of permissions. Therefore, only the owner cannot write to the file.


What do you understand from file permissions?

@Linux : for an example : for a file named " lastlog " Here are its permissions : -rw-r--r-- 1 root root 29492 Dec 1 15:12 lastlog Which means-- here( r )stands for -----Read (w)stands for -----Write and (x)stands for -----Execute Permissions respectively In Detail: User has rw- Permissions(read,write permissions and no execute permission) Group has r-- Permissions and Others have r-- Permissions for the file lastlog* . Extra info : root root ----Means that it is owned by root user(first root) and it belongs to group root (second root). Hope it helped.


What are the three standard linux permissions?

read, write, execute


Which is the best method considered when assigning permissions to users or groups?

"Read & Execute" would be the best method for NTFS permissions. For Share permissions it would be "Change".


If you change a files permissions to chmod 755 in Linux what kind of permissions are assigned to the group that owns the file?

The group has read and execute permissions. The number is octal; the digits pertain to owner, group and all users respectively. The binary representation in three bits of each digit gives read, write and execute permissions respectively. Thus the middle digit, for group permissions, a 5, is binary 101, indicating read and execute but no write permission.


Which methods is considered a best practice when assigning permissions to users or groups?

"Read & Execute" would be the best method for NTFS permissions. For Share permissions it would be "Change".


How do you change permissions on a shell script?

To change permissions on a shell script, you can use the chmod command in the terminal. For example, to make a script executable, you would run chmod +x script.sh. You can also set specific permissions by using numeric values, such as chmod 755 script.sh, which grants read, write, and execute permissions to the owner and read and execute permissions to the group and others.


What are the share permissions available in Windows 7?

Read, write, execute and delete.


How do you execute shell program in unix?

Make sure it is readable and executable (permissions). Then, just type in the name of the shell file to execute it.


Can you execute a shell script if you do not have read permission for the file containing the script?

No, the shell needs both execute and read permissions to run the script.


What are permissions in Linux?

Read permission(4) Write permission(2) Execute permission(1)