5.9 KiB
20条Linux命令面试问答
问:1 如何查看当前的Linux服务器的运行级别?
答: ‘who -r’ 和 ‘runlevel’ 命令可以用来查看当前的Linux服务器的运行级别。
问:2 如何查看Linux的默认网关?
答: 用 “route -n” 和 “netstat -nr” 命令,我们可以查看默认网关。除了默认的网关信息,这两个命令还可以显示当前的路由表。
问:3 如何在Linux上重建初始化内存盘影响文件?
答: 在CentOS 5.X / RHEL 5.X中,可以用mkinitrd命令来创建初始化内存盘文件,举例如下:
# mkinitrd -f -v /boot/initrd-$(uname -r).img $(uname -r)
如果你想要给特定的内核版本创建初始化内存盘,你就用所需的内核名替换掉 ‘uname -r’ 。
在CentOS 6.X / RHEL 6.X中,则用dracut命令来创建初始化内存盘文件,举例如下:
# dracut -f
以上命令能给当前的系统版本创建初始化内存盘,给特定的内核版本重建初始化内存盘文件则使用以下命令:
# dracut -f initramfs-2.x.xx-xx.el6.x86_64.img 2.x.xx-xx.el6.x86_64
问:4 cpio命令是什么?
答: cpio就是复制入和复制出的意思。cpio可以向一个归档文件(或单个文件)复制文件、列表,还可以从中提取文件。
问:5 patch命令是什么?如何使用?
答: 顾名思义,patch命令就是用来将修改(或补丁)写进文本文件里。Patch命令通常是接收diff的输出并把文件的旧版本转换为新版本。举个例子,Linux内核源代码由百万行代码文件构成,所以无论何时,任何代码贡献者贡献出代码,只需发送改动的部分而不是整个源代码,然后接收者用patch命令将改动写进原始的源代码里。
创建一个diff文件给patch使用,
# diff -Naur old_file new_file > diff_file
旧文件和新文件要么都是单个的文件要么都是包含文件的目录,r选项支持目录树递归。
一旦diff文件创建好,我们就能在旧的文件上打上补丁,把它变成新文件:
# patch < diff_file
问:6 aspell有什么用 ?
答: 顾名思义,aspell就是Linux操作系统上的一款交互式拼写检查器。aspell命令继任了更早的一个名为ispell的程序,并且作为一款嵌入式替代品 ,最重要的是它非常好用。当aspell程序主要被其它一些需要拼写检查能力的程序所使用的时候,在命令行中作为一个独立运行的工具的它也能十分有效。
问:7 如何从命令行查看域SPF记录?
答: 我们可以用dig命令来查看域SPF记录。举例如下:
linuxtechi@localhost:~$ dig -t TXT google.com
问:8 如何识别Linux系统中指定文件(/etc/fstab)的关联包?
答: # rpm -qf /etc/fstab
以上命令能列出供应给“/etc/fstab”文件的包。
问:9 哪条命令用来查看bond0的状态?
答: cat /proc/net/bonding/bond0
问:10 Linux系统中的/proc文件系统有什么用?
答: /proc文件系统是一个基于维护关于当前正在运行的内核状态信息的文件系统的随机存取存储器(RAM),其中包括CPU、内存、分区划分、I/O地址、直接内存访问通道和正在运行的进程。这个文件系统所代表的是各种不实际存储信息的文件,它们指向的是内存里的信息。/proc文件系统是由系统自动维护的。
问:11 如何在/usr目录下找出大小超过10MB的文件?
答: # find /usr -size +10M
问:12 如何在/home目录下找出120天之前被修改过的文件?
答: # find /home -mtime +120
问:13 如何在/var目录下找出90天之内未被访问过的文件?
答: # find /var ! -atime -90
问:14 在整个目录树下查找核心文件并Search for core files in the entire directory tree and delete them as found without prompting for confirmation
答: # find / -name core -exec rm {} ;
问:15 What is the purpose of strings command ?
答: The strings command is used to extract and display the legible contents of a non-text file.
问:16 What is the use tee filter ?
答: The tee filter is used to send an output to more than one destination. It can send one copy of the output to a file and another to the screen (or some other program) if used with pipe.
linuxtechi@localhost:~$ ll /etc | nl | tee /tmp/ll.out
In the above example, the output from ll is numbered and captured in /tmp/ll.out file. The output is also displayed on the screen.
问:17 What would the command export PS1 = ”$LOGNAME@hostname
:$PWD: do ?
答: The export command provided will change the login prompt to display username, hostname, and the current working directory.
问:18 What would the command ll | awk ‘{print $3,”owns”,$9}’ do ?
答: The ll command provided will display file names and their owners.
问:19 What is the use of at command in linux ?
答: The at command is used to schedule a one-time execution of a program in the future. All submitted jobs are spooled in the /var/spool/at directory and executed by the atd daemon when the scheduled time arrives.
问:20 What is the role of lspci command in linux ?
答: The lspci command displays information about PCI buses and the devices attached to your system. Specify -v, -vv, or -vvv for detailed output. With the -m option, the command produces more legible output.
via: http://www.linuxtechi.com/20-linux-commands-interview-questions-answers/
作者:Pradeep Kumar 译者:ZTinoZ 校对:校对者ID