F
Field Nurse
Guest

- Open a terminal program and give yourself super-user (i.e. sudo) permissions. On some systems, that's typing sudo -i, on others it's su -.
- Back up your original hard-drive-configuring fstab file. On Ubuntu, that's accomplished with something like this:
cp /etc/fstab /etc/fstab.original
- Open the fstab file in your text editor of choice, be it gedit in GNOME, Kate in KDE, or nano or pico if you're happier in text only. Using gedit would be this command: gedit /etc/fstab
- Look through the file for the partition line that contains your main system, not your swap partition. You'll likely see "ext3" on that line, instead of "ntfs" or "swap" or the like. Note the two numbers—usually 0 and/or 1s—at the end of that line, and the section just before them, which should list a series of hard drive options like relatime,errors=remount-ro.
- At the end of that comma-separated string, add these two items, making sure to place a comma before them:
noatime,nodiratime
- Save the fstab file, reboot your system. If anything seems busted or wonky, you can copy your fstab file back over and reboot:
sudo cp /etc/fstab.original /etc/fstab