在linux下邊察看版本資訊linux學習論壇,一般使用的命令是uname
ubuntu系統:
$uname-a
Linuxwanghaifeng-laptop2.6.32-23-generic#37-UbuntuSMPFriJun1107:54:58UTC2010i686GNU/Linux
RedHat系統:
$uname-a
Linuxlocalhost.localdomain2.6.18-194.el5#1SMPTueMar1621:52:43EDT2010i686i686i386GNU/Linux
-a選項表示察看所有的信息怎麼查看linux發行版本,並且從輸出信息可以看下來怎麼查看linux發行版本,uname聽到的版本信息,只是內核版本的信息,而不是發行版的版本資訊
那我們怎麼察看發行版的信息呢?
在RedHat系統裡linux伊甸園論壇,存在一個/etc/redhat-release文件,上面保存了發行版的版本資訊
$cat/etc/redhat-release
RedHatEnterpriseLinuxServerrelease5.5(Tikanga)
哪有沒有一個愈發通用的方式呢?那就是/etc/issue檔
issue檔案是登陸前的資訊和標示文件,上面儲存了發行版的版本資訊
ubuntu系統:
$cat/etc/issue
Ubuntu10.04.1LTS/n/l
RedHat系統:
$cat/etc/issue
RedHatEnterpriseLinuxServerrelease5.5(Tikanga)
Kernel/ronan/m
這樣能夠看見實際的發行版版本資訊了
以上是如何在 Linux 系統中使用 uname 指令查看版本信息的詳細內容。更多資訊請關注PHP中文網其他相關文章!