今天是开课第二天。昨天下了大雨,有点凉。

一、杂项知识整理:

    1、以太网(Ethernet)互联网internet。

        2、init命令:

        后加运行级别。0--6七个级别。0停机,1单用户,2多用户,无NFS(网络文件系统);3标准模式;4无定义;5Xwindow;6重启。   不要把inittab init的default设为0和6.

       3、chvt 123456  切换终端。

        4、在centos6以及以下版本,图形界面下,alt+F2然后输入free the fish。

            halt 关机不断电

        5、修改/etc/gdm/custom.conf,在【daemon】下,

            AutomaticLoginEnable=true

            AutomaticLogin=root        设置为图形界面默认登录为root,不需要选择用户和输入密码

       6、 gedit为图形界面下的命令

        更改hostname:

    centos6: /etc/sysconfig/network

    centos7:/etc/hostname

       7、lscpu命令:查看cpu详细信息

    [root@centos68 testdir]# lscpu    
    Architecture:          x86_64
    CPU op-mode(s):        32-bit, 64-bit
    Byte Order:            Little Endian
    CPU(s):                2
    On-line CPU(s) list:   0,1
    Thread(s) per core:    1
    Core(s) per socket:    1
    Socket(s):             2
    NUMA node(s):          1
    Vendor ID:             GenuineIntel
    CPU family:            6
    Model:                 60
    Model name:            Intel(R) Core(TM) i7-4710MQ CPU @ 2.50GHz
    Stepping:              3
    CPU MHz:               2494.290
    BogoMIPS:              4988.58
    Virtualization:        VT-x
    Hypervisor vendor:     VMware
    Virtualization type:   full
    L1d cache:             32K
    L1i cache:             32K
    L2 cache:              256K
    L3 cache:              6144K
    NUMA node0 CPU(s):     0,1

            lsblk命令:查看块设备使用情况,df 列出文件系统设备使用情况。更为详细一些,以下是对比情况:

    [root@centos68 testdir]# lsblk    
    NAME   MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
    sr0     11:0    1  3.7G  0 rom  /media/cdrom
    sda      8:0    0  120G  0 disk 
    ├─sda1   8:1    0  200M  0 part /boot
    ├─sda2   8:2    0  7.8G  0 part /
    ├─sda3   8:3    0  3.9G  0 part /home
    ├─sda4   8:4    0    1K  0 part 
    ├─sda5   8:5    0  1.5G  0 part [SWAP]
    └─sda6   8:6    0   10G  0 part /testdir
    [root@centos68 testdir]# df -lh
    Filesystem      Size  Used Avail Use% Mounted on
    /dev/sda2       7.6G  2.9G  4.4G  40% /
    tmpfs           342M     0  342M   0% /dev/shm
    /dev/sda1       190M   33M  147M  19% /boot
    /dev/sda3       3.8G  7.9M  3.6G   1% /home
    /dev/sda6       9.8G   32M  9.2G   1% /testdir
    /dev/sr0        3.7G  3.7G     0 100% /media/cdrom

        8、GNome(c编写,图形库为gtk);KDE(c++,图形库为qt);XFCE(轻量级桌面)

        9、变量PS1 定义提示符,当前shell进程有效

       10、hash命令:看缓存过的命令;

                -r  清空所有命令

                -d 删除指定命令

                直接跟命令    清空一个命名的命中次数为0       

        11、enable -n  内置命令     禁用内置命令

                  直接跟内置命令       启用内置命令

        12、一个命令可以\分成多行,,多个命令可以用;分开执行

        13、在windows中cmd下,set path   也可以查看path变量路径,linux中是echo $PATH

        14、centos7中重启网络命令:systemctl restart network

                centos6中重启网络命令:service network restart

        15、man章节:第一章用户命令;第二章系统调用;第三章库调用;第四章设备文件及特殊文件;第五章文件格式(配置文件格式);第六章游戏使用帮助;第七章杂项;第八章管理工具及守护进程。man -M /路径:到指定位置查找目录手册并打开。很多应用程序自带文档,/usr/share/doc/APP-Version。