Open a terminal and run:
ls /sbin/mount_* |
The following tells the kinds of file systems I can mount under my FreeBSD such as ntfs, ext2fs(linux ext2, ext3 file systems) and etc.
newemachine# ls /sbin/mount_*/sbin/mount_cd9660 /sbin/mount_mfs /sbin/mount_procfs |
Say, now I plug in a USB drive have two slices. The first slice da0s1 is a NTFS file system and the second slice da0s2 is an ext3 file system. I can mount them as follows:
newemachine# mount -t ntfs /dev/da0s1 /media |
No comments:
Post a Comment