怎么查看是什么linux(怎么查看是什么linux系统)

纸扎戏偶

今天给各位分享怎么查看是什么linux的知识,其中也会对怎么查看是什么linux系统进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站,现在开始吧!

本文目录一览:

  • 1、如何查看linux版本的型号
  • 2、怎么查看当前linux是什么linux
  • 3、Linux操作系统版本要怎么查看
  • 4、怎么查看linux系统
  • 5、如何查看linux版本

1、如何查看linux版本的型号

Linux系统如何查看版本信息

1、查看当前操作系统内核信息

uname -a

$ uname -a

Linux vm-web 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux

2、查看当前操作系统版本信息

cat /proc/version

$ cat /proc/version

Linux version 3.10.0-693.21.1.el7.x86_64 (builder@kbuilder.dev.centos.org) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC) ) #1 SMP Wed Mar 7 19:03:37 UTC 2018

3、查看当前操作系统发行版信息

cat /etc/issue 或 cat /etc/redhat-release

$ cat /etc/issue

\S

Kernel \r on an \m

$ cat /etc/redhat-release

CentOS Linux release 7.4.1708 (Core)

4、查看cpu相关信息,包括型号、主频、内核信息等

cat /proc/cpuinfo

$ cat /proc/cpuinfo

processor : 0

vendor_id : GenuineIntel

cpu family : 6

model : 45

model name : Intel(R) Xeon(R) CPU E5-2660 0 @ 2.20GHz

stepping : 7

microcode : 0xffffffff

cpu MHz : 2199.998

cache size : 20480 KB

physical id : 0

siblings : 2

core id : 0

cpu cores : 2

apicid : 0

initial apicid : 0

fpu : yes

fpu_exception : yes

cpuid level : 13

wp : yes

flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology eagerfpu pni pclmulqdq ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx hypervisor lahf_lm xsaveopt

bogomips : 4399.99

clflush size : 64

cache_alignment : 64

address sizes : 44 bits physical, 48 bits virtual

power management:

processor : 1

vendor_id : GenuineIntel

cpu family : 6

model : 45

model name : Intel(R) Xeon(R) CPU E5-2660 0 @ 2.20GHz

stepping : 7

microcode : 0xffffffff

cpu MHz : 2199.998

cache size : 20480 KB

physical id : 0

siblings : 2

core id : 1

cpu cores : 2

apicid : 1

initial apicid : 1

fpu : yes

fpu_exception : yes

cpuid level : 13

wp : yes

flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology eagerfpu pni pclmulqdq ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx hypervisor lahf_lm xsaveopt

bogomips : 4399.99

clflush size : 64

cache_alignment : 64

address sizes : 44 bits physical, 48 bits virtual

power management:

5、列出所有版本信息

lsb_release -a

$ lsb_release -a

-bash: lsb_release: command not found

出现command not found说明没安装lsb_realease,可以执行命令yum install -y redhat-lsb安装lsb_realease,安装完成后,版本信息如下:

$ lsb_release -a

LSB Version: :core-4.1-amd64:core-4.1-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-4.1-amd64:desktop-4.1-noarch:languages-4.1-amd64:languages-4.1-noarch:printing-4.1-amd64:printing-4.1-noarch

Distributor ID: CentOS

Description: CentOS Linux release 7.4.1708 (Core)

Release: 7.4.1708

Codename: Core

2、怎么查看当前linux是什么linux

1,查看内核版本命令:

cat /proc/version

uname -a

uname -rcat /etc/issue

man uname

2,查看linux版本:抄录如下:

1) 登录到服务器执行 lsb_release -a ,即可列出所有版本信息,例如:

[root@3.5.5Biz-46 ~]# lsb_release -a

LSB Version: 1.3

Distributor ID: RedHatEnterpriseAS

Descrīption: Red Hat Enterprise Linux AS release 4 (Nahant Update 1)

Release: 4

Codename: NahantUpdate1

[root@3.5.5Biz-46 ~]#

这个命令适用于所有的linux,包括Redhat、SuSE、Debian等发行版。

2) 登录到linux执行cat /etc/redhat-release ,例如如下:

[root@3.5.5Biz-46 ~]# cat /etc/redhat-release

Red Hat Enterprise Linux AS release 4 (Nahant Update 1)

[root@3.5.5Biz-46 ~]#

