在Linux系统中,有许多命令可用于查询主机的硬件信息。一些命令只针对特定的硬件组件,比如CPU、内存,一些命令可以查询多个硬件信息。
这篇文章只是简单的让每个人了解查询硬件信息的基本命令使用,包括lscpu、hwinfo、lshw、lspci、lsblk、lsusb等等。
1. lscpu用于查询CPU信息
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[root@devops ~]# lscpu
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 1
On-line CPU(s) list: 0
Thread(s) per core: 1
Core(s) per socket: 1
CPU socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 45
Stepping: 7
CPU MHz: 2194.842
BogoMIPS: 4389.68
Hypervisor vendor: Xen
Virtualization type: full
L1d cache: 32K
L1i cache: 32K
L2 cache: 256K
L3 cache: 15360K
NUMA node0 CPU(s): 0
|
2. lshw显示硬件信息表
这个命令应用普遍,它可通过个人需求而列出多种不同的硬件参数:CPU、内存、硬盘、USB控制器、lshw卡片等等,本质上就是从/proc目录不同文件中中提取对应的硬件信息。
按照下面的步骤去安装lshw工具,然后就可以使用了。
1
2
3
4
|
wget http://ezix.org/software/files/lshw-B.02.14.tar.gz
tar -zxvf lshw-B.02.14.tar.gz
cd lshw-B.02.14
make && make install
|
示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
[root@devops lshw-B.02.14]# lshw -short
H/W path Device Class Description
=====================================================
system HVM domU
/0 bus Motherboard
/0/0 memory 96KiB BIOS
/0/1 processor Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
/0/2 memory System Memory
/0/2/0 memory 512MiB DIMM RAM
/0/2/1 memory 512MiB DIMM RAM
/0/3 memory 96KiB BIOS
/0/4 processor CPU
/0/5 memory System Memory
/0/6 memory
/0/7 memory
/0/100 bridge 440FX - 82441FX PMC [Natoma]
/0/100/1 bridge 82371SB PIIX3 ISA [Natoma/Triton II]
/0/100/1.1 scsi1 storage 82371SB PIIX3 IDE [Natoma/Triton II]
/0/100/1.1/0.0.0 /dev/cdrom1 disk SCSI CD-ROM
/0/100/1.2 bus 82371SB PIIX3 USB [Natoma/Triton II]
/0/100/1.2/1 usb1 bus UHCI Host Controller
/0/100/1.2/1/2 input QEMU USB Tablet
/0/100/1.3 bridge 82371AB/EB/MB PIIX4 ACPI
/0/100/2 display GD 5446
/0/100/3 generic Xen Platform Device
/1 eth0 network Ethernet interface
/2 eth1 network Ethernet interface
[root@devops lshw-B.02.14]#
|
3. hwinfo-硬件信息
hwinfo类似于lshw,也能查询硬件信息,且应用广泛。它也能输出多个硬件部分的详细或者简要信息,但是不同的是有时hwinfo比lshw的信息更详细。
默认情况下,Linux系统没有安装hwinfo工具,所以你需要按照以下步骤自己安装:
CentOS 6
1
2
3
|
#rpm -Uvh http://mirror.symnds.com/distributions/gf/el/6/gf/x86_64/gf-release-6-6.gf.el6.noarch.rpm
#yum list hwinfo
#yum install hwinfo
|
CentOS 5
1
2
3
|
#rpm -Uvh http://mirror.symnds.com/distributions/gf/el/5/gf/x86_64/gf-release-5-6.gf.el5.noarch.rpm
#yum list hwinfo
#yum install hwinfo
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
[root@devops tmp]# rpm -Uvh http://mirror.symnds.com/distributions/gf/el/6/gf/x86_64/gf-release-6-6.gf.el6.noarch.rpm
Retrieving http://mirror.symnds.com/distributions/gf/el/6/gf/x86_64/gf-release-6-6.gf.el6.noarch.rpm
warning: /var/tmp/rpm-tmp.m2mMAO: Header V4 RSA/SHA1 Signature, key ID 13a4d2a9: NOKEY
Preparing... ########################################### [100%]
1:gf-release ########################################### [100%]
[root@devops tmp]# yum list hwinfo
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirrors.aliyun.com
* extras: mirrors.aliyun.com
* updates: mirrors.aliyun.com
gf
00:00
gf/primary_db
00:00
Available Packages
hwinfo.x86_64
[root@devops tmp]# yum list hwinfo
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirrors.aliyun.com
* extras: mirrors.aliyun.com
* updates: mirrors.aliyun.com
gf
00:00
gf/primary_db
00:00
Available Packages
hwinfo.x86_64 20.2-1.gf.el6
|
1
2
3
4
5
6
7
8
9
10
11
|
[root@devops tmp]# yum install hwinfo
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirrors.aliyun.com
* extras: mirrors.aliyun.com
* updates: mirrors.aliyun.com
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package hwinfo.x86_64 0:20.2-1.gf.el6 will be installed
.....
|
示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
[root@devops tmp]# hwinfo -short
oops: don't know what to do with "short"
[root@devops tmp]# hwinfo --short
cpu:
Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz, 2194 MHz
keyboard:
/dev/input/event3 AT Translated Set 2 keyboard
/dev/ttyS0 serial console
mouse:
/dev/input/mice Adomax QEMU USB Tablet
/dev/input/mice Macintosh mouse button emulation
/dev/input/mice ImExPS/2 Generic Explorer Mouse
graphics card:
Cirrus Logic GD 5446
storage:
Intel 82371SB PIIX3 IDE [Natoma/Triton II]
Xen Virtual Storage 0
Xen Virtual Storage 1
Xen Virtual Storage 2
network:
eth0 Xen Virtual Ethernet Card 0
eth1 Xen Virtual Ethernet Card 1
network interface:
lo Loopback network interface
eth0 Ethernet network interface
eth1 Ethernet network interface
disk:
/dev/xvda Disk
/dev/xvdb Disk
partition:
/dev/xvda1 Partition
/dev/xvdb1 Partition
cdrom:
/dev/sr0 QEMU DVD-ROM
usb controller:
Qumranet Qemu virtual machine
bios:
BIOS
bridge:
Qumranet Qemu virtual machine
Qumranet Qemu virtual machine
Qumranet Qemu virtual machine
hub:
Linux 2.6.32-279.el6.x86_64 uhci_hcd UHCI Host Controller
memory:
Main Memory
unknown:
FPU
DMA controller
PIC
Timer
Keyboard controller
XenSource Xen Platform Device
[root@devops tmp]#
|
4. lspci
lsppci命令可列出PCI总线的信息以及连接到PCI总线上的设备信息,比如VGA适配器、SATA控制器、其他模块等等。lspci工具是pciutils包的一部分,所以在安装lspci之前,你需要安装pciutils包。
安装pciutils包使用下面的命令:
1
|
#yum install pciutils
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
[root@devops tmp]# yum install pciutils
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirrors.aliyun.com
* extras: mirrors.aliyun.com
* updates: mirrors.aliyun.com
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package pciutils.x86_64 0:3.1.10-2.el6 will be installed
--> Processing Dependency: pciutils-libs = 3.1.10-2.el6 for package: pciutils-3.1.10-2.el6.x86_64
--> Running transaction check
---> Package pciutils-libs.x86_64 0:3.1.4-11.el6 will be updated
---> Package pciutils-libs.x86_64 0:3.1.10-2.el6 will be an update
--> Finished Dependency Resolution
Dependencies Resolved
Installing:
pciutils x86_64 3.1.10-2.el6
85 k
Updating for dependencies:
pciutils-libs x86_64 3.1.10-2.el6
34 k
.....
Dependency Updated:
pciutils-libs.x86_64 0:3.1.10-2.el6
Complete!
|
示例:
1
2
3
4
5
6
7
8
9
|
[root@devops tmp]# lspci
00:00.0 Host bridge: Intel Corporation 440FX - 82441FX PMC [Natoma] (rev 02)
00:01.0 ISA bridge: Intel Corporation 82371SB PIIX3 ISA [Natoma/Triton II]
00:01.1 IDE interface: Intel Corporation 82371SB PIIX3 IDE [Natoma/Triton II]
00:01.2 USB controller: Intel Corporation 82371SB PIIX3 USB [Natoma/Triton II] (rev 01)
00:01.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 01)
00:02.0 VGA compatible controller: Cirrus Logic GD 5446
00:03.0 Unassigned class [ff80]: XenSource, Inc. Xen Platform Device (rev 01)
[root@devops tmp]#
|
5. lsusb-列出USB总线信息
这个命令可列出USB控制器的设备信息。
lsusb工具是usbutils包的一部分,所以你需要按照如下命令安装:
1
|
#yum install usbutils
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
[root@devops tmp]# yum install usbutils
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirrors.aliyun.com
* extras: mirrors.aliyun.com
* updates: mirrors.aliyun.com
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package usbutils.x86_64 0:003-4.el6 will be installed
--> Processing Dependency: libusb-1.0.so.0()(64bit) for package: usbutils-003-4.el6.x86_64
--> Running transaction check
---> Package libusb1.x86_64 0:1.0.9-0.6.rc1.el6 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
============================================
============
Package Arch Version
Size
=======================================================
============
Installing:
usbutils x86_64 003-4.el6
71 k
Installing for dependencies:
libusb1 x86_64 1.0.9-0.6.rc1.el6
80 k
Transaction Summary
================================================================
============
Install 2 Package(s)
Total download size: 152 k
Installed size: 377 k
Is this ok [y/N]: y
Downloading Packages:
(1/2): libusb1-1.0.9-0.6.rc1.el6.x86_64.rpm
00:00
(2/2): usbutils-003-4.el6.x86_64.rpm
00:00
--------------------------------------------------------
------------
Total
00:00
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : libusb1-1.0.9-0.6.rc1.el6.x86_64
1/2
Installing : usbutils-003-4.el6.x86_64
2/2
Verifying : usbutils-003-4.el6.x86_64
1/2
Verifying : libusb1-1.0.9-0.6.rc1.el6.x86_64
2/2
Installed:
usbutils.x86_64 0:003-4.el6
Dependency Installed:
libusb1.x86_64 0:1.0.9-0.6.rc1.el6
Complete!
|
示例:
1
2
3
4
|
[root@devops tmp]# lsusb
Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 002: ID 0627:0001 Adomax Technology Co., Ltd
[root@devops tmp]#
|
6. lsblk-列出块设备的信息
1
2
3
4
5
6
7
|
[root@devops tmp]# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
xvda 202:0 0 20G 0 disk
└─xvda1 202:1 0 20G 0 part /
xvdb 202:16 0 10G 0 disk
└─xvdb1 202:17 0 10G 0 part /alidata
sr0 11:0 1 362K 0 rom
|
7. lsscsi-列出SCSI的设备信息
列出SCSI/SDAT设备的信息,比如硬盘驱动器、光盘驱动器。
1
2
3
|
[root@devops tmp]# lsscsi
[1:0:0:0] cd/dvd QEMU QEMU DVD-ROM 0.10 /dev/sr0
[root@devops tmp]#
|
完毕!Enjoy this!
本文转自:开源中国社区
相关推荐
本资源"Linux命令大全"包含了516个Linux命令的详细资料,对于学习和理解Linux操作系统至关重要。下面,我们将深入探讨这个资源中涉及的一些关键知识点。 1. **命令手册**: - 在Linux世界中,命令手册(man pages...
在Linux操作系统中,HP(Hewlett Packard)服务器提供了特定的工具和命令来管理和维护系统。本篇文章将深入探讨HP Linux系统中的常用命令,帮助用户更好地理解和操作慧普(HP)Linux环境。 1. **ls**:列出目录内容...
这个脚本可以在Debian和CentOS这两种广泛使用的Linux发行版上运行,显示系统的关键信息,便于分析和问题排查。 首先,让我们了解一下脚本可能包含的内容。在应急响应中,通常会收集以下几类信息: 1. **系统信息**...
无需做免密,通过expect利用ssh批量获取linux服务器厂商/cpu/内存/磁盘/网卡等信息 1、设置数组变量,并指定服务器ip列表 #需要检查的服务器列表 IP@@ssh端口@@用户名@@密码 serverInfo=( 192.168.195.129@@22@@...
《戴尔服务器硬件信息插件MegaCLI:在Windows与Linux环境下的应用详解》 戴尔服务器硬件信息插件MegaCLI,全称 MegaRAID Storage Manager CLI (Command Line Interface),是一款由LSI公司(现已被Avago ...
这份报告通常包括多个方面,如硬件检查、操作系统状态、性能监控、安全评估和网络状况等。 首先,【系统概要信息】部分会列出服务器的基本配置,包括设备型号、CPU类型、内存大小、硬盘容量、主机名、IP地址以及...
"Linux服务器巡检报告" ...本文档对 Linux 服务器的巡检报告,涵盖了硬件配置、系统信息、性能检查、安全检查和网络管理命令检查等方面的内容。管理员可以通过这些信息来判断服务器的状况,进行相应的维护和优化。
### Linux基本常用命令知识点 #### 一、Linux操作系统概述 - **定义与起源**:Linux是一种自由和开放源码的类Unix操作系统。...以上知识点涵盖了Linux基础命令和操作的核心内容,对于初学者来说是非常有用的指南。
这个文件记录了系统启动过程中的事件,包括内核加载信息、硬件检测结果等。通过检查这个文件,你可以识别启动过程中可能遇到的问题,比如驱动程序加载失败或配置错误。 2. **/var/log/cron** `cron` 是Linux中的...
4. **日志记录**:adb可以收集设备的日志信息,帮助开发者分析运行时的问题和错误。 5. **安装应用**:通过adb可以方便地在设备上安装APK文件,无需通过Google Play或其他第三方市场。 **adb 1.0.41 在Linux上的...
在Linux环境下,有许多命令和工具可用于监控和优化系统的性能,包括vmstat、sar、iostat、uptime、free、watch、top、gtop、dmesg、pmap和strace等。这些工具能够帮助管理员识别和解决各种性能问题,如CPU、内存、...
- Red Hat Linux安装示例:收集硬件信息,备份重要文件,为Linux准备至少5GB的分区,使用安装光盘启动,选择安装模式,检查光盘完整性,然后进入图形化安装界面。 - 图形化安装界面提供多语言选择,安装过程中可...
Linux 光盘安装 准备工作: 下载安装光盘 收集计算机硬件信息 规划硬盘空间及网络配置 硬件需求: CPU:X86系列 Pentium以上 Memory: 文本模式:>=192M 图形模式:>=256M 硬盘:>=2G 安装步骤: CMOS设置:光盘启动...
1. **安装Linux**:在此过程中,首先要收集电脑硬件信息,如硬盘大小、接口,显卡型号和显存,显示器参数,以及网卡型号、I/O端口和中断等。如果已有Windows系统,可在控制面板中获取这些信息。安装前需备份重要数据...
7. 用户管理命令和网络管理命令:如`netconf`、`ping`、`route -n`、`traceroute`、`ifconfig`等。 以上是对提供的Linux服务器巡检指导文档内容的详细解析,针对Linux服务器的巡检工作不仅需要掌握一定的技术知识,...
以上是关于常用Linux命令的一些详细介绍,这些命令涵盖了系统管理、网络管理、文件管理等多个方面,对于日常的Linux系统管理和开发工作都非常重要。通过熟练掌握这些命令,可以大大提高工作效率和系统的稳定性。
Linux命令全集是每个Linux用户或系统管理员必备的参考资料,它涵盖了Linux操作系统的各种命令行工具,这些工具在日常管理、文件操作、网络通信、进程控制等任务中扮演着核心角色。Linux以其开源、自由和强大的命令行...
本电子书籍汇集了超过570个Linux命令,旨在提供一个全面且实用的Linux命令查询平台。该资源库是一个非营利性质的项目,它不仅整理了常见的Linux命令手册、详解以及学习资料,还构建了一个易于使用的Web网站供用户...
EndNote是一款参考管理系统,它允许用户从各种来源(比如参考文献数据库)收集和组织参考文献数据,确保参考文献信息的准确性。该系统还帮助用户创建格式化的参考文献,包括来自主要风格手册和许多学术期刊使用的...
例如,在工控项目中,Linux设备作为主站,通过RS485通信收集多个从站设备的数据,然后进行集中管理和控制。 9. **安全与性能优化** 为了保证通信的稳定性和安全性,需要考虑数据校验、错误重传、冲突避免等机制。...