Saturday, January 24, 2009

Mounting a FreeBSD partition on Ubuntu 8.10

I though I would make a note of this:

# export DISK=sda1 MOUNT_POINT=sda1
# mkdir -p /mnt/${MOUNT_POINT}
# mount -r -t ufs -o ufstype=ufs2 /dev/${DISK} /mnt/${MOUNT_POINT}

Hope this helps someone :p
Edward.

2 comments:

Anonymous said...

Thanks.

Unknown said...

Please keep in mind this will mount the partition read only.