Changes between Initial Version and Version 1 of A-DATA_SH93


Ignore:
Timestamp:
Feb 17, 2011, 11:25:12 AM (13 years ago)
Author:
porg
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • A-DATA_SH93

    v1 v1  
     1== Report from Alex Keda ==
     2
     3Device is working with "-d usbcypress". Reported within the [http://sourceforge.net/mailarchive/forum.php?thread_name=20100326164007.GA25263%40x61s.reliablesolutions.de&forum_name=smartmontools-support mailinglist].
     4
     5== Hint/Remark from Stefan Nowak ==
     6
     7Make sure the first command you send to the device is "-s on".
     8After that you can use all the queries/commands you like.
     9
     10If you first query, and SMART wasn't enabled yet, then you'll get nonsensical  info. And if you then try to enable SMART, it fails.
     11If you got into this situation, you have to disconnect and reconnect the device (sort of "start a new session"), and first send "-s on", and from then on all commands works as usual.
     12
     13That's it. For those who want to see more details, see the logs below.
     14
     15
     16== Correct command order ==
     17
     18{{{
     19$ smartctl -d usbcypress -s on sdb
     20# You get the confirmation.
     21# And after that, use any command you like.
     22}}}
     23
     24== Wrong command order ==
     25
     26{{{
     27$ smartctl -d usbcypress -a sdb
     28
     29=== START OF INFORMATION SECTION ===
     30… Correct info about the device …
     31Error SMART Values Read failed
     32=== START OF READ SMART DATA SECTION ===
     33… Some nil values …
     34Error SMART Error Log Read failed
     35Error SMART Error Self-Test Log Read failed
     36
     37$ smartctl -d usbcypress -s on sdb
     38
     39Smartctl: Device Read Identity Failed (not an ATA/ATAPI device)
     40A mandatory SMART command failed: exiting. To continue, add one or more '-T perm
     41issive' options.
     42
     43# Whatever command you enter from now on fails.
     44# Disconnect and reconnect the device, then enable SMART as shown in the chapter "Correct command order"
     45}}}
     46