10 个用于收集硬件信息的 linux 命令-亚博电竞手机版

本文由码农网 – 小峰原创翻译,转载请看清文末的转载要求,欢迎参与我们的付费投稿计划!

知道自己的linux系统运行在什么样的硬件组件上总是好的,因为如果涉及到在系统上安装软件包和驱动程序的话,这将有助于你处理兼容性问题。

因此,下面我们将给出一些非常有用的命令,它们可以帮助你提取你的linux系统和硬件组件的信息。

1.如何查看linux系统的信息

如果只想知道系统名称,可以使用不带任何参数选项的uname命令,就可以输出系统信息,或使用uname -s命令输出系统的内核名称。

tecmint@tecmint ~ $ uname  linux

要查看网络主机名,用“-n”参数选项的uname命令,如下所示。

tecmint@tecmint ~ $ uname -n  tecmint.com

要获取有关内核版本的信息,使用“-v”参数选项。

tecmint@tecmint ~ $ uname -v  #64-ubuntu smp mon sep 22 21:28:38 utc 2014

要得到有关你的内核的发行版信息,请使用“-r”参数选项。

tecmint@tecmint ~ $ uname -r  3.13.0-37-generic

要输出你的机器的硬件名,使用“-m”参数选项:

tecmint@tecmint ~ $ uname -m  x86_64

所有这些信息可以通过运行“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的系统硬件信息

你可以使用lshw工具来收集有关硬件部件,如cpu,硬盘,内存,usb控制器等的大量信息。

lshw是一个相对比较小巧的工具,当你提取信息的时候,只有为数不多的几个选项可供你使用。由lshw提供的信息收集形成了不同的/ proc文件。

注:请记住,lshw命令是由superuser (root)或sudo用户执行的。

参见:《difference between su and sudo user in linux》

要输出你的linux系统的硬件信息,运行此命令。

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 ......

你可以通过使用-short选项来输出汇总的硬件信息。

tecmint@tecmint ~ $ sudo lshw -short  h/w path       device      class          description =====================================================                            system         20354 (lenovo_mt_20354_bu_idea_fm_lenovo z50-70) /0                         bus            lancer 5a5 /0/0                       memory         128kib bios /0/4                       processor      intel(r) core(tm) i5-4210u cpu @ 1.70ghz /0/4/b                     memory         32kib l1 cache /0/4/c                     memory         256kib l2 cache /0/4/d                     memory         3mib l3 cache /0/a                       memory         32kib l1 cache /0/12                      memory         8gib system memory /0/12/0                    memory         dimm [empty] /0/12/1                    memory         dimm [empty] /0/12/2                    memory         8gib sodimm ddr3 synchronous 1600 mhz (0.6 ns) /0/12/3                    memory         dimm [empty] /0/100                     bridge         haswell-ult dram controller /0/100/2                   display        haswell-ult integrated graphics controller /0/100/3                   multimedia     haswell-ult hd audio controller ...

如果你想生成输出为html文件,可以使用选项-html。

tecmint@tecmint ~ $ sudo lshw -html > lshw.html

3.如何查看linux的cpu信息

要查看关于cpu的信息,就使用lscpu命令,因为它能从sysfs和/ proc / cpuinfo中显示cpu体系结构的信息,例如cpu数字,核心,cpu系列型号,cpu高速缓存,线程等。

tecmint@tecmint ~ $ lscpu  architecture:          x86_64 cpu op-mode(s):        32-bit, 64-bit byte order:            little endian cpu(s):                4 on-line cpu(s) list:   0-3 thread(s) per core:    2 core(s) per socket:    2 socket(s):             1 numa node(s):          1 vendor id:             genuineintel cpu family:            6 model:                 69 stepping:              1 cpu mhz:               768.000 bogomips:              4788.72 virtualization:        vt-x l1d cache:             32k l1i cache:             32k l2 cache:              256k l3 cache:              3072k numa node0 cpu(s):     0-3

4.如何收集linux块设备信息

块设备是诸如硬盘,闪存驱动器等的存储设备。lsblk命令可用于报告有关块设备的信息,如下所示。

tecmint@tecmint ~ $ lsblk  name    maj:min rm   size ro type mountpoint sda       8:0    0 931.5g  0 disk  ├─sda1    8:1    0  1000m  0 part  ├─sda2    8:2    0   260m  0 part /boot/efi ├─sda3    8:3    0  1000m  0 part  ├─sda4    8:4    0   128m  0 part  ├─sda5    8:5    0 557.1g  0 part  ├─sda6    8:6    0    25g  0 part  ├─sda7    8:7    0  14.7g  0 part  ├─sda8    8:8    0     1m  0 part  ├─sda9    8:9    0 324.5g  0 part / └─sda10   8:10   0   7.9g  0 part [swap] sr0      11:0    1  1024m  0 rom

