lscpu
コマンドを使用してCPU情報を取得できますが、Linux端末で同様の方法でハードディスク情報を取得するコマンドはありますか?
パーティショニング情報を探している場合は、fdisk
またはparted
を使用できます。
さまざまなパーティションがマウントポイントにどのように関連付けられているかにもっと興味がある場合は、lsblk
を試してください。
lsblk -o "NAME,MAJ:MIN,RM,SIZE,RO,FSTYPE,MOUNTPOINT,UUID"
UUID
情報を含めます。
そして最後に smartctl -a /dev/yourdrive
は、次のような詳細情報を提供します。
=== START OF INFORMATION SECTION ===
Device Model: WDC WD40EFRX-68WT0N0
Serial Number: WD-WCC4E4LA4965
LU WWN Device Id: 5 0014ee 261ca5a3f
Firmware Version: 82.00A82
User Capacity: 4,000,787,030,016 bytes [4.00 TB]
Sector Sizes: 512 bytes logical, 4096 bytes physical
Rotation Rate: 5400 rpm
Device is: Not in smartctl database [for details use: -P showall]
ATA Version is: ACS-2 (minor revision not indicated)
SATA Version is: SATA 3.0, 6.0 Gb/s (current: 6.0 Gb/s)
Local Time is: Sun Apr 3 10:59:55 2016 CEST
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
もっと。
これらのコマンドの一部は、すべての情報を取得するためにSudoを実行する必要があります。
lshw
を使用できます:
Sudo lshw -c disk
しかし、新しいカーネルの場合、sysfs
から読み取るポータブルで安定した方法をお勧めします。
/sys/block/sd*/device/*
すでに提案されているものに加えて、もう1つ試すことができるものは次のとおりです。
hdparm -I /dev/sda
manpage から:
DESCRIPTION
hdparm provides a command line interface to various kernel interfaces
supported by the Linux SATA/PATA/SAS "libata" subsystem and the older
IDE driver subsystem. Many newer (2008 and later) USB drive
enclosures now also support "SAT" (SCSI-ATA Command Translation) and
therefore may also work with hdparm. E.g. recent WD "Passport"
models and recent NexStar-3 enclosures. Some options may work
correctly only with the latest kernels.
次のコマンドを使用できます。
lshw -class disk -class storage