|
yes and yes
if you are using an kernel prior to 2.4.16 then you need to install it as a module.
It is now in the kernel so you can add support for it, It is listed as experamental, so I don't know if it's a great idea, but you can still load the module.
if it's a module the / partition needs an initrd file, initial ram disk.
if you have it, run tune2fs -j to create the journal file and change ext2 to ext3 in /etc/fstab
LABEL=/ / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
LABEL=/home /home ext3 defaults 1 2
this command will show if it is working
cat /proc/mounts
/dev/root / ext3 rw 0 0
/dev/md1 /boot ext3 rw 0 0
/dev/hdb5 /home ext3 rw 0 0
or this the md0 and md1 are raid..
cat /etc/mtab
/dev/md0 / ext3 rw 0 0
/dev/md1 /boot ext3 rw 0 0
/dev/hdb5 /home ext3 rw 0 0
Last edited by DavidPhillips; 12-25-2001 at 08:16 PM.
|