如果你想查看系统上所有的块设备,那么就加一个-a选项。

tecmint@tecmint ~ $ lsblk -a  name    maj:min rm   size ro type mountpoint sda       8:0    0 931.5g  0 disk  ├─sda1    8:1    0  1000m  0 part  ├─sda2    8:2    0   260m  0 part /boot/efi ├─sda3    8:3    0  1000m  0 part  ├─sda4    8:4    0   128m  0 part  ├─sda5    8:5    0 557.1g  0 part  ├─sda6    8:6    0    25g  0 part  ├─sda7    8:7    0  14.7g  0 part  ├─sda8    8:8    0     1m  0 part  ├─sda9    8:9    0 324.5g  0 part / └─sda10   8:10   0   7.9g  0 part [swap] sdb       8:16   1         0 disk  sr0      11:0    1  1024m  0 rom   ram0      1:0    0    64m  0 disk  ram1      1:1    0    64m  0 disk  ram2      1:2    0    64m  0 disk  ram3      1:3    0    64m  0 disk  ram4      1:4    0    64m  0 disk  ram5      1:5    0    64m  0 disk  ram6      1:6    0    64m  0 disk  ram7      1:7    0    64m  0 disk  ram8      1:8    0    64m  0 disk  ram9      1:9    0    64m  0 disk  loop0     7:0    0         0 loop  loop1     7:1    0         0 loop  loop2     7:2    0         0 loop  loop3     7:3    0         0 loop  loop4     7:4    0         0 loop  loop5     7:5    0         0 loop  loop6     7:6    0         0 loop  loop7     7:7    0         0 loop  ram10     1:10   0    64m  0 disk  ram11     1:11   0    64m  0 disk  ram12     1:12   0    64m  0 disk  ram13     1:13   0    64m  0 disk  ram14     1:14   0    64m  0 disk  ram15     1:15   0    64m  0 disk

5.如何输出usb控制器的信息

lsusb命令可用于报告关于usb控制器和所有连接到它们的设备的信息。

tecmint@tecmint ~ $ lsusb  bus 001 device 002: id 8087:8000 intel corp.  bus 001 device 001: id 1d6b:0002 linux foundation 2.0 root hub bus 003 device 001: id 1d6b:0003 linux foundation 3.0 root hub bus 002 device 005: id 0bda:b728 realtek semiconductor corp.  bus 002 device 004: id 5986:0249 acer, inc  bus 002 device 003: id 0bda:0129 realtek semiconductor corp. rts5129 card reader controller bus 002 device 002: id 045e:00cb microsoft corp. basic optical mouse v2.0 bus 002 device 001: id 1d6b:0002 linux foundation 2.0 root hub

你可以使用-v选项生成有关于每个usb设备的详细信息。

tecmint@tecmint ~ $ lsusb -v

6.如何输出pci设备信息

pci设备可能包括usb接口,显卡,网卡等。lspci工具能用来生成系统上所有pci控制器以及连接到它们的设备的信息。

要输出有关pci设备的信息,可运行以下命令。

tecmint@tecmint ~ $ lspci  00:00.0 host bridge: intel corporation haswell-ult dram controller (rev 0b) 00:02.0 vga compatible controller: intel corporation haswell-ult integrated graphics controller (rev 0b) 00:03.0 audio device: intel corporation haswell-ult hd audio controller (rev 0b) 00:14.0 usb controller: intel corporation lynx point-lp usb xhci hc (rev 04) 00:16.0 communication controller: intel corporation lynx point-lp heci #0 (rev 04) 00:1b.0 audio device: intel corporation lynx point-lp hd audio controller (rev 04) 00:1c.0 pci bridge: intel corporation lynx point-lp pci express root port 3 (rev e4) 00:1c.3 pci bridge: intel corporation lynx point-lp pci express root port 4 (rev e4) 00:1c.4 pci bridge: intel corporation lynx point-lp pci express root port 5 (rev e4) 00:1d.0 usb controller: intel corporation lynx point-lp usb ehci #1 (rev 04) 00:1f.0 isa bridge: intel corporation lynx point-lp lpc controller (rev 04) 00:1f.2 sata controller: intel corporation lynx point-lp sata controller 1 [ahci mode] (rev 04) 00:1f.3 smbus: intel corporation lynx point-lp smbus controller (rev 04) 01:00.0 ethernet controller: realtek semiconductor co., ltd. rtl8111/8168/8411 pci express gigabit ethernet controller (rev 10) 02:00.0 network controller: realtek semiconductor co., ltd. rtl8723be pcie wireless network adapter 03:00.0 3d controller: nvidia corporation gm108m [geforce 840m] (rev a2)

