I'll believe that when I see it. Until then, it's bullshit.huhmz wrote:And I head ReiserFS 4 is going to be 100% (in some cases) faster.

I have my /home on a Reiser4 partition now... lemme know how and what you need tested.. I would be happy to back it up and switch FS' around a bit...
ghetto wrote:I have my /home on a Reiser4 partition now... lemme know how and what you need tested.. I would be happy to back it up and switch FS' around a bit...
ok lets see some before and after 'hdparm -Tt' with reiser3 or at least an "after switching to reiser4.."
What sort of hd is it anyway..
and finally how did you get reiser4 on your system?
![]()
![]()
Have you noticied that you can use hdparm with /dev/hda, which is only a device and not a partition? From that fact and from that sentence from the manual I can only but think it does not use the underlying file system drivers. It directly accesses the disk using ioctl calls.hdparm provides a command line interface to various hard disk ioctls
supported by the stock Linux ATA/IDE device driver subsystem.
Hehe, I patched the 2.5.53 kernel and compiled the userspace tools (had to hack the configure file a bit..ghetto wrote:I have my /home on a Reiser4 partition now... lemme know how and what you need tested.. I would be happy to back it up and switch FS' around a bit...
ok lets see some before and after 'hdparm -Tt' with reiser3 or at least an "after switching to reiser4.."
What sort of hd is it anyway..
and finally how did you get reiser4 on your system?
![]()
![]()
JFS is idd very fast, perhaps faster than XFS. I switched from ext3 to JFS, about four months ago. I've been using it on all partitions except /boot (which is still ext3 -- but rarely mounted) since then. No problems at all, no extra kernel patches (it's in 2.4.20 as well as in gentoo-sources) needed for JFS, and .. it's fast.klimg wrote:I had a very specific problem with ext3.When I download a file with mldokey it all gets split up in 9mb pieces.When I try to write this to a CD at 32X I get constant buffer underruns and a effective speed of about 8X.I did throw a JFS filesystem on there and now the buffer underruns are gone (min. buffer fill 98%) and speed average is about 22X.Seems to be pretty fast in piecing stuff together.

That's some work! Great job!Lovechild wrote: Hehe, I patched the 2.5.53 kernel and compiled the userspace tools (had to hack the configure file a bit..

Matt:matthead wrote:I put together a feature comparison table, mostly for my own use. After seeing this thread, I'd like to share.
I'd love any feedback anyone would like to give.

I have lost two hdds to xfs; it relies on its journal exclusively. There is no recovery program.eivinn wrote:Hi,
I have now got internet back up and am planning to install Gentoo 1.4rc1.
Therefore I am wondering if it's best to use Ext3 or XFS. I am the "only" real user of the computer and use it for developing C++, Java programs and also a bit of gaming (GF4). What is faster, what is more reliable?
Thanks for any short explanation
To avoid to modify the boot configuratio it's possible to use the Gentoo installation cd, I think. Just remember to edit /etc/fstab to reflect the fs changes.To the best of my knowledge, you can't *directly* convert a filesystem from one type, but instead you have to move all of your data somewhere, reformat, and move your data back.
This isn't hard though, if you have enough space on another (empty) partition.
For instance, if I want to change my /dev/hda3 partition to JFS (and assuming it's my root partition), I'd mount my /dev/hda4 partition to /backup/, then use the following command:
Code:
cd /
tar lcf - .|(cd /backup; tar xpvf - )
Assuming I remembered the command correctly (99.9% sure), this will make an exact copy of your root partition in your /dev/hda4 partition (and you can watch as it does it, that's what the "v" will do).
Now, you can cd into /backup, chroot, edit your config files (most importantly your /etc/fstab) and reflect the changes in your bootloader (telling it to boot your /dev/hda4 partition as your root) and then reboot.
Then you can format /dev/hda3 as you like, mount it, and repeat the process to make it your root again.
And, of course, any other empty partition will do - it could even be on another hard drive. I hope this helps if you don't find any slicker way to convert your file system type.
_________________
-=Miles Stoudenmire=-


I've been running with XFS for about six months and I've been wondering about serious slowdowns when a process is doing a lot of disk io. Has anyone else seen this with XFS? Is it time to switch?huhmz wrote:XFS lagged my computer under very heavy diskusage, ie copying files and running SQL with lots of inserts.
