linux系统下version命令是什么呢?下面是具体介绍:
在Linux系统中安装一些软件而去下载安装文件时,一般都需要确认到底下载哪个版本的安装包,这就需要查看自己的的Linux系统到底是什么版本、什么内核。version就是常见的版本、内核查看命令。其他版本、内核查看命令或文件还有:uname、lsb_release、issue、redhat-release。
拓展资料:
查看内核版本:
[admin@mall_dev4 ~]$ cat /proc/version
Linux version 2.6.9-67.ELxenU (brewbuilder@ls20-bc1-14.build.redhat.com) (gcc version 3.4.6 20060404 (Red Hat 3.4.6-8)) #1 SMP Wed Nov 7 14:19:15 EST 2007
[admin@mall_dev4 ~]$ uname -a
Linux mall_dev4 2.6.9-67.ELxenU #1 SMP Wed Nov 7 14:19:15 EST 2007 i686 i686 i386 GNU/Linux
查看Linux版本:
[admin@mall_dev4 ~]$ lsb_release -a
LSB Version: :core-3.0-ia32:core-3.0-noarch:graphics-3.0-ia32:graphics-3.0-noarch
Distributor ID: RedHatEnterpriseAS
Description: Red Hat Enterprise Linux AS release 4 (Nahant Update 6)
Release: 4
Codename: NahantUpdate6
[admin@mall_dev4 ~]$ cat /etc/issue
Red Hat Enterprise Linux AS release 4 (Nahant Update 6)
Kernel /r on an /m
[admin@mall_dev4 ~]$ cat /etc/redhat-release
Red Hat Enterprise Linux AS release 4 (Nahant Update 6)
[admin@mall_dev4 ~]$ rpm -q redhat-release
redhat-release-4AS-7
查看Linux是否为64位:
[admin@mall_dev4 ~]$ getconf LONG_BIT
32
[admin@mall_dev4 ~]$ file /bin/ls
/bin/ls: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.2.5, dynamically linked (uses shared libs), stripped
以上就是小编今天的分享了,希望可以帮助到大家。
Linux 查看版本信息
简介
Linux有很多发行版本,一般通过内核就可以判断大致的发行版本。但是如果需要详细的发行版本信息,就可以借助命令进行查看。
LSB_release显示LSB(Linux Standard Base)兼容的发行版本信息。如果是LSB兼容的发行版本,在/etc/lsb-release就可以查看到具体的版本信息。
lsb_release可以快速过滤这些信息找到自己需要的字段,这个命令有可能没有自带,可以自行安装lsb-release包就可以有了。
lsb_release -h
FSG lsb_release v1.4 prints certain LSB (Linux Standard Base) andDistribution information.Usage: lsb_release [OPTION]...With no OPTION specified it is the same as -v.Options: -v, --version Display the version of the LSB specification against which the distribution is compliant. -i, --id Display the string id of the distributor. -d, --description Display the single line text description of the distribution. -r, --release Display the release number of the distribution. -c, --codename Display the codename according to the distribution release. -a, --all Display all of the above information. -s, --short Display all of the above information in short output format. -h, --help Display this message.
lsb_release -a
LSB Version: n/aDistributor ID: ManjaroLinuxDescription: Manjaro LinuxRelease: 21.0.2Codename: Ornara
Version文件
lsb_release这个命令需要有另外安装,如果没有安装也可以通过其他的版本信息文件找到版本的信息。
RHEL系列:/etc/redhat-release、/etc/os-release、/etc/system-release 等,这些文件一般都是指向同一个文件,如果是重新发行的版本,例如centos,还会有/etc/centos-release
Debian系列:/etc/debian-version、/etc/issue等,同样重新发行的版本也会有对应的version文件。
内核版本查看内核版本一般都使用uname这个命令。
uname -aLinux manjaro 5.11.14-1-MANJARO #1 SMP PREEMPT Wed Apr 14 08:25:29 UTC 2021 x86_64 GNU/Linux
用这个命令也可以快速过滤到自己需要的字段。
也可以直接查看/proc/version来查看当前云中的内核版本
cat /proc/versionLinux version 5.11.14-1-MANJARO (builduser@LEGION) (gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.36.1) #1 SMP PREEMPT Wed Apr 14 08:25:29 UTC 2021