查看Linux当前的系统信息方法

在某些情况下,需要查看当前Linux的版本信息,可以使用以下方法:

  • cat /etc/os-release

你可以看到返回以下信息:

  • NAME=”Red Hat Enterprise Linux”
  • VERSION=”8.6 (Ootpa)”
  • ID=”rhel”
  • ID_LIKE=”fedora”
  • VERSION_ID=”8.6″
  • PLATFORM_ID=”platform:el8″
  • PRETTY_NAME=”Red Hat Enterprise Linux 8.6 (Ootpa)”
  • ANSI_COLOR=”0;31″
  • CPE_NAME=”cpe:/o:redhat:enterprise_linux:8::baseos”
  • HOME_URL=”https://www.redhat.com/”;
  • DOCUMENTATION_URL=”https://access.redhat.com/documentation/red_hat_enterprise_linux/8/”;
  • BUG_REPORT_URL=”https://bugzilla.redhat.com/”;

 

Debian Linux查看系统版本,输入以下命令:

  • lsb_release -a

返回下图内容

如果Linux是 RHEL 8 可以使用以下方法:

  • cat /etc/redhat-release

你可以看到返回以下信息:

  • [silky.cn@1-0-15-redhat~]$ cat /etc/redhat-release
  • Red Hat Enterprise Linux release 8.6 (Ootpa)

如果要查看CPU信息,可以使用以下方法:

  • #lscpu

如果要查看内存信息,可以使用以下方法:

  • #free

如果要查看磁盘信息,可以使用以下方法:

  • #fdisk –l

如果要查看系统资源实时信息,可以使用以下方法:

  • #top