如何找出Ubuntu服务器中安装了哪些磁盘驱动器


11

我可以远程访问Ubuntu 9服务器(包括root用户访问权限),但是无法对其进行物理检查或重新启动。

我想找出服务器中安装的硬盘的制造商和型号以及它们的连接方式(SATA / IDE,哪个版本)。有命令行的方法吗?(如有必要,我可以安装其他软件)

Answers:


17

如果您fdisk -l以root用户身份进行操作,则应列出驱动器和分区,如下所示:

Disk /dev/sda: 8589 MB, 8589934592 bytes
255 heads, 63 sectors/track, 1044 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00044ff8

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1         994     7977984   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2             994        1045      407553    5  Extended
/dev/sda5             994        1045      407552   82  Linux swap / Solaris

/ dev / sda是​​驱动器,每个数字都是一个分区。

因此,如果看到hda或sda或sdb ...这就是您在smartctl命令中使用的内容。

你可以用 sudo apt-get install smartmontools

既然我是sda ...

sudo smartctl -i /dev/sda

=== START OF INFORMATION SECTION ===
Device Model:     VBOX HARDDISK
Serial Number:    VB3fd813ad-aa9ce411
Firmware Version: 1.0
User Capacity:    8,589,934,592 bytes
Device is:        Not in smartctl database [for details use: -P showall]
ATA Version is:   6
ATA Standard is:  ATA/ATAPI-6 published, ANSI INCITS 361-2002
Local Time is:    Mon Jun 28 22:16:37 2010 PDT
SMART support is: Unavailable - device lacks SMART capability.
A mandatory SMART command failed: exiting. To continue, add one or more '-T permissive' options.

非常有用.. thx
AO_

3

我要做的方法是...

smartctl -i /dev/sda

它将转储SMART设备信息。这应该为您提供驱动器的型号,甚至序列号。


0

为了列出您的机器制造的硬件,lshw是您的朋友。引用Debian软件包描述:

lshw是提取有关机器硬件配置的详细信息的小工具。它可以报告具有DMI功能的x86或IA-64系统以及某些PowerPC机器上确切的内存配置,固件版本,主板配置,CPU版本和速度,缓存配置,总线速度等(已知PowerMac G4可以工作)。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.