How can I mount a FreeBSD disk in Ubuntu?

I've got a hard drive from an old DVD player/recorder and I need to get the content off of it. It is in FreeBSD format. How can I mount this drive in Ubuntu in order to transfer the content to an NTFS drive for example?

3

1 Answer

sudo mkdir /mnt/freebsd
sudo mount -t ufs -o ro,ufstype=ufs2 /dev/sdaX /mnt/freebsd

sdaX = the freeBSD partition.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like