SlackwareThis Forum is for the discussion of Slackware Linux.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
I've got a portable USB SD card reader that I use for my Nikon digital camera, it plugs into a free USB port on my Slackware 11.0 box. I know it is Linux compliant as I've used it in Debian and Ubuntu.
It doesn't seem to show up when I plug it in to my Slack box.
Do I need to mount it at a shell prompt? I mount my cd rom drive with
#mount /mnt/cdrom
Any ideas what command I'd use to mount it and view my SD pictures?
Thank you for any and all replies:-)
Thanks guys:-) Here is as far as I've got. I may need to add my reader to my fstab, maybe. I can see the reader at the shell prompt:-)
Quote:
hitest@slackbox:~$ su
Password:
root@slackbox:/home/hitest# lsusb
Bus 2 Device 1: ID 0000:0000
Bus 2 Device 2: ID 05e3:0710 Genesys Logic, Inc. USB 2.0 33-in-1 Card Reader
Bus 1 Device 1: ID 0000:0000
root@slackbox:/home/hitest# ls /dev/disk/by-id
ata-CRD-8481B_20000229 scsi-35005076104d1e2a7 scsi-35005076104d1e2a7-part2
scsi-35005076104d1d4f7 scsi-35005076104d1e2a7-part1 usb-Generic_STORAGE_DEVICE_136916
root@slackbox:/home/hitest# cd /dev/disk
root@slackbox:/dev/disk# ls
by-id by-path by-uuid
root@slackbox:/dev/disk# cd by-id
root@slackbox:/dev/disk/by-id# ls
ata-CRD-8481B_20000229 scsi-35005076104d1e2a7 scsi-35005076104d1e2a7-part2
scsi-35005076104d1d4f7 scsi-35005076104d1e2a7-part1 usb-Generic_STORAGE_DEVICE_136916
root@slackbox:/dev/disk/by-id# mount usb-Generic_STORAGE_DEVICE_136916
mount: can't find /dev/sdf in /etc/fstab or /etc/mtab
root@slackbox:/dev/disk/by-id#
Distribution: Xubuntu, Mythbuntu, Lubuntu, Picuntu, Mint 18.1, Debian Jessie
Posts: 1,207
Rep:
My PNY USB card reader didn't work in Slack 10.2. It does now with Slack 11...but only if my pc boots with the card reader pluged into my old Compaq laptop. When it boots it finds LUNS and finds my card reader. I then have to mount it....fdisk -l will show if it's recognized and mount /dev/sda1 /mnt/sda1 will mount sda1 (need to be root).
I haven't put it into /etc/fstab...not sure how it would boot if the reader wasn't there.
Last edited by linuxhippy; 02-12-2007 at 08:46 AM.
You need to run rescan-scsi-bus after plugging it in. This is because multi-card readers are not usually on the first lun or use more than one. The slot you want to use is probably /dev/sd(b,c,d) instead of /dev/sda.
You need to run rescan-scsi-bus after plugging it in. This is because multi-card readers are not usually on the first lun or use more than one. The slot you want to use is probably /dev/sd(b,c,d) instead of /dev/sda.
Okay, thanks, gnashley:-) I'm leaving for work now I'll give it a try tonight:-) After I've run rescan-scsi-bus would I run this?
After running rescan-scsi-bus, you should be able to mount on any existing mount-point, like /media/usb.
The basic form is:
mount /dev/sdc1 /media/usb
Note that the partition number may or may not be needed, depending on the sd card itself. Most will have a partition table and you should give the number, but there are some which have no partition table, where you'd mount the completet device without partition number.
After running rescan-scsi-bus, you should be able to mount on any existing mount-point, like /media/usb.
The basic form is:
mount /dev/sdc1 /media/usb
Note that the partition number may or may not be needed, depending on the sd card itself. Most will have a partition table and you should give the number, but there are some which have no partition table, where you'd mount the completet device without partition number.
make sure there is a disk in there ... then you'll be able to write to /mnt/tmp all the files you want to go to disk. Oh, and read files from there too.
Last edited by H_TeXMeX_H; 02-12-2007 at 07:58 PM.
make sure there is a disk in there ... then you'll be able to write to /mnt/tmp all the files you want to go to disk. Oh, and read files from there too.
Okay, there's a disk in there, here's the output I get:
Code:
hitest@slackbox:~$ su
Password:
root@slackbox:/home/hitest# mount /dev/sdf /mnt/tmp
mount: No medium found
root@slackbox:/home/hitest# cd /
root@slackbox:/# mount /dev/sdf /mnt/tmp
mount: No medium found
root@slackbox:/#
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.