Changes between Initial Version and Version 1 of Ticket #594, comment 7
- Timestamp:
- Mar 6, 2016, 4:23:07 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #594, comment 7
initial v1 9 9 The problem is when the enclosure runs in the enhanced UASP mode. Disabling UASP for the enclosure should allow access to the SMART functions of the the underlying drive. 10 10 11 The solutionis to blacklist the UAS driver and force the kernel to use the default USB mass storage driver. This can be done by creating a module options file inside /etc/modprobe.d/.11 The trick is to blacklist the UAS driver and force the kernel to use the default USB mass storage driver. This can be done by creating a module options file inside /etc/modprobe.d/. 12 12 13 13 For example in my case, the file is named: … … 21 21 }}} 22 22 23 The alphanumeric code after quirks= arethe USB vendor and product IDs output by dmesg or lusub.23 The alphanumeric code after quirks= is the USB vendor and product IDs output by dmesg or lusub. 24 24 25 25 The additional module directive should work without rebooting provided the "uas" module is not loaded. If the module has already been loaded, you can try to unload it using the command "modprobe -r uas" before inserting or reinserting your USB enclosure. … … 43 43 [73162.672202] sd 3:0:0:0: [sdb] 1953525164 512-byte logical blocks: (1.00 TB/931 GiB) 44 44 }}} 45 46 Incidentally, smartctl for this chipset works out-of-the-box in Ubuntu 14.04, probably because its 3.x kernel still doesn't include uas support, but not in the latest Debian unstable (Linux 4.x).