多项选择题在linux系统中,可用于压缩的命令是()。

A、tar
B、compress
C、gzip
D、bzip2
E、WinRaR


您可能感兴趣的试卷

你可能感兴趣的试题

1.单项选择题在linux系统中,递归地压缩/tmp/test6/目录下的所有文件,正确的命令是()。

A、gzip -v /tmp/test6
B、gzip /tmp/test6
C、gzip -r /tmp/test6
D、tar -czvfr /tmp/test6

2.多项选择题在linux系统中,用于解压缩的命令有()。

A、tar
B、uncompress
C、gunzip
D、bunzip
E、winrar

3.单项选择题在linux系统中,在当前目录下,将文件/test.gz解压缩成/test,正确的命令是()。

A、tar -czf test.gz
B、tar -xvzf test.gz
C、tar -uczf test.gz
D、tar -czf test.gz

4.单项选择题在linux系统中,以下可用来查看文件类型的命令是()。

A、find
B、which
C、file
D、ls –l

5.多项选择题在linux系统下,下列设备中,在一般情况下属于块设备的有()。

A、硬盘
B、软盘
C、终端
D、CD-ROM
E、/dev/null

6.单项选择题在linux系统中,对一个重要文件test,可以实现所有用户都有读和执行权限的命令是()。

A、chmod a+rx test
B、chmod a+wx test
C、chmod o+rx test
D、chmod u+rx test

8.单项选择题在linux系统中,查找/home/目录下文件名以test开头的文件,以下正确的命令是()。

A、find /home -name test*
B、find -name test* /home
C、find test* /home
D、find -n test* /home

9.单项选择题在linux系统中,查找/tmp目录下正规文件,其权限为644的文件,下列命令中正确的是()。

A、find /tmp -f -perm 644
B、find -type f -perm 644 /tmp
C、find -type f -perm 644
D、find /tmp -type f -perm 644

10.多项选择题在linux系统中,下述正则表达式结果相同的有()

A、[ 0 1 2 3 4 5 ]
B、[ 0-5 ]
C、[ 0 1-5 ]
D、[ 0-2 3-5]
E、[01][2-5]