On Wed, Apr 07, 2010 at 04:34:39PM -0700, Super Biscuit wrote: > Using mount -t ufs -o ufstype=44bsd -o ro /mount/point > /mount/directory does not allow reading of /home /var /tmp and /root. > The option of -o rw doesn't work from Linux to any BSD. (At least for > me because I do not know the proper commands.)
Mounting the fs in two steps, as follows, worked for me. # mount -t ufs -o ufstype=44bsd /dev/sda4 /mnt # mount -orw,remount /dev/sda4 /mnt However, it requires your UFS support to have been built with the UFS_FS_WRITE at (Linux kernel) compile time (bUFS file system write supportb, only available if bPrompt for development and/or incomplete code/driversb is enabled) which is --as far as my experience goes-- not the case by default with many distros. You may need to recompile your module and/or kernel. -- Olivier Mehani <[email protected]> PGP fingerprint: 4435 CF6A 7C8D DD9B E2DE F5F9 F012 A6E2 98C6 6655 [demime 1.01d removed an attachment of type application/pgp-signature]

