Results 1 to 4 of 4
Alright, I finally gave in and bought a JumpDrive (I'm still not convinced it was worth the 25 bucks, prolly coulda got it cheaper, screw Wal-Mart, but whatever).
This is ...
- 06-30-2005 #1Just Joined!
- Join Date
- Oct 2004
- Posts
- 65
LEXAR JumpDrive 128MB and Slackware 10.1
Alright, I finally gave in and bought a JumpDrive (I'm still not convinced it was worth the 25 bucks, prolly coulda got it cheaper, screw Wal-Mart, but whatever).
This is the first time I've ever used a JumpDrive. I want to use this in Linux. After doing abit of experimenting I've done the following:
Alright, what to do from here? The drive doesn't show up in fdisk.Code:synthetic@darkstar:~$ su Password: root@darkstar:/home/synthetic# dmesg | tail uhci.c: USB Universal Host Controller Interface driver v1.1 usb-uhci.c: $Revision: 1.275 $ time 19:56:21 Jan 20 2005 usb-uhci.c: High bandwidth mode enabled usb-uhci.c: v1.275:USB Universal Host Controller Interface driver keyboard: unknown scancode e0 5a keyboard: unknown scancode e0 5a hub.c: new USB device 00:02.0-3, assigned address 3 usb.c: USB device not accepting new address=3 (error=-110) hub.c: new USB device 00:02.0-3, assigned address 4 usb.c: USB device not accepting new address=4 (error=-110)
- 07-05-2005 #2Linux Newbie
- Join Date
- Mar 2005
- Location
- de_dust
- Posts
- 115
# modprobe usbstorage
# modprobe usb-core
# modprobe usb-uhci
# modprobe usb-ohci
# mkdir /mnt/key
add to fstab: /dev/sda1 /mnt/key vfat defaults,nosuid,nodev,noexec,noauto,user,sync,ioch arset=utf8,umask=0,quiet,codepage=866 0 0
make sure the last line in fstab is blank!
# mount /mnt/key
- 07-06-2005 #3Just Joined!
- Join Date
- Oct 2004
- Posts
- 65
Furthermore, /dev/sda1 is my root partition (SATA drives).Code:bash-3.00# modprobe usbstorage modprobe: Can't locate module usbstorage bash-3.00# modprobe usb-core modprobe: Can't locate module usb-core bash-3.00# modprobe usb-uhci /lib/modules/2.4.29/kernel/drivers/usb/host/usb-uhci.o.gz: init_module: No such device /lib/modules/2.4.29/kernel/drivers/usb/host/usb-uhci.o.gz: Hint: insmod errors can be caused by incorrect module parameters, including invalid IO or IRQ parameters. You may find more information in syslog or the output from dmesg /lib/modules/2.4.29/kernel/drivers/usb/host/usb-uhci.o.gz: insmod /lib/modules/2.4.29/kernel/drivers/usb/host/usb-uhci.o.gz failed /lib/modules/2.4.29/kernel/drivers/usb/host/usb-uhci.o.gz: insmod usb-uhci failed bash-3.00# modprobe usb-ohci bash-3.00#
Any ideas?Code:bash-3.00# dmesg | tail usb-uhci.c: $Revision: 1.275 $ time 19:56:21 Jan 20 2005 usb-uhci.c: High bandwidth mode enabled usb-uhci.c: v1.275:USB Universal Host Controller Interface driver usb-uhci.c: $Revision: 1.275 $ time 19:56:21 Jan 20 2005 usb-uhci.c: High bandwidth mode enabled usb-uhci.c: v1.275:USB Universal Host Controller Interface driver hub.c: new USB device 00:02.0-3, assigned address 2 usb.c: USB device not accepting new address=2 (error=-110) hub.c: new USB device 00:02.0-3, assigned address 3 usb.c: USB device not accepting new address=3 (error=-110) bash-3.00#
- 07-06-2005 #4Linux Newbie
- Join Date
- Mar 2005
- Location
- de_dust
- Posts
- 115
I may have been mistaken, try this instead:
# modprobe usb-storage
# modprobe usbcore
# modprobe usb-ohci
# mkdir /mnt/key
notice the hyphens...mayby they were misplaced


Reply With Quote