EXT3-fs warning: maximal mount count reached

1908 단어 extuserFile디스크
What should I do when I see the message "kernel: EXT3-fs warning: maximal mount count reached, running e2fsck is recommended"?
 
ext3 파일 시스템 마운트 시스템이 최대 제한을 초과했기 때문에, 다시 시작할 때 디스크 검사를 해야 합니다. 검사할 때
진도가 50.4%가 되면 멈추고 아래의 방법에 따라 해결할 수 있다.
 
Release Found: All releases of Red Hat Enterprise Linux
Note: This will only be seen on file systems the user creates themself post-install, as anaconda will automatically disable both interval checking and mount count checking for all ext3 file systems that it creates. The rational being, these checks are not required for journaled file systems.
Solution: When mounting/path/to/device, a warning is seen "kernel: EXT3-fs warning: maximal mount count reached, running e2fsck is recommended". This is a non-fatal warning. Please follow the following procedure:

1.

2. / rw

mount -o remount,rw /

3.

tune2fs -l /dev/hugwww/data1 | grep ^M 
Mount count:              37  
Maximum mount count:      33

 
4. 디스크 정보 수정
tune2fs -c0 -i0 /dev/hugwww/data1

 
5.Alternatviely, run e2fsck on it, and remount the file system. You will not see the warning again until the maximal count is exceeded.
unmount /dev/hugwww/data1
e2fsck -p /dev/hugwww/data1

 
완성!

좋은 웹페이지 즐겨찾기