You are not logged in.
Pages: 1
Hi,
I've got a Pentium III 350mhz, 96mb ram, 3gig hdd, 3d rage pro video card. Which filesystem would be better suited ext3 or reiserfs? Mainly going to be used for server - php, mysql, apache. Occassionally be used for checking webmail & music playing.
Cheers,
dammit
Offline
reiserfs, ext3, whatever you want really, theres no limitation on what you can use on it.
my linux server's just on ext3 because it was easy and was the 'default' in the installation.
It's a P2 300mhz, 160mb ram.
Offline
What filesystem you choose should be the least of your worries... I personally use ext3 because I've never had issues with it, and pimping your filesystem won't gain you as much performance as, say, using fluxbox instead of KDE.
My /boot part is always ext2 too 8)
Offline
my first instinct was to suggest ext2. it's fast, it has low overhead.
don't use ext3, it's the slowest filesystem available. if you must have a journaled system, and those are your only options, go with reiser. jfs and xfs are also good options.
Offline
My system is only slightly faster (PII 366) and I have tried quite a few things to speed things up, I use reiserfs with defaults,noatime, xfce4 (with kdebase installed for konquorer, but xffm works well) phrakture is right though, the window manager is what matters, give fluxbox a spin, it only takes up about 3 megs.
Offline
I agree...if you have or want a separate /boot partition, I'd go with ext2 at around 100MB or so, and then reiserfs for the rest of your stuff (aside from swap of course). That setup should be what you're looking for...
Offline
thanks guys for reply. I dun think i will have a separate /boot partition. So in the end, there is not much difference in performance between the different filesystem (ext3, ext2, reiserfs) because of my hardware specs? how much do u guys suggest on my swap partition considering 96 ram & 3 gig hdd. cheers.
Offline
thanks guys for reply. I dun think i will have a separate /boot partition. So in the end, there is not much difference in performance between the different filesystem (ext3, ext2, reiserfs) because of my hardware specs? how much do u guys suggest on my swap partition considering 96 ram & 3 gig hdd. cheers.
Well, there's performance differences when comparing each FS type, but the main thing is it's just not going to matter to an end user.
I'd suggest ext2/ext3 because they've been around the longest and are the typical "workhorses".
As for swap, it's standard to make a swap partition twice the size of your ram (there's usually an upper bound, but that doesn't apply here) - so I'd suggest 96x2 = 192MB for swap.
Offline
I'd suggest ext2/ext3 because they've been around the longest and are the typical "workhorses".
That's changing. I'm willing to bet that when reiser4 is made stable, it will become the new standard. I don't think many people use ext2 anymore. Having to run fsck on bootup after unclean shutdown is too uncool and remeniscent of Windows scandisk...
As for swap, it's standard to make a swap partition twice the size of your ram
That's definately not true anymore.
But it was true back when 96MB of RAM wasn't considered 'low spec' so your recommendation still holds.
Dusty
Offline
As for swap, it's standard to make a swap partition twice the size of your ram
That's definately not true anymore.
But it was true back when 96MB of RAM wasn't considered 'low spec' so your recommendation still holds.
Dusty
Damnit! you took that out of context
you missed the "there's usually an upper bound, but that doesn't apply here" - it's like "if(RAM < 512) swap=2*RAM else if(RAM < 1024) swap=1.5*RAM else swap=RAM"
Offline
Damnit! you took that out of context
you missed the "there's usually an upper bound, but that doesn't apply here" - it's like "if(RAM < 512) swap=2*RAM else if(RAM < 1024) swap=1.5*RAM else swap=RAM"
Well its your fault for not speaking in an unambiguous language in the first place. 8)
Dusty
Offline
<--- Ext3 fanboy
It's solid and proven. I posted an Ext3 tweaking guide in the User Contributions forum.
~Peter~
Offline
ReiserFS 3.6 is very fast, even on older systems. Using the notail option with it is supposed to increase performance at the expense of storage efficiency, but I can't really see any difference in speed from using notail.
If you want speed, use a fast WM. Openbox and Fluxbox, for example, are both excellent and very fast WMs. I personally have found the speed of big desktop environments to be more dependent on RAM than CPU speed, and 96 megs is not enough for KDE or GNOME... So if you want a DE, go with XFCE and/or ROX - ROX + *box or some other WM, or said other WM + XFCE, also works (XFCE isn't as tightly integrated as other DEs). Believe me, though, with only 96 megs both Nautilus and Konqueror, never mind KDE's preloading trick, can screw you over badly.
The 3 gig HD shouldn't be a problen, unless you're planning on putting a lot of music on it.
Offline
I ran a test writing 512 M to a USB drive.
ext2fs 31m 50s
ext3fs 13m 45s
reiser 3.6 9m 1s
I use a 32m boot partition with an ext2 file system because it is seldom mounted and a journal is a total waste in such case. I have used a reiserfs since 2001, no problems. I did get stuck with an ext3 drive once and it tried to fsck for some reason. That was the end of ext3 for me. You could make your /boot smaller than 32m, it depends on how many kernel images you need to hold on to.
--(*(cs25x--));
Offline
Using pure reiser4 here with only a 60MB /boot on ext2. I've had no problems.
Offline
ext3 is fast enough for me (provided dir_index is enabled) and I've only had one issue with it -- resizing. Ext3 is a pain to resize. You have to remove this extension and that extension, run a e2fsck and hope it works. I've removed every extension I could one time and I still couldn't resize it using parted. I guess you could use cfdisk if you really need your partition resized.
I've tried all the standard filesystems except JFS and XFS and I ran Reiser4 one time and I actually get better performance with ext3 with dir_index enabled. Reiser4 has all these claims of being so fast and such but it actually runs slower than ext3 and reiser3 for me.
edit: I heard that JFS doesn't take much resources to use, which is why a lot of laptop users use it. I have no clue since I've never run it or plan to run it.
Offline
Wait a minute... Now how do you enable this dir_index thing for ext3? 8)
Offline
Only Reiser 3.6 here on all systems. The idea of using ext2 on a separate small /boot partition makes a lot of sense, though.
Microshaft delenda est
Offline
You only really need /boot if you're going to install more than one distro.
This thing only has a 3gb hdd, so I really doubt he needs to spend the space on a /boot partition.
Offline
Wait a minute... Now how do you enable this dir_index thing for ext3? 8)
Say your ext3 partition is hdaX, then turn on the dir_index thingie
tune2fs -O dir_index /dev/hdaX
and convert all the directories on hdaX to the hashed B-tree format:
e2fsck -fD /dev/hdaX
Use a rescue CD or similar for the latter.
Offline
using a /boot part is good if you want to keep your old kernel for a while. When you discover that 2.6.xyz.foo crashes and burns and segfaults, you need somewhere that you can fall back to. It pays to have a spare partition where you can test before you commit, be it a kernel or udev. For example, 2.6.12 breaks the realtek 8180 driver, so I save a lot of time by using grub and that small boot partition. It is a little bit more work to setup, but that is repaid over the years.
--(*(cs25x--));
Offline
I'm just using a separate /boot partition from habit. I could loose it and not gain anything. Well, I'd have to use lilo instead of grub b/c of the issue with grub and reiser4 but that isn't a big deal.
Offline
using a /boot part is good if you want to keep your old kernel for a while. When you discover that 2.6.xyz.foo crashes and burns and segfaults, you need somewhere that you can fall back to. It pays to have a spare partition where you can test before you commit, be it a kernel or udev. For example, 2.6.12 breaks the realtek 8180 driver, so I save a lot of time by using grub and that small boot partition. It is a little bit more work to setup, but that is repaid over the years.
You dont have to have a /boot partition to have more than one kernel. I usually have more than 3 kernels in my bootloader, dating back to 2.6.9
Offline
Pages: 1