Linux中,通过chmod修改权限设置,正确的是?
A: chmod test.jpg +x
B: chmod u+8 test.jpg
C: chmod 777 test.jpg
D: chmod 888 test.jpg
A: chmod test.jpg +x
B: chmod u+8 test.jpg
C: chmod 777 test.jpg
D: chmod 888 test.jpg
举一反三
- ●在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系统中,指定文件file1为所有用户可读,可写,可执行,执行命令:___1__。修改file1的拥有者为test,拥有组为user,执行命令:___2__。 A: chmod 776,chown test:use B: chmod 777,chown user:test C: chmod 778,chown user:test D: chmod 777,chown test:use
- 要修改文件test的权限,使其文件所有者拥有读、写和执行权限,所属组和其他人拥有读和执行权限,下列命令正确的是( )。 A: chmod 755 test B: chmod 644 test C: chmod 575 test D: chmod 557 test
- 文件test的访问权限为rw-r--r--,要增加所有用户的执行权限和同组用户的写权限,以下哪个命令正确? A: chmod 765 test B: chmod o+x test C: chmod g+w test D: chmod a+x,g+w test
- 需要设置某个文件test属于root用户,abc组,如下命令那个正确? A: chmod u+x test B: chown abc:root test C: chmod root:abc test D: chmod test:root abc