You can mount file systems with the noatime option. It will prevent inode access times from being updated. Please note that use noatime only when file update times are not critical. Backup client software also use file last update time to sync with backup server. However, the following type of servers may work without problem:
a] Squid caching file
b] News server
c] Web servers etc.
/etc/fstab File
Edit /etc/fstab file and update it as follows:/dev/sdXY /mount-point ext3 defaults,noatime 1 2OR
/dev/md1 /var ext3 defaults,noatime 1 2OR just remount the same from command
mount LABEL=/var -o noatime,nouser,remount,rwWhere,
- noatime - Do not update inode access times on this file system.
Recommend readings:
man 8 mount
No comments:
Post a Comment