Linux mount and access a compact flash card - howto
Q. I have a compact flash card reader hardware device connected to USB port of computer system. Now how do I mount and access a compact flash card connected to this Linux system (Fedora Core)?
A. Your compact flash card will automatically detected by Linux. First create a mount point (type the following command as root user):
# mkdir -p /mnt/cflashcard
If you don't have any SCSI device, your first partition on a compact flash card should be /dev/sda1 (second will be /dev/sda2 and so on). If you have 1 SCSI device attached, your first partition on a compact flash card should be /dev/sdb1.
Mount partition using mount command:
# mount /dev/sda1 /mnt/cflashcard
To see or access files:
# cd /mnt/cflashcard
# ls -l
Open /etc/fstab file:
# vi /etc/fstab
Add an entry (append) to /etc/fstab file:
/dev/sda1 /mnt/cflashcard auto user,rw,exec 0 0
Save and close the file.
How do I unmount or unplug card?
First unmount card with umount command and then unplug card:
# umount /mnt/flash
E-mail this to a friend
Printable version
Related Other Helpful FAQs:
- Ubuntu Linux: How to Install Flash Player for firefox
- How to Access the FAT32 files or filesystem from Linux system
- Linux copy data from a floppy to hard disk
- HP-UX UNIX Mount CDROM ( CDFS ) Filesystem Command
- FreeBSD Mount CDROM / DVD Drive From The Command Prompt
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!
Tags: compact flash card, compact flash card reader, computer system, fedora core, flash card reader, hardware device, linux system, mount dev, scsi device



Recent Comments
Today ~ 2 Comments
Today ~ 7 Comments
Today ~ 3 Comments
Today ~ 2 Comments
Today ~ 2 Comments