操作系统

Linux查看系统版本的方法

时间:2024-07-05 05:53:07 操作系统 我要投稿
  • 相关推荐

关于Linux查看系统版本的方法汇总

  关于Linux查看系统版本的方法汇总

  一、查看Linux系统发行版本

  命令1:lsb_release -a

  该命令适用于所有Linux系统,会显示出完整的版本信息,包括Linux系统的名称,如Debian、Ubuntu、CentOS等,和对应的版本号,以及该版本的`代号,例如在Debian 8中将会显示代号jessie。

  $ lsb_release -a

  No LSB modules are available.

  Distributor ID: Debian

  Description: Debian GNU/Linux 8.0 (jessie)

  Release: 8.0

  Codename: jessie

  命令2: cat /etc/issue

  该命令适用于所有Linux系统,显示的版本信息较为简略,只有系统名称和对应版本号。

  $ cat /etc/issue

  Debian GNU/Linux 8 1

  命令3: cat /etc/redhat-release

  该命令仅适用于Redhat系列的Linux系统,显示的版本信息也较为简略。

  $ cat /etc/redhat-release

  CentOS release 6.0 (Final)

  二、查看Linux内核版本

  命令1: uname -a

  $ uname -a

  Linux CodeBelief 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt9-3~deb8ul (2015-04-24) x86_64 GNU/Linux

  命令2: cat /proc/version

  $ cat /proc/version

  Linux version 3.16.0-4-amd64 (debian-kernel@lists.debian.org) (gcc version 4.8.4 (Debian 4.8.4-1) ) #1 SMP Debian 3.16.7-ckt9-3~deb8ul (2.15-04-24)

【Linux查看系统版本的方法】相关文章:

如何查看Linux系统使用的版本信息03-05

linux系统中快速查看进程pid的方法11-19

如何查看Linux系统架构类型03-14

Linux系统如何查看进程的线程数02-14

Linux系统查看端口使用状态及启动12-06

如何查看solaris系统的版本和位数12-15

Linux系统的文件设置方法11-23

Windows7系统查看系统位数方法03-19

Linux系统删除旧内核的方法03-05