Linux系统中,已知一个文件的权限是-rw-rw-r--,如果想给文件的所有者加上可执行权限,并且其他权限保持不动的话,可以使用下面哪个命令
A: chmod g+x 文件
B: chmod u+x 文件
C: chmod o+x 文件
D: chmod a+x 文件
A: chmod g+x 文件
B: chmod u+x 文件
C: chmod o+x 文件
D: chmod a+x 文件
举一反三
- 文件test1.txt的访问权限为rw - r - - r - -,现要增加所有用户的执行权限和同组用户的写权限,下列命令正确的是( )。 A: chmod a + x,g + w test1.txt B: chmod 765 test1.txt C: chmod o + x test1.txt D: chmod g + w test1.txt
- Linux系统中,关于chmod命令错误的是 A: chmod -R可以递归改变目录中所有子目录和文件的权限 B: chmod可以采用数字的方式指定文件权限 C: chmod可以采用字母的方式指定文件权限 D: chmod可以通过改变文件的所有者来控制文件的权限
- 你想要让用户拥有文件filename的 执行权限,但你又不知道该文件原来的权限是什么。此时,应该执行 命令。 A: chmod a+x filename B: chmod a=x filename C: chmod 774 filename D: chmod a-x filename
- ●在Linux中,可以使用命令()来给test文件赋予执行权限。 A: [root@root]#chmod -X test B: [root@root]#chmod +x test C: [root@root]#chmod -W test D: [root@root]#chmod +w test
- 在Linux中,要求将文件mm.txt的所有使用者的文件执行权限删除。() A: chmod a-x mm.txt B: chmod o-x mm.txt C: chmod -x mm.txt D: chmod ugo-x mm.txt