Quote:
|
Originally Posted by MasterC
You should be able to do it via a simple:
Type (as root):
tail -f /var/log/messages
Plug in the device and watch for information regarding the 'sd' that it becomes. Likely it will be /dev/sda1 From there:
CTRL + C
to stop tail, and then:
mount /dev/sda1 /mnt/sdcard
Similarly for the camera, and be sure that the directory you are mounting to exists
Cool
|
I have been having similiar probs. My main issue is that the mount command tells me to specify the filesystem type.
When i specify it as ntfs i get
[root@fedora mnt]# mount -t ntfs /dev/hde /mnt/sdcard
mount: unknown filesystem type 'ntfs'
[root@fedora mnt]#
And when I specify vfat which I believe is for fat file systems i get
[root@fedora mnt]# mount -t vfat /dev/hde /mnt/sdcard
mount: /dev/hde: can't read superblock
[root@fedora mnt]#
Any help would be appreciated!
Chris