linux: mount UFS filesystem

小胖不听我的言,用了群晖,结果老是出问题,不是不最后又用回nas4free,不过在ubuntu下ufs就有点点不方便喽
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/sdc1 ufs_mount
参考
http://askubuntu.com/questions/85154/mount-ufs-filesystem
http://www.cyberciti.biz/faq/howto-linux-mount-freebsd-ufs2-filesystem/