Next: AddOn GWK140
From: alexd on
Anyone managed to get the above working in linux? Genesys website says use
usb-storage module.
http://www.genesyslogic.com/econtents/product02.asp?minicidx=2&lastcidx=8&SN=38

Have loaded the usb-storage module, and this is what I get when I plug it
in:

usb 1-1: new full speed USB device using address 14
scsi8 : SCSI emulation for USB Mass Storage devices
Vendor: Generic Model: STORAGE DEVICE Rev: 9138
Type: Direct-Access ANSI SCSI revision: 02
Attached scsi generic sg0 at scsi8, channel 0, id 0, lun 0, type 0
Vendor: Generic Model: STORAGE DEVICE Rev: 9138
Type: Direct-Access ANSI SCSI revision: 02
Attached scsi generic sg1 at scsi8, channel 0, id 0, lun 1, type 0
Vendor: Generic Model: STORAGE DEVICE Rev: 9138
Type: Direct-Access ANSI SCSI revision: 02
Attached scsi generic sg2 at scsi8, channel 0, id 0, lun 2, type 0
Vendor: Generic Model: STORAGE DEVICE Rev: 9138
Type: Direct-Access ANSI SCSI revision: 02
Attached scsi generic sg3 at scsi8, channel 0, id 0, lun 3, type 0
Vendor: Generic Model: STORAGE DEVICE Rev: 9138
Type: Direct-Access ANSI SCSI revision: 02
Attached scsi generic sg4 at scsi8, channel 0, id 0, lun 4, type 0
USB Mass Storage device found at 14

I've tried mounting sg0 through sg4, with three different types of memory
card, all formatted VFAT. No dice.[mount: /dev/sg0 is not a block device]
I've tried fdisk, and it says "FATAL ERROR: Cannot get disk size" for
sg0-4. cdrecord -scanbus says

scsibus8:
8,0,0 800) 'Generic ' 'STORAGE DEVICE ' '9138' Removable Disk
8,1,0 801) *
8,2,0 802) *
8,3,0 803) *
8,4,0 804) *
8,5,0 805) *
8,6,0 806) *
8,7,0 807) *

The USB ID of the device is 05E3 0710. I'm all out of ideas. Help!



--
<http://ale.cx/> (AIM:troffasky) (gebssnfxl(a)ubgznvy.pbz)
01:03:26 up 22 days, 9:03, 1 user, load average: 0.19, 0.20, 0.19
This is my BOOOOOOOOOOOOOOOOOOOOOMSTICK

From: Huw Lynes on
On Tue, 08 Feb 2005 01:18:09 GMT
alexd <look(a)my.sig> wrote:

> Anyone managed to get the above working in linux? Genesys website says use
> usb-storage module.
> http://www.genesyslogic.com/econtents/product02.asp?minicidx=2&lastcidx=8&SN=38
>
> Have loaded the usb-storage module, and this is what I get when I plug it
> in:

what does
fdisk -l
say?


--
| Huw Lynes | The Moving Picture Company |
| System Administrator | 127 Wardour Street |
|.........................| London, W1F 0NL |


From: alexd on
Huw Lynes wrote:

> On Tue, 08 Feb 2005 01:18:09 GMT
> alexd <look(a)my.sig> wrote:
>
>> Anyone managed to get the above working in linux? Genesys website says
>> use usb-storage module.
>>
http://www.genesyslogic.com/econtents/product02.asp?minicidx=2&lastcidx=8&SN=38
>>
>> Have loaded the usb-storage module, and this is what I get when I plug it
>> in:
>
> what does
> fdisk -l
> say?

fdisk -l /dev/sg0 thru sg4 just sits there. This is what its doing when it
stops, according to strace:

open("/dev/sg1", O_RDONLY|O_LARGEFILE) = 3
open("/dev/sg1", O_RDONLY|O_LARGEFILE) = 4
read(4,

Have tried all 3 different types of card in it [together and individually],
and it makes no difference.

--
<http://ale.cx/> (AIM:troffasky) (gebssnfxl(a)ubgznvy.pbz)
18:18:39 up 23 days, 2:18, 1 user, load average: 0.57, 0.76, 0.83
This is my BOOOOOOOOOOOOOOOOOOOOOMSTICK

From: Darren Salt on
I demand that alexd may or may not have written...

> Anyone managed to get the above working in linux? Genesys website says use
> usb-storage module.
> http://www.genesyslogic.com/econtents/product02.asp?minicidx=2&lastcidx=8&SN=38

> Have loaded the usb-storage module, and this is what I get when I plug it
> in:

> usb 1-1: new full speed USB device using address 14
> scsi8 : SCSI emulation for USB Mass Storage devices
> Vendor: Generic Model: STORAGE DEVICE Rev: 9138
> Type: Direct-Access ANSI SCSI revision: 02
> Attached scsi generic sg0 at scsi8, channel 0, id 0, lun 0, type 0
[snip LUNs 1...4]
> USB Mass Storage device found at 14

> I've tried mounting sg0 through sg4,

That's "SCSI generic". You want SCSI disk: it looks like support isn't
present, so
# modprobe sd_mod
then try /dev/sda1 etc.

--
| Darren Salt | d youmustbejoking,demon,co,uk | nr. Ashington,
| Debian, | s zap,tartarus,org | Northumberland
| RISC OS | @ | Toon Army
| Let's keep the pound sterling

A wok is what you thwow at a wabbit.
From: Nix on
On Thu, 10 Feb 2005, alexd stipulated:
> Darren Salt wrote:
>>> usb 1-1: new full speed USB device using address 14
>>> scsi8 : SCSI emulation for USB Mass Storage devices
>>> Vendor: Generic Model: STORAGE DEVICE Rev: 9138
>>> Type: Direct-Access ANSI SCSI revision: 02
>>> Attached scsi generic sg0 at scsi8, channel 0, id 0, lun 0, type 0
>> [snip LUNs 1...4]
>>> USB Mass Storage device found at 14
>>> I've tried mounting sg0 through sg4,
>> That's "SCSI generic".
>
> So what is sg0 - sg4 for if I can't mount it? Is it for the SCSI disk driver
> to access?

It's a device you can use to send and receive stuff in the raw unadorned
SCSI protocol. `generic' here means `not just disks'.

Of course it doesn't support mounting: you can't mount an uninterpreted
protocol stream :)

>> You want SCSI disk: it looks like support isn't
>> present, so
>> # modprobe sd_mod
>> then try /dev/sda1 etc.
>
> Sorted! That's done the trick.

You probably want to try the hotplug/udev combo at some point (in a 2.6
kernel). When correctly configured it can make the plug-in/mount stuff
pretty much effortless.

(Of course if you're not mounting read-only you still have to unmount
before unplugging!)

--
Synapsids unite! You have nothing to lose but your eggshells!
 |  Next  |  Last
Pages: 1 2
Next: AddOn GWK140