Slow speed for UFS mounted drive in Linux

mountsunufswrite

I have a disk that has Sun OS disk, (ufs filesystem). And I want to mount it in my debain machine with read/write mode. Since by deafult linux doesn't support write to ufs filesystem. I had to recompile the kernel by setting to the flag CONFIG_UFS_FS_WRITE=y. Now I am able to write to the filesystem, but the read/write speed is very slow. It is around 120 KB/s. Any idea what is wrong and how to resolve this issue?

Thank you in advance.

Best Answer

From what I can find, UFS support seemed to be problematic and/or unreliable in Linux. Most of the articles I found were from years ago.

You didn't say whether this was a USB drive or an actual hard disk, and one thing some recommended was to check your USB speed.

Another option might be to use virtualization or a bootable disk to run a variant of FreeBSD, which should natively support UFS. I don't know if you're just looking to get files off the drive or if you are trying to share the drive with another system, but if you're just looking to pull data, using a bootable *BSD variant may be the best go-between. Or you can set up a BSD VM or small BSD machine to act as a SAMBA server so you can read and write with that filesystem.

Related Topic