uname命令用來列印系統資訊(print system information),包括系統名稱、核心版本等重要資訊。美中不足的是無法列印linux發行版本的名稱,比如列印rhel5.5或centos5.5之類的,另外乙個命令lsb_release可以列印這些。相關資料中提供了一些別的方法可以取得系統版本資訊。
-a 列印全部系統資訊。
-r 列印核心發行版本。
在指令碼中可以使用 `uname -r` 或者 $(uname -r) 取得核心發行版本,比如2.4.18。
[root@web186 root]# uname --help
用法:uname [選項]...
print certain system information. with no option, same as -s.
-a, --all print all information, in the following order:
-s, --kernel-name print the kernel name
-n, --nodename print the network node hostname
-r, --kernel-release print the kernel release
-v, --kernel-version print the kernel version
-m, --machine print the machine hardware name
-p, --processor print the processor type
-i, --hardware-platform print the hardware platform
-o, --operating-system print the operating system
--help 顯示此幫助資訊並離開
--version 顯示版本資訊並離開
report bugs to .
[root@web186 root]#
[root@new55 ~]# uname
linux
[root@new55 ~]# uname -a
linux new55 2.6.18-194.el5 #1 smp tue mar 16 21:52:43 edt 2010 i686 i686 i386 gnu/linux
[root@new55 ~]# uname -s
linux
[root@new55 ~]# uname -m
i686
[root@new55 ~]# uname -i
i386
[root@new55 ~]# uname -n
new55
[root@new55 ~]# uname -v
#1 smp tue mar 16 21:52:43 edt 2010
[root@new55 ~]# uname -r
2.6.18-194.el5
[root@new55 ~]# cat /proc/version
linux version 2.6.18-194.el5 ([email protected]) (gcc version 4.1.2 20080704 (red hat 4.1.2-48)) #1 smp tue mar 16 21:52:43 edt 2010
[root@new55 ~]# cat /etc/issue
red hat enterprise linux server release 5.5 (tikanga)
kernel \r on an \m
[root@new55 ~]# cat /etc/redhat-release
red hat enterprise linux server release 5.5 (tikanga)
[root@new55 ~]#
[root@new55 ~]# lsb_release -a
lsb version: :core-3.1-ia32:core-3.1-noarch:graphics-3.1-ia32:graphics-3.1-noarch
distributor id: redhatenterpriseserver
description: red hat enterprise linux server release 5.5 (tikanga)
release: 5.5
codename: tikanga
[root@new55 ~]#
一天一條Linux指令 cd
嵌入式開發需要不斷積累linux相關知識,所以在此天天不厭其煩 日積月累。cd change directory 命令是linux中最常用命令之一,我覺得另乙個應該是ls 後續介紹 主要功能是跳轉到cd命令指定目錄。cd命令格式 cd l p dir 常用cd命令 1.跳轉到指定目錄 cd dir ...
一天一條Linux指令 apt
由於昨天去assem公司除錯電路,接觸linux下依賴包的安裝大牛,遂整理了一下apt命令。apt get命令本身並不具有管理軟體包功能,只是提供了乙個軟體包管理的命令列平台。在這個平台上使用更豐富的子命令,完成具體的管理任務。apt get命令的一般語法格式為 apt get subcommand...
一天一條Linux指令 find
前言 我們為什麼要學會使用find命令?每一種作業系統都有成千上萬的檔案組成,對於linux這樣 一切皆檔案 的作業系統來說更不例外,大家應該都能很輕鬆使用windows下的檔案查詢功能,但是對linux這一功能可能並不是很熟悉,其實想玩linux的你更要牢牢掌握這個命令,因為linux不像wind...