Subject: Re: compact flash card
To: Ben C <bensbrain@hotmail.com>
From: Andrew Gillham <gillham@vaultron.com>
List: port-i386
Date: 08/09/2001 16:11:44
On Thu, Aug 09, 2001 at 04:07:23PM -0700, Ben C wrote:
> mount_msdos /dev/wd1x /mnt
> 
> You might need to create a disklabel before you try mounting the card.
> 
> fdisk /dev/rwd1 in order to find out the disk geometry
> disklabel -i -I /dev/wd1 to do the actual thing.
> 
> Ben

If it is a FAT file system it should pretty much automatically be wd1e.
So:
# mount -t msdos /dev/wd1e /mnt

Or:
# mkdir /flash
# echo /dev/wd1e /flash msdos rw,noauto 0 0 >> /etc/fstab
# mount /flash

-Andrew