answersLogoWhite

0


Best Answer

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.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: If you change a files permissions to chmod 755 in Linux what kind of permissions are assigned to the group that owns the file?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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....


What Linux command sets a files permission?

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


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


What program is used to change a file permissions?

If you're talking Linux, then a terminal would do you just fine. chmod is used to change file permissions. Ex: chmod 755 /filename You could probably use a file manager to do that as well. In Windows, right click and properties (there are advanced permissions as well that would only be accessible to an administrator).


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.


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)


How do you change the executable bit in Linux for a .exe file?

chmod +x is the command to set the executable flag in Linux but, Linux does not use exe files.


Can change group ownership and group permissions with one command in Linux?

chown user:group && chmod 777 the bold nuumber is the one you want to concern yourself withlet me explain; The 3 numbers represent, from left to right, your permissions, your group's permissions, and everybody else. The number themselves indicate the restrictiveness of the permissions, from 7 (do what you want) to 0 (as MC hammer might put it, you can't touch this). The above example changes the permissions so everyone can do what they will to the file


What are the two commands for setting permissions on a file or directory?

There is generally only 1 standard command for permissions on a file or directory - chmod. You can affect permissions by other commands such as changing the ownership or group ownership of a file or directory. Other commands may be specific to different versions of Unix and Linux, so are not listed here.


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


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


What is Chmod?

It changes the permissions of the file to rwxrwxrwx (AKA full access to owner, group, and everyone).