zoukankan      html  css  js  c++  java
  • Linux面试基础题-2

    继续我们这面试系列,在这篇文章里我们给出了10个问题。这些问题或者是在以后的文章中出现的问题不一定在面试中会被问到。然而通过这些文章我们呈现出的是一个交互的学习平台,这必将会对你有很大的帮助。

    自本系列的上一篇文章11个基本的 Linux 面试问题,我们分析了不同论坛对此作出的评论,这对我们将更好的文章提供给我们的读者是很重要的。我们付出了时间和金钱,那我们又渴望从你们身上得到什么回报呢?答案是没有的。如果你不能赞扬我们的工作,但恳请不要在评论中诋毁我们的工作。

    如果你在文章中没有找到什么新的东西,但也请不要忘记它对某些人却是非常有用的,并且他或她会非常感激我们的工作。我们不能够让每一篇文章都使大家高兴。但我希望读者们能够尽量理解。

    Q.1:哪一条命令用于把用户登录会话记录在文件中?

    • macro
    • read
    • script
    • record
    • sessionrecord

    :‘script’ 命令是用来把用户登录的会话信息记录在文件里。这条命令能够用在 shell 脚本里面,或者直接在终端中使用。下面是一个例子,它记录了开始用 script 到输入 exit 结束之间的所有东西。

    如下命令记录用户登录会话到一个文件中:

    [root@tecmint ~]# script my-session-record.txt
    
    Script started, file is my-session-record.txt
    

    记录的文件“my-session-record.txt”可以通过下述方式查看:

    [root@tecmint ~]# nano my-session-record.txt
    
    script started on Friday 22 November 2013 08:19:01 PM IST
    [root@tecmint ~]# ls
    ^[[0m^[[01;34mBinary^[[0m ^[[01;34mDocuments^[[0m ^[[01;34mMusic^[[0m $
    ^[[01;34mDesktop^[[0m ^[[01;34mDownloads^[[0m my-session-record.txt ^[[01;34$
    

    Q.2:以下那一条命令可以用来查看内核日志信息

    • dmesg
    • kernel
    • ls -i
    • uname
    • 以上全不是

    :执行 'dmesg' 命令可以查看内核的日志信息。在上面的命令中,kernel 不是一个有效的命令,'ls -i' 是用来列出工作目录中文件的索引节点,而 'uname' 是用来显示操作系统信息的。

    -

    [root@tecmint ~]# dmesg
    
    Initializing cgroup subsys cpuset
    Initializing cgroup subsys cpu
    Linux version 2.6.32-279.el6.i686 (mockbuild@c6b9.bsys.dev.centos.org) (gcc version 4.4.6 20120305 (Red Hat 4.4.6-4) (GCC) ) #1 SMP Fri Jun 22 10:59:55 UTC 2012
    KERNEL supported cpus:
      Intel GenuineIntel
      AMD AuthenticAMD
      NSC Geode by NSC
      Cyrix CyrixInstead
      Centaur CentaurHauls
      Transmeta GenuineTMx86
      Transmeta TransmetaCPU
      UMC UMC UMC UMC
    Disabled fast string operations
    BIOS-provided physical RAM map:
    ...
    

    Q.3:哪一条命令是用来显示 Linux 内核发行信息的?

    • uname -v
    • uname -r
    • uname -m
    • uname -n
    • uname -o

    :‘uname -r’是用来显示内核的发行信息。其它参数‘-v’、‘-m’、‘-n’、‘o’分别显示内核版本、机器硬件名称、网络节点、主机名和操作系统。

    -

    [root@tecmint ~]# uname -r
    
    2.6.32-279.el6.i686
    

    Q.4:那一条命令是被用来识别文件类型的?

    • type
    • info
    • file
    • which
    • ls

    :‘file’命令是用来识别文件类型的。其语法是‘file [选项] 文件名’。

    -

    [root@tecmint ~]# file wtop
    
    wtop: POSIX shell script text executable
    

    Q.5:哪一条命令是被用来找一条命令的二进制文件、源和手册的所在的路径?

    :‘whereis’驾到!‘whereis’命令是用来找一条命令的二进制文件、源和手册的所在的路径。

    -

    [root@tecmint ~]# whereis /usr/bin/ftp
    
    ftp: /usr/bin/ftp /usr/share/man/man1/ftp.1.gz
    

    Q.6:当用户登录时,默认情况下哪些文件会被调用作为用户配置?

    :在用户的目录下‘.profile’和‘.bashrc’会默认地被调用作为用户配置。

    -

    [root@tecmint ~]# ls -al
    -rw-r--r--.  1 tecmint     tecmint            176 May 11  2012 .bash_profile
    -rw-r--r--.  1 tecmint     tecmint            124 May 11  2012 .bashrc
    

    Q.7:‘resolve.conf’文件是什么的配置文件?

    :‘/etc/resolve.conf’ 是 DNS 客户端的配置文件。

    -

    [root@tecmint ~]# cat /etc/resolv.conf
    
    nameserver 172.16.16.94
    

    Q.8:哪一条命令是用来创建一个文件的软链接的?

    • ln
    • ln -s
    • link
    • link -soft
    • 以上都不是

    :在 Linux 环境下,‘ln -s’是被用来创建一个文件的软链接的。

    -

    [root@tecmint ~]# ln -s /etc/httpd/conf/httpd.conf httpd.original.conf
    

    Q.9:在Linux下,‘pwd’命令是‘passwd’命令的别名吗?

    :不是!默认情况下‘pwd’命令不是‘passwd’命令的别名。‘pwd’是‘print working directory’(显示工作目录)的缩写,也就是输出当前的工作目录,而‘passwd’在 Linux 中是被用来更改用户的帐号密码。

    -

    [root@tecmint ~]# pwd
    
    /home/tecmint
    
    [root@tecmint ~]# passwd
    Changing password for user root.
    New password:
    Retype new password:
    

    Q.10:在 Linux 中,你会怎样检测 pci 设备的厂商和版本。

    :我们用的 Linux 命令是‘lspci’。

    -

    [root@tecmint ~]# lspci
    
    00:00.0 Host bridge: Intel Corporation 5000P Chipset Memory Controller Hub (rev b1)
    00:02.0 PCI bridge: Intel Corporation 5000 Series Chipset PCI Express x8 Port 2-3 (rev b1)
    00:04.0 PCI bridge: Intel Corporation 5000 Series Chipset PCI Express x8 Port 4-5 (rev b1)
    00:06.0 PCI bridge: Intel Corporation 5000 Series Chipset PCI Express x8 Port 6-7 (rev b1)
    00:08.0 System peripheral: Intel Corporation 5000 Series Chipset DMA Engine (rev b1)
    ...
  • 相关阅读:
    jQuery选择器
    ViewState对象与Session对象、Cookie对象
    angularjs关于$scope的生命周期详解(转)
    了解AngularJS的$scope的工作原理和生命周期(转载)
    angularjs route 路由
    angularJS--依赖注入
    angularjs动画-ngAnimate--快速上手、使用
    深入浅出理解AngularJS模块
    Angular入门1-之-基础概览02
    Angular入门1-之-基础概览01
  • 原文地址:https://www.cnblogs.com/xautlmx/p/3476307.html
Copyright © 2011-2022 走看看