Ubuntu – Mount UFS filesystem

11.10mountnas

How do I mount a partition with UFS filesystem (FreeNAS) in Ubuntu 11.10?

I'm a total Ubuntu newbie and just switched from FreeNAS.

There should be ll the info I need I guess, but if anyone would help me get going i'll by glad =)
http://manpages.ubuntu.com/manpages/hardy/man8/mount.8.html

Best Answer

Mounting UFS file systems in Ubuntu should be straight forward. Follow these simple steps to make sure that your are mounting your FreeNAS disks properly in Ubuntu:

Load the UFS module (or make sure its loaded)

sudo modprobe ufs

Make a directory where to mount the files on

mkdir ~/ufs_mount

To find out which device holds your UFS file system use the command fdisk -l, note which device you intend to mount.

Mount the file system to the directory your previously created

sudo mount -r -t ufs -o ufstype=ufs2 /dev/sdb1 /home/<your_username>/ufs_mount

(where: sdb1 is the UFS partition you want to mount and <your_username> is the your current username where the intended mounting point was created previously.