Results 1 to 4 of 4
I have a Lexar Media card reader, and when I plug into into the USB slot nothing happens and it's not visible from Konqueror. I'm assuming I have to mount ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 11-30-2006 #1Just Joined!
- Join Date
- Aug 2006
- Posts
- 94
Lexar USB Card Reader Problem
I have a Lexar Media card reader, and when I plug into into the USB slot nothing happens and it's not visible from Konqueror. I'm assuming I have to mount it somehow, but how? I "googled" it and someone said that USB devices appear under SDAx. Well my last partition is SDA13, and when I plug in the reader there are no new devices appearing above that number in /dev.
Any suggestions?
- 12-01-2006 #2Linux Enthusiast
- Join Date
- Apr 2004
- Location
- UK
- Posts
- 678
When you plug in the device, the kernel will detect it and put messages about it in the log. Use the "dmesg" command to see them.
From my own log:
Shows the device getting detected, claimed by the usb-storage driver and the highlighted part shows the partitions available.[17182420.600000] usb 1-1: new full speed USB device using uhci_hcd and address 3
[17182420.740000] scsi1 : SCSI emulation for USB Mass Storage devices
[17182420.740000] usb-storage: device found at 3
[17182420.740000] usb-storage: waiting for device to settle before scanning
[17182425.744000] Vendor: Generic Model: STORAGE DEVICE Rev: 0.01
[17182425.744000] Type: Direct-Access ANSI SCSI revision: 00
[17182425.748000] SCSI device sda: 256513 512-byte hdwr sectors (131 MB)
[17182425.756000] sda: test WP failed, assume Write Enabled
[17182425.756000] sda: assuming drive cache: write through
[17182425.764000] SCSI device sda: 256513 512-byte hdwr sectors (131 MB)
[17182425.772000] sda: test WP failed, assume Write Enabled
[17182425.772000] sda: assuming drive cache: write through
[17182425.772000] sda: sda1
[17182425.780000] sd 1:0:0:0: Attached scsi removable disk sda
[17182425.780000] sd 1:0:0:0: Attached scsi generic sg0 type 0
[17182425.780000] usb-storage: device scan complete
In this case I'd use
to mount the partition. You can change the /mnt/flash argument to anything you need to get it mounted in a suitable location.Code:mount /dev/sda1 /mnt/flash
Let us know how you get on,
Chris...To be good, you must first be bad. "Newbie" is a rank, not a slight.
- 12-01-2006 #3
If KDE doesn't detect it, I'm guessing it isn't being detected by the kernel, but it's still worth seeing if you can mount it. Another place to check to see if it's recognized is /proc/partitions, which shows the partitions on the different drives in the system (no matter whether they're mounted or not).
Depending on how your system's set up, you'll probably have to run the mount command kakariko showed you as root (use "su").I have sold my soul to the penguin
- 12-03-2006 #4Just Joined!
- Join Date
- Aug 2006
- Posts
- 94
Well, strangely, when I plugged in the card reader today to try out the "dmesg" command, I noticed dmesg saw the reader. I plugged in a memory card, and it appeared in konqueror. I have no idea why it wouldn't appear the other day, but it seems to be working now.
Thanks for the help.


Reply With Quote
