The fix was to add:
echo 30 > /sys/module/scsi_mod/parameters/inq_timeout
in an rc startup script. (I placed mine in /etc/rc2.d/S99usb_inq_timeout.
Now the Corsair USB device can be seen by Linux and I can mount it or use Truecrypt to create/access a fully encrypted USB drive.
Some suggestions on the web included:
or in /etc/modprobe.conf
options usb_storage delay_use=20
That didn't work for me. (I didn't try 30, though.) Others also stated that the /etc/modprobe.conf fix didn't work for them either.
Ira
From the website:
http://www.asktheramguy.com/v3/showthread.php?t=73036
See bugzilla #11640
Whenever you create multiple partitions or a non fat(32) file system in a partition on the stick the inquiry of the stick timeouts. The default linux timeout is set for 5 secs, and the stick takes 14.5 seconds. So if you set the timeout to 15 seconds or more, and reinsert the stick, the stick should be mountable and readable. Just remember to add this to your boot scripts, or repeat it every time you reboot the kernel.
The inquiry timeout can be set to 15 sec with the following command line:
Code:
echo 15 >/sys/module/scsi_mod/parameters/inq_timeout
Or if you prefer the grub command line is :
Code:
scsi_mod.inq_timeout=15
I hope this longer timeout will someday be standard for the kernel. Or maybe part of an exception list when a prolific 2528 stick is detected.