linux - How to insert noatime in /etc/fstab CentOS 7? -


this /etc/fstab file:

proc /proc proc defaults 0 0 devpts /dev/pts devpts gid=5,mode=620 0 0 tmpfs /dev/shm tmpfs defaults 0 0 sysfs /sys sysfs defaults 0 0 /dev/md/0 none swap sw 0 0 /dev/md/1 /boot ext3 defaults 0 0 /dev/md/2   /   ext4    usrjquota=quota.user,jqfmt=vfsv0    0   0 

how enable noatime? not know insert string. think is:

/dev/md/1 /boot ext3 defaults,noatime 0 0 

that´s right? or in dev/md/2?

many thanks.

yes, work. makes more sense delete defaults placeholder when add it:

/dev/md/1 /boot ext3 noatime 0 0 

you care more adding mount option slash, though:

/dev/md/2   /   ext4    usrjquota=quota.user,jqfmt=vfsv0,noatime    0   0 

Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -