web-dev-qa-db-ja.com

hdparm secure-eraseエラー:「ERASE_PREPARE:無効な引数」

(私は火で遊んでいますが、Noobにアドバイスを投げてください...ありがとう)

さて、

SMARTを使用して不良セクタ/ブロックを自己マークできるように、2TBの損傷したHDDの低レベルフォーマットを試してください。

https://superuser.com/questions/203305/how-do-i-perform-a-low-level-format-of-a-sandforce-solid-state-disk/485949#485949のアドバイスに従ってください

しかし、このコマンドからこの出力を得ました:

Sudo hdparm --user-master u --security-erase llformat /dev/sdc
security_password="llformat"

/dev/sdc:
 Issuing SECURITY_ERASE command, password="llformat", user=user
ERASE_PREPARE: Invalid argument

セキュリティを有効にしました。 hdparm -I /dev/sdcからの出力は次のとおりです。

/dev/sdc:

ATA device, with non-removable media
    Model Number:       WDC WD20EARS-00MVWB0                    
    Serial Number:      WD-WCAZA7166342
    Firmware Revision:  51.0AB51
    Transport:          Serial, SATA 1.0a, SATA II Extensions, SATA Rev 2.5, SATA Rev 2.6
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: 3907029168
    Logical/Physical Sector size:           512 bytes
    device size with M = 1024*1024:     1907729 MBytes
    device size with M = 1000*1000:     2000398 MBytes (2000 GB)
    cache/buffer size  = unknown
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
    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:
       *    SMART feature set
       *    Security Mode feature set
       *    Power Management feature set
       *    Write cache
       *    Look-ahead
       *    Host Protected Area feature set
       *    WRITE_BUFFER command
       *    READ_BUFFER command
       *    NOP cmd
       *    DOWNLOAD_MICROCODE
            Power-Up In Standby feature set
       *    SET_FEATURES required to spinup after power up
            SET_MAX security extension
       *    48-bit Address feature set
       *    Device Configuration Overlay feature set
       *    Mandatory FLUSH_CACHE
       *    FLUSH_CACHE_EXT
       *    SMART error logging
       *    SMART self-test
       *    General Purpose Logging feature set
       *    64-bit World wide name
       *    WRITE_UNCORRECTABLE_EXT command
       *    {READ,WRITE}_DMA_EXT_GPL commands
       *    Segmented DOWNLOAD_MICROCODE
       *    Gen1 signaling speed (1.5Gb/s)
       *    Gen2 signaling speed (3.0Gb/s)
       *    Native Command Queueing (NCQ)
       *    Host-initiated interface power management
       *    Phy event counters
       *    NCQ priority information
            DMA Setup Auto-Activate optimization
       *    Software settings preservation
       *    SMART Command Transport (SCT) feature set
       *    SCT Write Same (AC2)
       *    SCT Features Control (AC4)
       *    SCT Data Tables (AC5)
            unknown 206[12] (vendor specific)
            unknown 206[13] (vendor specific)
Security: 
    Master password revision code = 65534
        supported
        enabled
    not locked
    not frozen
    not expired: security count
        supported: enhanced erase
    Security level high
    378min for SECURITY ERASE UNIT. 378min for ENHANCED SECURITY ERASE UNIT. 
Logical Unit WWN Device Identifier: 50014ee205d8fa16
    NAA     : 5
    IEEE OUI    : 0014ee
    Unique ID   : 205d8fa16
Checksum: correct

パスワードを入力する必要はありませんか?

1
Little me

さて、私は今のところ敗北を認めているかもしれませんが、将来のユーザーには答えがあります。

私の場合、ドライブはSATA-USBケーブル(12GBP ebayアイテム)に接続されています。どうやら、これらの一部および外部ドライブクレードルでさえ、完全なATAコマンドをドライブに渡さないようです。 hdparmの作者であるMark Lordは、何をすべきかについての2行の説明と、1行目の説明を書いてくれました。

ドライブは、マザーボードの内部SATAコントローラーに直接接続する必要があります

buntu.comのマニュアルページ

hdparmは、Linux SATA/PATA/SAS "libata"サブシステムと古いIDEドライバーサブシステムでサポートされているさまざまなカーネルインターフェイスへのコマンドラインインターフェイスを提供します。 多くのより新しい(2008以降)USBドライブエンクロージャーは「SAT」(SCSI-ATAコマンド変換)もサポートするようになったため、hdparmでも動作する場合があります。

Linux-Magazine を引用するには:

Hdparmは、DVDドライブやSSDなど、(E)IDE、SATA、またはSASインターフェイスに接続された大容量記憶装置としてのデバイスを受け入れます。 USB-IDEアダプタは、(完全な)ATAまたはATAPIコマンドをドライブに送信しないため、問題を引き起こすことがよくあります。 hdparmが配信する情報は、デバイスによって異なります。

私は小さなネットブックを使用しているため、マザーボードに直接リボン接続することはできず、別のマシンにアクセスできません。妨害された!

1
Little me