如何查看linux当前版本

如何查看linux当前版本。
1) uname -a

[root@localhost ~]# uname -a
Linux localhost.localdomain 2.6.9-55.ELsmp #1 SMP Fri Apr 20 17:03:35 EDT 2007 i686 athlon i386 GNU/Linux
[root@localhost ~]#

2) cat /proc/version

[root@localhost ~]# cat /proc/version
Linux version 2.6.9-55.ELsmp ([email protected]) (gcc version 3.4.6 20060404 (Red Hat 3.4.6-3)) #1 SMP Fri Apr 20 17:03:35 EDT 2007
[root@localhost ~]#

3) cat /etc/issue
[root@localhost ~]# cat /etc/issue
Red Hat Enterprise Linux ES release 4 (Nahant Update 5)
Kernel \r on an \m

[root@localhost ~]#

4) ls /boot
linux文件结构,boot是放置和启动有关文件的位置,这里会放一些内核的信息:

[root@localhost ~]# ls /boot
boot.b                  initrd-2.6.9-55.ELsmp.img System.map-2.6.9-55.EL
chain.b                 lost+found                 System.map-2.6.9-55.ELsmp
config-2.6.9-55.EL      memtest86+-1.26            vmlinuz-2.6.9-55.EL
config-2.6.9-55.ELsmp   message                    vmlinuz-2.6.9-55.ELsmp
grub                    message.ja
initrd-2.6.9-55.EL.img os2_d.b
[root@localhost ~]#
最后一个从序数最大的那个文件initrd-2.6.9-55.ELsmp.img 可以看到linux的版本是:initrd-2.6.9-55.ELsmp,当然这个内容只能作为参考,因为我们是不确定启动电脑时是从哪一个核心启动的。

你可能感兴趣的:(虚拟机,linux,职场,休闲,vps主机)