I feel stupid now... that took me way too long to figure out!!!!
To mount the CF under midori:
cat /proc/partitions
You should see a list of all the partitions like this:
major minor #blocks name
3 0 15680 hda
3 1 2096 hda1
3 3 192 hda3
3 4 13344 hda4
3 13 32 hda13
3 15 4 hda15
3 16 6852 hda16
3 17 3076 hda17
3 18 428 hda18
22 0 125440 hdc
22 1 84344761 hdc1
22 2 934940732 hdc2
22 4 -429926912 hdc4
you can see the major and minor codes at the begining of each line. Then:
cd /tmp
mknod dsk_3_g b [major code above] [minor code above]
in my case I just typed mknod dsk_3_g 22 0
this should make a file called dsk_3_g that you can mount
mkdir g
mount dsk_3_g g
and you have your disk mounted! I am going to put this in my init script now!!!