使用-t选项将以树的形式生成输出。

tecmint@tecmint ~ $ lspci -t  -[0000:00]- -00.0             -02.0             -03.0             -14.0             -16.0             -1b.0             -1c.0-[01]----00.0             -1c.3-[02]----00.0             -1c.4-[03]----00.0             -1d.0             -1f.0             -1f.2            \-1f.3

使用-v选项生成有关每个连接的设备的详细信息。

tecmint@tecmint ~ $ lspci -v  00:00.0 host bridge: intel corporation haswell-ult dram controller (rev 0b) 	subsystem: lenovo device 3978 	flags: bus master, fast devsel, latency 0 	capabilities:   00:02.0 vga compatible controller: intel corporation haswell-ult integrated graphics controller (rev 0b) (prog-if 00 [vga controller]) 	subsystem: lenovo device 380d 	flags: bus master, fast devsel, latency 0, irq 62 	memory at c3000000 (64-bit, non-prefetchable) [size=4m] 	memory at d0000000 (64-bit, prefetchable) [size=256m] 	i/o ports at 6000 [size=64] 	expansion rom at  [disabled] 	capabilities:  	kernel driver in use: i915 .....

7.如何输出scsi设备的信息

要查看所有的scsi / sata设备,可使用lsscsi命令,如下所示。如果你没有安装lsscsi工具,那么运行下面的命令来安装它。

$ sudo apt-get install lsscsi        [on debian derivatives] # yum install lsscsi                 [on redhat based systems] # dnf install lsscsi                 [on fedora 21  onwards]

安装后,运行lsscsi命令,如下所示:

tecmint@tecmint ~ $ lsscsi  [0:0:0:0]    disk    ata      st1000lm024 hn-m 2ba3  /dev/sda  [1:0:0:0]    cd/dvd  plds     dvd-rw da8a5sh   rl61  /dev/sr0  [4:0:0:0]    disk    generic- xd/sd/m.s.       1.00  /dev/sdb

使用-s选项来显示设备尺寸。

tecmint@tecmint ~ $ lsscsi -s  [0:0:0:0]    disk    ata      st1000lm024 hn-m 2ba3  /dev/sda   1.00tb [1:0:0:0]    cd/dvd  plds     dvd-rw da8a5sh   rl61  /dev/sr0        - [4:0:0:0]    disk    generic- xd/sd/m.s.       1.00  /dev/sdb        -

8.如何打印有关sata设备的信息

你可以使用hdparm实用工具在系统上找到有关sata设备的一些信息,如下所示。在下面的例子中,我使用了块设备/ dev / sda1。

tecmint@tecmint ~ $ sudo hdparm /dev/sda1  /dev/sda1:  multcount     =  0 (off)  io_support    =  1 (32-bit)  readonly      =  0 (off)  readahead     = 256 (on)  geometry      = 56065/255/63, sectors = 2048000, start = 2048

要输出设备有关柱面、磁头、扇区、大小和起始偏移量的几何信息,使用-g选项。

tecmint@tecmint ~ $ sudo hdparm -g /dev/sda1  /dev/sda1:  geometry      = 56065/255/63, sectors = 2048000, start = 2048

9.如何输出linux文件系统信息

为了收集有关文件系统分区的信息,你可以使用fdisk命令。虽然fdisk命令的主要功能是修改文件系统分区,但我们也可以用它来查看文件系统上不同分区的信息。

你可以按如下方法输出分区信息。记住要用超级用户的身份运行命令,否则你可能看不到任何输出。

tecmint@tecmint ~ $ sudo fdisk -l  warning: gpt (guid partition table) detected on '/dev/sda'! the util fdisk doesn't support gpt. use gnu parted.  disk /dev/sda: 1000.2 gb, 1000204886016 bytes 255 heads, 63 sectors/track, 121601 cylinders, total 1953525168 sectors units = sectors of 1 * 512 = 512 bytes sector size (logical/physical): 512 bytes / 4096 bytes i/o size (minimum/optimal): 4096 bytes / 4096 bytes disk identifier: 0xcee8ad92     device boot      start         end      blocks   id  system /dev/sda1               1  1953525167   976762583   ee  gpt partition 1 does not start on physical sector boundary.

