mount시 아래와 같이 에러가 발생되는 경우
maximal mount count reached running e2fsck
1: 먼저 해당 파티션의 mount count를 확인한다.
1 2 3 |
<span style="font-size: 12pt;">[root@xinet ~]# tune2fs -l /dev/sdc1 | grep ^M Mount count: 60 Maximum mount count: 38</span> |
max count보다 현재 count가 더 많으므로 해당 파티션의 파일 시스템을 체크
진행해야 한다
명령어는 e2fsck
2: 마운트가 되었있다면 umout 후 e2fsck 명령어로 파일시스템 점검
1 |
<span style="color: #ffffff; font-family: tahoma, arial, helvetica, sans-serif;"><span style="font-size: 13.3333px; line-height: 19px;">[root@xinet ~]# umount /backup</span></span> |
1 2 3 4 5 |
<span style="color: #ffffff; font-family: tahoma, arial, helvetica, sans-serif;"><span style="font-size: 13.3333px; line-height: 19px;">[root@xinet ~]# e2fsck -p /dev/sdc1 /dev/sdc1 has been mounted 60 times without being checked, check forced. /dev/sdc1: /lost+found not found. CREATED. /dev/sdc1: 221712/6553600 files (0.2% non-contiguous), 6009258/13107024 blocks</span></span> |
1 2 3 |
<span style="color: #ffffff; font-family: tahoma, arial, helvetica, sans-serif;"><span style="font-size: 13.3333px; line-height: 19px;">[root@xinet~]# tune2fs -l /dev/sdc1 | grep ^M Mount count: 0 Maximum mount count: 38</span></span> |
3: maximum mount count를 증가하려면 그리고 다시 mount 진행하면 된다
1 |
<span style="color: #ffffff;"><span style="font-size: 13px; line-height: 19px;">[root@xinet ~]# tune2fs -c 30 /dev/sdc1</span></span> |
[root@xinet ~]# mount /dev/sdc1 /backup