Disclaimer could cause loss/corruption of dataHow to taken from
http://forums.linuxmint.com/viewtopic.php?f=42&t=42584&sid=af25013b24d0ee6ee002fc469faf3aecThis does produce a noticeable speed increase, but please heed the warning you could lose or corrupt your filesit is safer on laptops due to having a battery but loss of power on a desktop or server will cause corruption.
okay, still with me? good for the theory behind this, there is good description on the above link.
ok as root edit /etc/fstab in your favourite editor I will use nano in my example
sudo nano /etc/fstab
Now Pardus being friendly as it is, the filesystems have nice labels find your / and if you have a separate /home here is mine
LABEL=PARDUS_SWAP none swap defaults,sw 0 0
LABEL=PARDUS_ROOT / ext4 defaults,user_xattr,noatime 0 0
LABEL=PARDUS_HOME1 /home ext3 defaults,user_xattr,noatime 0 0
proc /proc proc nosuid,noexec 0 0
sysfs /sys sysfs defaults 0 0
debugfs /sys/kernel/debug debugfs defaults 0 0
tmpfs /dev/shm tmpfs nodev,nosuid,noexec 0 0
/dev/sda3 /media/windows ntfs-3g dmask=007,fmask=117,gid=6,locale=en_US.UTF-8 0 0
so where the attributes are we can add further options
data=writeback,commit=60,nobarrier for ext4
data=writeback,commit=60,barrier=0 for ext3
below is my new /etc/fstab
LABEL=PARDUS_SWAP none swap defaults,sw 0 0
LABEL=PARDUS_ROOT / ext4 defaults,user_xattr,noatime,data=writeback,commit=60,nobarrier 0 1
LABEL=PARDUS_HOME1 /home ext3 defaults,user_xattr,noatime,data=writeback,commit=60,barrier=0 0 2
proc /proc proc nosuid,noexec 0 0
sysfs /sys sysfs defaults 0 0
debugfs /sys/kernel/debug debugfs defaults 0 0
tmpfs /dev/shm tmpfs nodev,nosuid,noexec 0 0
/dev/sda3 /media/windows ntfs-3g dmask=007,fmask=117,gid=6,locale=en_US.UTF-8 0 0
finally to enable the new options we have to tell the file system
tune2fs -o journal_data_writeback /dev/sdxx
do this for each partition that you altered in /etc/fstabfinally before you reboot double check your fstab for any errors such as wrapped lines/ no comers or you may not be able to boot, however you can always use a livecd to fix if you do.
notice I have enabled checking the fs too, you dont have to do this but it makes sense to
Once your happy reboot and enjoy