服务器

版本:25.03

信息收集

查看OS信息

  1. 查看操作系统版本信息

    shell
    # cat /etc/openEuler-latest
    # cat /etc/os-release
    # cat /etc/openEuler-release
  2. 查看内核版本信息

    shell
    # uname -a

查看硬件信息

  1. 查看cpu的统计信息

    shell
    # lscpu
  2. 查看CPU相关参数

    shell
    # cat /proc/cpuinfo
  3. 查看系统内存信息

    shell
    # cat /proc/meminfo
  4. 查看内存信息

    shell
    # dmidecode -t memory
  5. 查看硬盘和分区分布

    shell
    # lsblk
  6. 看硬盘和分区的详细信息

    shell
    # fdisk -l
  7. 查看网卡硬件信息

    shell
    # lspci | grep -i 'eth'
  8. 查看所有网络接口

    shell
    # ip a
    # yum install -y net-tools
    # ifconfig
  9. 查看某个网络接口的详细信息

    shell
    # ethtool enp7s0 (以enp7s0为例)
  10. 查看pci信息

    shell
    # lspci
  11. 查看设备树

    shell
    # lspci -t
  12. 查看bios信息

    shell
    # dmidecode -t bios

查看软件信息

  1. 查看软件包的详细信息

    shell
    # rpm -qi systemd(以systemd为例)
  2. 查看软件包提供的模块

    shell
    # rpm -q --provides systemd  (以systemd为例)
  3. 查看所有已安装软件包

    shell
    # rpm -qa | grep systemd (以systemd为例)
  4. 查看软件包文件列表

    shell
    # rpm -ql python3-rpm  (以python3-rpm为例)

查看OS日志

  1. 查看系统启动后的信息和错误日志

    shell
    # cat  /var/log/messages
  2. 查看安全相关的日志信息

    shell
    # cat /var/log/secure
  3. 查看邮件相关的日志信息

    shell
    # cat /var/log/maillog
  4. 查看定时任务相关的日志信息

    shell
    # cat /var/log/cron
  5. 查看UUCP和news设备相关的日志信息

    shell
    # cat /var/log/spooler
  6. 查看守护进程启动和停止相关的日志消息

    shell
    # cat /var/log/boot.log