LINUX SHELL命令练习题(1)
1)Linux 核心的许可证是什么?
a. NDA b. GDP c. GPL d.GNU
a. NDA b. GDP c. GPL d.GNU
2)谁是Linux的创始人
a. Turbolinux b. AT&T Bell Laboratry c. University of Helsinki d. Linus Torvalds
a. Turbolinux b. AT&T Bell Laboratry c. University of Helsinki d. Linus Torvalds
3)确定myfile的文件类型的命令是什么
a. type myfile b. type -q myfile
c. file myfile d. whatis myfile
a. type myfile b. type -q myfile
c. file myfile d. whatis myfile
4)用来分离目录名和文件名的字符是什么
a. slash (/) b. period (.)
c. dash (-) d. asterisk (*)
a. slash (/) b. period (.)
c. dash (-) d. asterisk (*)
5)你想显示文件"longfile"的最后10行,下面那个命令是正确的(选择最合适的答案)
a、tail logfile b、head -10 longfile
c、tail -d 10 longfile d、head longfile
c、tail -d 10 longfile d、head longfile
6)假如你得到一个运行命令被拒绝的信息,你可以用哪个命令去修改它的权限使之可以正常运行
a. path= b. chmod
c. chgrp d. chown
a. path= b. chmod
c. chgrp d. chown
7)拷贝mydir\myfile文件到dir2目录下,但是系统提示这个文件已经存在,下面那个命令是正确的
a、cp -w mydir\myfile dir2 b、cp -i mydir\myfile dir2
c、cp mydir\myfile dir2 d、cp -v mydir\myfile dir2
a、cp -w mydir\myfile dir2 b、cp -i mydir\myfile dir2
c、cp mydir\myfile dir2 d、cp -v mydir\myfile dir2
8)下面那个命令允许对文件重命名(选择最合适的答案)
a、rn b、rname
c、replace d、mv
a、rn b、rname
c、replace d、mv
9)假如文件是按8进制来定义,下面那个值代表了读和写
a、2 b、6
c、4 d、1
a、2 b、6
c、4 d、1
10)linux临时目录一般存在下面那个文件夹中
a、/tmp b、/proc
c、/data d、/dev
a、/tmp b、/proc
c、/data d、/dev
11)一个文件的权限是-rw-rw-r--,这个文件所有者的权限是什么
a、read-only b、read-write
c、write源码编程器怎么做小游戏 d、read-write-excute
a、read-only b、read-write
c、write源码编程器怎么做小游戏 d、read-write-excute
12)下面哪个值代表多用户启动
a、1 b、0
c、3 d、5
a、1 b、0
c、3 d、5
13)下面哪个文件代表系统初始化信息
a、/etc/inittab b、/etc/init
c、/etc/proc d、/etc/initproc
c、/etc/proc d、/etc/initproc
14)哪条命令从当前系统切换到启动级别1
a、inittab 1 b、init 1java培训班郑州
c、level 1 d、rlevel1
a、inittab 1 b、init 1java培训班郑州
c、level 1 d、rlevel1
15)下面哪个选项能取消shutdown命令
a、shutdown -c b、shutdown -x
c、shutdown -u d、shutdown -n
a、shutdown -c b、shutdown -x
c、shutdown -u d、shutdown -n
16)哪个符号加在命令后面可以在后台执行程序
a. @ b. & c. # d. *
a. @ b. & c. # d. *
c++网课推荐17)在vi编辑器里,哪个命令能将光标移到第200行
a. 200g b. :200 c. g200 d. G200
a. 200g b. :200 c. g200 d. G200
18)下面哪个配置文件用来定义syslog的后台进程
a、f b、f c、syslogd d、f
19)下面哪个f代表httpd进程
a、httpd
b、proc
c、smtp
d、daemon
a、httpd
b、proc
c、smtp
d、daemon
20)你给公司的新同事添加一个用户,你起初指定他的帐号在30天后过期,现在想改变这个过期时间,用下面哪个命令
a、usermod -a b、usermod -d
c、usermod -x d、usermod -e
a、usermod -a b、usermod -d
c、usermod -x d、usermod -e
21)用下面哪个命令可以不用退出vi编辑器来切换文件
a. :e for edit command b. map command
c. export command d. set command
a. :e for edit command b. map command
c. export command d. set command
22)下面哪个选项用来添加用户定义用户登录的shell
a、-s b、-u
c、-l d、-sh
a、-s b、-u
c、-l d、-sh
23)网络运维工程师培训如果你想给变量"IQ"定义为4,下面哪些是正确的
a、IQ=4 b、set IQ=4
html的注释标签是什么c、set $IQ=4 d、IQ set 4
a、IQ=4 b、set IQ=4
html的注释标签是什么c、set $IQ=4 d、IQ set 4
24)在系统重建的时候,下面哪个参数能用来对mkfs命令检查坏块
a、-b b、-e
c、-c d、-check
a、-b b、-e
c、-c d、-check
25)哪一个命令能用来查在文件TESTFILE中只包含四个字符的行?
a.grep '' TESTFILE b.grep '....' TESTFILE
c.grep '^$' TESTFILE d.grep '^....$' TESTFILE
a.grep '' TESTFILE b.grep '....' TESTFILE
c.grep '^$' TESTFILE d.grep '^....$' TESTFILE
26)哪一个命令能用来删除当前目录及其子目录下名为‘core'的文件?
a.find . -name core -exec rm ;
b.find . -name core -exec rm {} \ ;
c.find . -name core -exec rm {} -;
d.find . -name core -exec rm {} ;
b.find . -name core -exec rm {} \ ;
c.find . -name core -exec rm {} -;
d.find . -name core -exec rm {} ;
27)用标准的输出重定向(>)”> file01”能使文件file01的数据linux修改口令的命令
a. 被复制 b. 被移动
c. 被覆盖 d. 被打印
a. 被复制 b. 被移动
c. 被覆盖 d. 被打印
28)按_____键能中止当前运行的命令
a. Ctrl-D b. Ctrl-C
c. Ctrl-B d. Ctrl-F
a. Ctrl-D b. Ctrl-C
c. Ctrl-B d. Ctrl-F
29)下面对Linux命令的描述哪个是正确的
a. 不是大小写敏感的 b. 都是大写的
c. 大小写敏感 d. 都是小写
a. 不是大小写敏感的 b. 都是大写的
c. 大小写敏感 d. 都是小写
30)在vi编辑器里,命令”dd”用来删除当前?
a. 字 b. 字符
c. 变量 d. 行
a. 字 b. 字符
c. 变量 d. 行
31)下列哪一个命令能被用来重定向管道的输出到标准输出和指定的文件中?
a.cat b.less
c.tee d.wee
a.cat b.less
c.tee d.wee
32)spool文件系统放到什么位置
a、/proc b、/spool
c、/var d、/lpd
a、/proc b、/spool
c、/var d、/lpd
33)下面哪个命令能去掉主引导信息里的内容
a、fdisk /mbr b、format /mbr
c、mbr /format d、mbr /replace
a、fdisk /mbr b、format /mbr
c、mbr /format d、mbr /replace
34)下面哪条命令可以显示交换内存
a、showmem b、freemem
c、swap d、free
c、swap d、free
35)下面哪条命令可以显示用户默认设置
a、useradd -u b、show defaults
c、show user defaults d、useradd –D
a、useradd -u b、show defaults
c、show user defaults d、useradd –D
36)下面哪段定义了添加一个tar文件的信息
a、use the append command
b、use the add command
c、use the tar command with the -a switch
d、use the tar command with the -r switch
a、use the append command
b、use the add command
c、use the tar command with the -a switch
d、use the tar command with the -r switch
37)在vi中下列哪些命令可以用来在光标前插入文本?
a. p [text] b. a [text]
c. i [text] d. o [text]
a. p [text] b. a [text]
c. i [text] d. o [text]
38)关于linux下列说明哪些是正确的?
a. Linux 是一个开放源码的操作系统.
b. Linux 是一个类UNIX的操作系统.
c. Linux 是一个多用户的操作系统.
d. Linux 是一个多任务的操作系统.
a. Linux 是一个开放源码的操作系统.
b. Linux 是一个类UNIX的操作系统.
c. Linux 是一个多用户的操作系统.
d. Linux 是一个多任务的操作系统.
39)哪些命令组合起来能统计多少用户登录系统
a.who | wc -w b.who | wc -l
c.who | wc -c d.who | wc
a.who | wc -w b.who | wc -l
c.who | wc -c d.who | wc
40)如果你对文件和目录的权限不确定,则不能用 _______命令来检测权限.
a. ps b. ls -l
c. ck d. chown
a. ps b. ls -l
c. ck d. chown
41)下面哪些环境变量是在Turbolinux shell下被定义的?
a. PATH b. CD
c. PS1 d. TERM
a. PATH b. CD
c. PS1 d. TERM
42)创建一个用户帐号需要在/etc/passwd中定义哪些信息
a、login name b、password age
c、default group d、userid
a、login name b、password age
c、default group d、userid
43)在本地的文件系统中下列哪些linux路径结构是无效的?
a. //usr\zhang/memo b. \usr\zhang\memo
c. /usr/zhang/memo d. \usr/zhang/memo
a. //usr\zhang/memo b. \usr\zhang\memo
c. /usr/zhang/memo d. \usr/zhang/memo
44)Turbolinux支持哪些编程语言
a.Perl b.Python
c.C++ d.Fortran
a.Perl b.Python
c.C++ d.Fortran
45)echo命令可以用来显示?
a. 参数 b. 文本字符
c. 过滤内容 d. shell 变量
a. 参数 b. 文本字符
c. 过滤内容 d. shell 变量
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论