You are not logged in.
Pages: 1
etc/fstab;
/dev/sda1 /boot ext3 defaults,noatime,nodiratime,data=journal 0 1
/dev/sda2 swap swap defaults 0 0
/dev/sda3 / ext3 defaults,noatime,nodiratime,data=journal 0 1
/dev/sda4 /home ext3 defaults,noatime,nodiratime,data=journal 0 1
/boot/grub/menu.lst;
# (0) Arch Linux
title Arch Linux
root (hd0,0)
kernel /vmlinuz26 root=/dev/sda3 ro vga=775 rootflags=data=journal
initrd /kernel26.img
thats journalling fully enabled right? if not, how can i tell? i want my speed and reliability increase!
Thank you.
Last edited by gav616 (2008-03-31 16:15:56)
Offline
Looks fine, except, the 6th column is a fsck option. fsck looks at the number in the 6th column to determine in which order the filesystems should be checked. (If it's zero, fsck won't check the filesystem). You should probably change them to 1,2,3, etc. rather that 1,1,1.
Offline
none /dev/pts devpts defaults 0 0
none /dev/shm tmpfs defaults 0 0
/dev/cdrom /mnt/cdrom iso9660 ro,user,noauto,unhide 0 0
/dev/dvd /mnt/dvd udf ro,user,noauto,unhide 0 0
/dev/sda1 /boot ext3 defaults,noatime,nodiratime,data=journal 0 1
/dev/sda2 swap swap defaults 0 0
/dev/sda3 / ext3 defaults,noatime,nodiratime,data=journal 0 2
/dev/sda4 /home ext3 defaults,noatime,nodiratime,data=journal 0 3
that ok?
Last edited by gav616 (2008-03-31 17:47:27)
Offline
Pages: 1