> I'm trying to plug a USB device (memory) to a workstation. > In lts.conf, I have : > > MODULE_01 = "usb-uhci" > MODULE_02 = "usb-storage" > > and RUNLEVEL=3 to see what happens. > > While booting, every usb check is OK : it detects usb hub, 2 ports. > > Then I have the prompt. > When I plug in my device, here is what I get : > > hub.c: new USB device 00:01.2-1, assigned adress 2 > scsi1: SCSI emulation for USB Mass Storage devices > Vendor: Tiny Disk Model: 2004-08-31 Rev: 2.2 > Type: Direct-Access ANSI SCSI revision: 02 > > Looks good. But then, I can't find a device to mount .... > There is no /dev/sda* , nothing appears in the /dev/scsi tree, ... > > Is there a way to let it work ?
Try inspecting /proc/scsi and /proc/bus/usb for more information. If it is a partitioned device (ie the filesystem would be at /dev/sdaX rather than directly on /dev/sda) then you have to register LUNs manually, or recompile the kernel with lun-probing enabled. You do this by a simple echo command to the /proc/scsi/scsi file (if you want an example of that, see in the middle of the scan_scsi_luns function in my monitormedia.sh script at http://fredtun.no/ltsp/ ... the line containing "add-single-device"). Thinking about it though, in that case the host should still have appeared (ie according to your messages the /dev/scsi/host1 dir should have appeared) - so that is probably not it. // Dag Sverre ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _____________________________________________________________________ Ltsp-discuss mailing list. To un-subscribe, or change prefs, goto: https://lists.sourceforge.net/lists/listinfo/ltsp-discuss For additional LTSP help, try #ltsp channel on irc.freenode.net