10.如何提取有关硬件组件的信息

你也可以使用dmidecode实用程序通过读取dmi表中的数据提取硬件信息。

输出有关内存的信息,作为超级用户运行此命令。

tecmint@tecmint ~ $ sudo dmidecode -t memory  # dmidecode 2.12 # smbios entry point at 0xaaebef98 smbios 2.7 present.  handle 0x0005, dmi type 5, 24 bytes memory controller information 	error detecting method: none 	error correcting capabilities: 		none 	supported interleave: one-way interleave 	current interleave: one-way interleave 	maximum memory module size: 8192 mb 	maximum total memory size: 32768 mb 	supported speeds: 		other 	supported memory types: 		other 	memory module voltage: unknown 	associated memory slots: 4 		0x0006 		0x0007 		0x0008 		0x0009 	enabled error correcting capabilities: 		none ...

要输出有关系统的信息,运行此命令。

tecmint@tecmint ~ $ sudo dmidecode -t system  # dmidecode 2.12 # smbios entry point at 0xaaebef98 smbios 2.7 present.  handle 0x0001, dmi type 1, 27 bytes system information 	manufacturer: lenovo 	product name: 20354 	version: lenovo z50-70 	serial number: 1037407803441 	uuid: 29d2b1e4-37d2-11e4-9f6e-28d244ebbd98 	wake-up type: power switch 	sku number: lenovo_mt_20354_bu_idea_fm_lenovo z50-70 	family: ideapad ...

要输出有关bios的信息,运行此命令。

tecmint@tecmint ~ $ sudo dmidecode -t bios  # dmidecode 2.12 # smbios entry point at 0xaaebef98 smbios 2.7 present.  handle 0x0000, dmi type 0, 24 bytes bios information 	vendor: lenovo 	version: 9bcn26ww 	release date: 07/31/2014 	address: 0xe0000 	runtime size: 128 kb 	rom size: 4096 kb 	characteristics: 		pci is supported 		bios is upgradeable 		bios shadowing is allowed 		boot from cd is supported 		selectable boot is supported 		edd is supported 		japanese floppy for nec 9800 1.2 mb is supported (int 13h) 		japanese floppy for toshiba 1.2 mb is supported (int 13h) 		5.25"/360 kb floppy services are supported (int 13h) 		5.25"/1.2 mb floppy services are supported (int 13h) 		3.5"/720 kb floppy services are supported (int 13h) 		3.5"/2.88 mb floppy services are supported (int 13h) 		8042 keyboard services are supported (int 9h) 		cga/mono video services are supported (int 10h) 		acpi is supported 		usb legacy is supported 		bios boot specification is supported 		targeted content distribution is supported 		uefi is supported 	bios revision: 0.26 	firmware revision: 0.26 ...

要输出关于处理器的信息,运行此命令。

tecmint@tecmint ~ $ sudo dmidecode -t processor  # dmidecode 2.12 # smbios entry point at 0xaaebef98 smbios 2.7 present.  handle 0x0004, dmi type 4, 42 bytes processor information 	socket designation: u3e1 	type: central processor 	family: core i5 	manufacturer: intel(r) corporation 	id: 51 06 04 00 ff fb eb bf 	signature: type 0, family 6, model 69, stepping 1 	flags: ...

总结

还有很多其他的方法能让你用来获取有关系统硬件组件的信息。这些命令中的大多数使用/ proc目录下的文件来提取系统信息。

希望这些方法和技巧能对你有用,如果你有任何其他看法的话,欢迎留言评论。

译文链接:http://www.codeceo.com/article/10-linux-command-collect-info.html
英文原文:10 useful commands to collect system and hardware information in linux
翻译作者:码农网 – 小峰
转载必须在正文中标注并保留原文链接、译文链接和译者等信息。]

展开全文
内容来源于互联网和用户投稿,文章中一旦含有亚博电竞手机版的联系方式务必识别真假,本站仅做信息展示不承担任何相关责任,如有侵权或涉及法律问题请联系亚博电竞手机版删除

最新文章

知识分享
说到硬派越野,想必大家都非常熟悉了,尤其是近几年更是异常的火爆,市场前景也是非常的广阔。近...…
知识分享
当前里程:6998公里当前油耗:7.00l/100km油耗:三保过了一段时间了,也是在4s...…
知识分享
说到德系车,我们往往能想到的就是大众,大众汽车的燃油经济性不错,新车的故障率也比较低,而且...…
知识分享
据了解,这辆本田思域是2013款的,具体车型为十周年纪念1.8l自动豪华版。首次上牌是在2...…
网站地图