3.9.2. noatime으로 마운트하기
파일 시스템이 마운트되어 있을 경우
noatime
Linux 마운트 옵션을 지정할 수 있으며, 이는 파일 시스템에서 atime
업데이트를 비활성화합니다.
3.9.2.1. 사용법
mount BlockDevice MountPoint
-o noatime
BlockDevice
- GFS2 파일 시스템이 위치할 블록 장치를 지정합니다.
MountPoint
- GFS2 파일 시스템을 마운트할 디렉토리를 지정합니다.
3.9.2.2. 예시
예에서, GFS2 파일 시스템은
/dev/vg01/lvol0
에 위치하고 있으며 atime
업데이트를 비활성화하여 /mygfs2
디렉토리에 마운트되어 있습니다.
mount /dev/vg01/lvol0 /mygfs2 -o noatime