Thread: e2fs 1.40.8
View Single Post
Old 02-22-2009, 09:47 AM   #6
Antartica
Evangelist
Antartica ought to be getting tired of karma fortunes by now.Antartica ought to be getting tired of karma fortunes by now.Antartica ought to be getting tired of karma fortunes by now.Antartica ought to be getting tired of karma fortunes by now.Antartica ought to be getting tired of karma fortunes by now.Antartica ought to be getting tired of karma fortunes by now.Antartica ought to be getting tired of karma fortunes by now.Antartica ought to be getting tired of karma fortunes by now.Antartica ought to be getting tired of karma fortunes by now.Antartica ought to be getting tired of karma fortunes by now.Antartica ought to be getting tired of karma fortunes by now.
 
Antartica's Avatar
 
Posts: 423
Karma: 1517132
Join Date: Jun 2006
Location: Madrid, Spain
Device: quaderno, remarkable2, yotaphone2, prs950, iliad, onhandpc, newton
Quote:
Originally Posted by PabloQui View Post
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 .
Antartica is offline   Reply With Quote