1.如何查看linux系統(tǒng)的信息
如果只想知道系統(tǒng)名稱,可以使用不帶任何參數(shù)選項(xiàng)的uname命令,就可以輸出系統(tǒng)信息,或使用uname -s命令輸出系統(tǒng)的內(nèi)核名稱。
tecmint@tecmint ~ $ uname Linux
要查看網(wǎng)絡(luò)主機(jī)名,用“-n”參數(shù)選項(xiàng)的uname命令,如下所示。
tecmint@tecmint ~ $ uname -n tecmint.com
要獲取有關(guān)內(nèi)核版本的信息,使用“-v”參數(shù)選項(xiàng)。
tecmint@tecmint ~ $ uname -v #64-Ubuntu SMP Mon Sep 22 21:28:38 UTC 2014
要得到有關(guān)你的內(nèi)核的發(fā)行版信息,請(qǐng)使用“-r”參數(shù)選項(xiàng)。
tecmint@tecmint ~ $ uname -r 3.13.0-37-generic
要輸出你的機(jī)器的硬件名,使用“-m”參數(shù)選項(xiàng):
tecmint@tecmint ~ $ uname -m x86_64
所有這些信息可以通過運(yùn)行“uname -a”命令,如下圖所示一次性輸出。
tecmint@tecmint ~ $ uname -a Linux tecmint.com 3.13.0-37-generic #64-Ubuntu SMP Mon Sep 22 21:28:38 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
2.如何查看Linux的系統(tǒng)硬件信息
你可以使用lshw工具來收集有關(guān)硬件部件,如CPU,硬盤,內(nèi)存,USB控制器等的大量信息。
lshw是一個(gè)相對(duì)比較小巧的工具linux命令,當(dāng)你提取信息的時(shí)候,只有為數(shù)不多的幾個(gè)選項(xiàng)可供你使用。由lshw提供的信息收集形成了不同的/ proc文件。
注:請(qǐng)記住,lshw命令是由superuser (root)或sudo用戶執(zhí)行的。
參見:《Difference Between su and sudo User in Linux》
要輸出你的Linux系統(tǒng)的硬件信息,運(yùn)行此命令。
tecmint@tecmint ~ $ sudo lshw tecmint.com description: Notebook product: 20354 (LENOVO_MT_20354_BU_idea_FM_Lenovo Z50-70) vendor: LENOVO version: Lenovo Z50-70 serial: 1037407803441 width: 64 bits capabilities: smbIOS-2.7 dmi-2.7 vsyscall32 configuration: administrator_password=disabled boot=normal chassis=notebook family=IDEAPAD frontpanel_password=disabled keyboard_password=disabled power-on_password=disabled sku=LENOVO_MT_20354_BU_idea_FM_Lenovo Z50-70 uuid=E4B1D229-D237-E411-9F6E-28D244EBBD98 *-core description: Motherboard product: Lancer 5A5 vendor: LENOVO physical id: 0 version: 31900059WIN serial: YB06377069 slot: Type2 - Board Chassis Location *-firmware description: BIOS vendor: LENOVO physical id: 0 version: 9BCN26WW date: 07/31/2014 size: 128KiB capacity: 4032KiB capabilities: pci upgrade shadowing cdboot bootselect edd int13floppynec int13floppytoshiba int13floppy360 int13floppy1200 int13floppy720 int13floppy2880 int9keyboard int10video acpi usb biosbootspecification uefi ......
上一個(gè)教程:linux命令制作腳本
下一個(gè)教程:5,Linux學(xué)習(xí)筆記--LINUX常用命令(2)