0

我需要一个可以为我返回 sg 设备大小的 shell 命令。我在互联网上搜索了将近两个小时,但没有任何成功。

我可以通过编写程序来做到这一点,但必须有一种方法可以通过命令来实现它!我根本找不到!

不幸的是,在我工作的戴尔服务器上,sg_inq 和 sginfo 返回的是戴尔的 PERC 信息,而不是我尝试获取信息的设备。

我尝试使用 smartctl,但它返回有关设备(SSD)的静态(而不是真实)信息,因为它返回的字节数除以 512 显示我可以访问的扇区数更大(原文如此!)

任何 [shell 命令] 提示将不胜感激!

4

2 回答 2

1

我在这里为任何寻找它的人提供答案。

编写自己的程序或使用 smartctl ( http://sourceforge.net/projects/smartmontools/files/smartmontools/6.0/ ) 并调用以下命令的最终方法:

#>./smartctl -a /dev/sdc
smartctl 6.0 2012-10-10 r3643 [x86_64-linux-2.6.18-274.18.1.el5] (local build)
Copyright (C) 2002-12, Bruce Allen, Christian Franke, www.smartmontools.org

Vendor:               DELL
Product:              PERC H710P
Revision:             3.13
User Capacity:        179,443,728,384 bytes [179 GB]
Logical block size:   512 bytes
Logical Unit id:      --------------------------------
Serial number:        --------------------------------
Device type:          disk
Local Time is:        Tue Sep 24 17:54:13 2013 EDT
Device does not support SMART

Error Counter logging not supported
Device does not support Self Test logging
于 2013-09-24T21:57:10.123 回答
0

利用#fdisk -l /dev/sg2

或者# parted -l /dev/sg2

于 2012-10-16T15:55:23.680 回答