这种方式下可以直接看到具体的版本号,比如 AS4 Update 1

3)登录到linux执行rpm -q redhat-release ,例如如下

[root@3.5.5Biz-46 ~]# rpm -q redhat-release

redhat-release-4AS-2.4

[root@3.5.5Biz-46 ~]#

这种方式下可看到一个所谓的release号,比如上边的例子是2.4

这个release号和实际的版本之间存在一定的对应关系,如下:

redhat-release-3AS-1 - Redhat Enterprise Linux AS 3

redhat-release-3AS-7.4 - Redhat Enterprise Linux AS 3 Update 4

redhat-release-4AS-2 - Redhat Enterprise Linux AS 4

redhat-release-4AS-2.4 - Redhat Enterprise Linux AS 4 Update 1

redhat-release-4AS-3 - Redhat Enterprise Linux AS 4 Update 2

redhat-release-4AS-4.1 - Redhat Enterprise Linux AS 4 Update 3

redhat-release-4AS-5.5 - Redhat Enterprise Linux AS 4 Update 4

3、Linux操作系统版本要怎么查看

Linux操作系统版本要怎么查看

Linux可安装在各种计算机硬件设备中,比如手机、平板电脑、路由器、视频游戏控制台、台式计算机、大型机和超级计算机。下面是我收集Linux操作系统版本,希望大家认真阅读!

1. 查看内核版本命令:

chen@mylinuxserver:~ cat /proc/version

Linux version 2.6.5-7.244-smp (geeko@buildhost) (gcc version 3.3.3 (SuSE Linux)) #1 SMP Mon Dec 12 18:32:25 UTC 2005

/proc 目录的'作用?

chen@mylinuxserver:/proc uname -a

Linux mylinuxserver 2.6.5-7.244-smp #1 SMP Mon Dec 12 18:32:25 UTC 2005 i686 i686 i386 GNU/Linux

chen@mylinuxserver:/proc uname -r

2.6.5-7.244-smp

uname命令的作用?

2. 查看Linux版本:

1) 登录到服务器执行 lsb_release -a ,即可列出所有版本信息,例如:

chen@mylinuxserver:/proc lsb_release -a

LSB Version: core-2.0-noarch:core-3.0-noarch:core-2.0-ia32:core-3.0-ia32:graphics-2.0-ia32:graphics-2.0-noarch:graphics-3.0-ia32:graphics-3.0-noarch

Distributor ID: SUSE LINUX

Description: SUSE LINUX Enterprise Server 9 (i586)

Release: 9

Codename: n/a

注:这个命令适用于所有的linux,包括Redhat、SuSE、Debian等发行版。

2) 登录到linux执行cat /etc/issue,例如如下:

chen@mylinuxserver:/proc cat /etc/issue

Welcome to SUSE LINUX Enterprise Server 9 (i586) - Kernel \r (\l).

3) 登录到linux执行cat /etc/redhat-release ,例如如下:

chen@mylinuxserver:/proc cat /etc/*release*

LSB_VERSION="core-2.0-noarch:core-3.0-noarch:core-2.0-ia32:core-3.0-ia32"

cat: /etc/lsb-release.d: 是一个目录

SUSE LINUX Enterprise Server 9 (i586)

VERSION = 9

PATCHLEVEL = 3

;

4、怎么查看linux系统

很多朋友都在想怎么查看linux系统?下面就来给大家介绍一下吧!

怎么查看linux系统

1、输入"uname-a",可显示电脑以及操作系统的相关信息。 

2、输入"cat/proc/version",说明正在运行的内核版本。

3、输入"cat/etc/issue", 显示的是发行版本信息

4、lsb_release-a适用于所有的linux,会显示电脑版本、系统版本、id等信息。

本文章基于ThinkpadE15品牌、centos7系统撰写的。

5、如何查看linux版本

需要准备的材料分别是:电脑、linux连接工具。

1、首先连接上linux主机,进入等待输入指令的linux命令行状态。

2、输入:bash --version,按回车。

3、此时打印出的“version 4.2.46(1)-release”就是该shell的版本。

怎么查看是什么linux的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于怎么查看是什么linux系统、怎么查看是什么linux的信息别忘了在本站进行查找喔。

文章版权声明:除非注明,否则均为我爱教程术原创文章,转载或复制请以超链接形式并注明出处。