GNU/Linux >> Linux の 問題 >  >> Linux

df デバイス名から物理ドライブ名まで (ベンダー/タイプ)

sudo lshw -class disk
  *-cdrom                 
       description: DVD-RAM writer
       product: CDDVDW SH-S223Q
       vendor: TSSTcorp
       physical id: 0
       bus info: [email protected]:0.0.0
       logical name: /dev/cdrom
       logical name: /dev/cdrw
       logical name: /dev/dvd
       logical name: /dev/dvdrw
       logical name: /dev/sr0
       version: SB02
       capabilities: removable audio cd-r cd-rw dvd dvd-r dvd-ram
       configuration: ansiversion=5 status=ready
     *-medium
          physical id: 0
          logical name: /dev/cdrom
  *-disk
       description: ATA Disk
       product: WDC WD1600AAJS-0
       vendor: Western Digital
       physical id: 1
       bus info: [email protected]:0.0.0
       logical name: /dev/sda
       version: 01.0
       serial: WD-WMAV2P964464
       size: 149GiB (160GB)
       capabilities: partitioned partitioned:dos
       configuration: ansiversion=5 signature=000c0805
  *-disk
       description: SCSI Disk
       physical id: 0.0.0
       bus info: [email protected]:0.0.0
       logical name: /dev/sdb
       size: 931GiB (1TB)
       capabilities: partitioned partitioned:dos
       configuration: signature=a39eabc7

QNAP NAS 製品は、本質的にカスタム Linux ディストリビューションであるファームウェアを実行します。最小限のコマンド ライン ツール セット (および busybox によって提供されるツールの多く) を備えた非常に質素です。 )。幸いなことに、hdparm の適切な実装があります。 そこにあるので、次のようにドライブを照会できるはずです:

hdparm -I /dev/sda

これは、「Western Digital RE4 1TB」ドライブを搭載した「QNAP TS-239 Pro NAS」から取得した出力です (意図的に隠しているドライブのシリアル番号を除いて、出力はそのままです):

/dev/sda:

ATA device, with non-removable media
    Model Number:       WDC WD1003FBYX-01Y7B0                   
    Serial Number:      AB-CDEF01234567
    Firmware Revision:  01.01V01
Standards:
    Supported: 8 7 6 5 
    Likely used: 8
Configuration:
    Logical     max current
    cylinders   16383   16383
    heads       16  16
    sectors/track   63  63
    --
    CHS current addressable sectors:   16514064
    LBA    user addressable sectors:  268435455
    LBA48  user addressable sectors: 1953525168
    device size with M = 1024*1024:      953869 MBytes
    device size with M = 1000*1000:     1000204 MBytes (1000 GB)
Capabilities:
    LBA, IORDY(can be disabled)
    Queue depth: 32
    Standby timer values: spec'd by Standard, with device specific minimum
    R/W multiple sector transfer: Max = 16  Current = 0
    Advanced power management level: unknown setting (0x0080)
    Recommended acoustic management value: 128, current value: 254
    DMA: mdma0 mdma1 mdma2 udma0 udma1 udma2 udma3 udma4 udma5 *udma6 
         Cycle time: min=120ns recommended=120ns
    PIO: pio0 pio1 pio2 pio3 pio4 
         Cycle time: no flow control=120ns  IORDY flow control=120ns
Commands/features:
    Enabled Supported:
       *    NOP cmd
       *    READ BUFFER cmd
       *    WRITE BUFFER cmd
       *    Host Protected Area feature set
       *    Look-ahead
       *    Write cache
       *    Power Management feature set
            Security Mode feature set
       *    SMART feature set
       *    FLUSH CACHE EXT command
       *    Mandatory FLUSH CACHE command 
       *    Device Configuration Overlay feature set 
       *    48-bit Address feature set 
       *    Automatic Acoustic Management feature set 
            SET MAX security extension
       *    SET FEATURES subcommand required to spinup after power up
            Power-Up In Standby feature set
       *    Advanced Power Management feature set
       *    DOWNLOAD MICROCODE cmd
       *    General Purpose Logging feature set
       *    SMART self-test 
       *    SMART error logging 
Security: 
    Master password revision code = 65534
        supported
    not enabled
    not locked
    not frozen
    not expired: security count
        supported: enhanced erase
    168min for SECURITY ERASE UNIT. 168min for ENHANCED SECURITY ERASE UNIT.
Checksum: correct

「ベンダー」と「タイプ」は hdparm によって明示的に報告されません .ただし、「モデル番号」は 報告されており、それをすばやく Web 検索すると、ドライブについて知っておく必要のあるすべての情報が得られるはずです。


最新の Linux システムのほとんどは、udev を使用してデバイスを管理します。ただし、これはすべての組み込みデバイスに当てはまるわけではありません。この特定のデバイスが udev を使用しているかどうかはわかりません。

udevadm info -n /dev/sda3 -a
udevadm info -n /dev/sda3 -q property

システムが /dev/sda3 について知っているすべてを出力します .これは /sys で見つかる情報と同じです ですが、udev はすべてのデータを収集するために階層をたどる作業を行います。


Linux
  1. ボリューム、パーティション、ドライブの違いは?

  2. task_struct からの完全なプロセス名

  3. MD デバイス (mdadm) の名前を変更する方法

  1. デバイス名の代わりに UUID を使用する VirtualBox raw ドライブ

  2. 異なるキーボードからの入力を区別する方法は?

  3. Wi-Fi デバイス wlan0 を誤って削除してしまった

  1. uidからユーザー名を取得する方法

  2. MegaCli:論理ドライブの /dev/sd* デバイス名を取得する

  3. RAID 10 デバイスを初期化する必要があるのはなぜですか?