Quote:
Originally Posted by PabloQui
Understanding the logic of Atk instructions, I lack the syntaxis. How to mount-unmount a CF in the iLiad?. Can you at least point me to any reference source?
|
I've not tested the following in the iliad, but it should work

.
To list the supported filesystems:
# cat /proc/filesystems
To mount /dev/hda1 in /tmp/mnt, letting the system to guess the filesystem
# mkdir /tmp/mnt
# mount -t auto /dev/hda1 /tmp/mnt
To umount /tmp/mnt
# umount /tmp/mnt
If you have to specify the filesystem, the most common ones are vfat for windows-formatted partitions (digital camera SD cards and the like) and ext2 for linux ones (explicitly formatted with mke2fs):
# mount -t vfat /dev/hda1 /tmp/mnt
or
# mount -t ext2 /dev/hda1 /tmp/mnt
In all the above examples I've used /dev/hda1, that is the first partition of the CF, but if you have more partitions, you would have to look at the exact number using fdisk diskdev "print[ENTER]quit[ENTER]"or "sfdisk -d diskdev" (probably in you laptop instead; anyway out of scope for this little reminder).
Hope that helps

.