top image
home  /  pages  /  tech tips  /  contact about

Use a Delkin Devices eFilm CompactFlash Reader-31 in Linux

Problem

You want to use the Delkin Devices eFilm Reader-31 in Linux. The device has Vendor ID 0c45 and Product ID 1050.

Keywords

Delkin, Reader-31, CompactFlash, eFilm, usbview, 0c45, 1050, usb-storage.

Solution

Consult Greg Baker's page on Using a USB Card Reader in Linux and Van Emery's page on USB Mass Storage Devices for Linux.

The summary is that you need to enable CONFIG_SCSI, CONFIG_BLK_DEV_SD, CONFIG_CHR_DEV_SG, CONFIG_USB, CONFIG_USB_DEVICEFS, a USB driver (My IBM ThinkPad T30, Type 2366 uses CONFIG_USB_UHCI), and CONFIG_USB_STORAGE. In addition, you need to install sg3-utils.

Reboot your computer. The sequence of commands is now roughly:

modprobe uhci-hcd        (or whatever your USB controller is)
modprobe usbcore
modprobe usb-storage
modprobe sg
modprobe sd_mod
/usr/bin/sg_map
mount -t vfat /dev/sda1 /mnt    (-t msdos for older CF cards)

Notice that /dev/sda1 may actually not be the correct device. Let the output of /usr/bin/sg_map guide you.

URL: https://thomer.com/howtos/delkin_ereader.html
Copyright © 1994-2022 by Thomer M. Gil
Updated: 2004/10/15