So this is a tweak that I discovered a while ago, and it seems to me to speed things up a little bit. Boot time feels a little faster, but regular mucking about just feels slightly more responsive. The "tweak" involves the access time - the time in a files properties that it was last accessed. Every single time a file is accessed, read, or written to, it is both a read and a write event, and writing takes up a lot more cpu time than just reading alone. So we can add the noatime option in fstab to stop this silly function from wasting time! Open a terminal (I use guake usually) and type (or copy and paste):
$sudo nano /etc/fstab
Then hit enter. You will get something like this (though instead of large random strings of characters you may see labels like sda1, that's fine - though I address that here which is a separate tweak).
Now look for the partition with a mount point that's just a simple slash like this "/" without the quotes. Move over to the "options" section of that partition, and after "default" type:
,noatime
That's a comma, NOT a period, and there is no space between noatime and the comma. Now just ctrl+o to save, then ctrl+x to exit nano, and reboot to take effect. Done!
Now, some say that noatime can cause a few issues with certain programs like email and the like though I haven't had any issues myself, but if you want to be sure no issues will crop up, use:
,relatime
This means that instead of never logging any times in your files, your system will instead log the last time each file was modified/changed. This may not be necessary, but that's up to you.
No comments:
Post a Comment