본문 바로가기
[IT 관련 지식]/[Linux]

파티션 검사 및 복구

by 판톰 2014. 8. 17.
반응형

파일 시스템 또는 ETX3 파티션에 문제가 발생하였을 경우 디스크가 read-only로 올라오거나

서비스가 정상적으로 실행이 안될 수 있으며, 우분투에 경우 부팅시 mount를 못한다는 메세지를 볼수 있다.

우분투경에는 부팅시에 스킵하여 부팅 후 디스크 검사를 하면 된다.

 

1. 파일시스템 상태 확인

# tune2fs -l /dev/xvda1

tune2fs 1.39 (29-May-2006)

Filesystem volume name:   /boot

Last mounted on:          <not available>

Filesystem UUID:          7536ab16-a188-41a9-82b1-54d08f67b8f5

Filesystem magic number:  0xEF53

Filesystem revision #:    1 (dynamic)

Filesystem features:      has_journal ext_attr resize_inode dir_index filetype needs_recovery sparse_super

Default mount options:    user_xattr acl

Filesystem state:         clean    #clean 문제 없는 상태

Errors behavior:          Continue

Filesystem OS type:       Linux

 

# tune2fs -l /dev/sda2

tune2fs 1.38 (30-Jun-2005)

Filesystem volume name:   <none>

Last mounted on:          <not available>

Filesystem UUID:          773a01ef-2bbf-412f-86f9-4131c753788e

Filesystem magic number:  0xEF53

Filesystem revision #:    1 (dynamic)

Filesystem features:      has_journal filetype needs_recovery sparse_super

Default mount options:    (none)

Filesystem state:         clean with errors #파일 시스템 에러

 

 

2. 파티션 검사 및 복구

# fsck.ext3 -y /dev/sda2

e2fsck 1.38 (30-Jun-2005)

/dev/sda2 contains a file system with errors, check forced.

Pass 1: Checking inodes, blocks, and sizes

Inode 309310, i_size is 0, should be 602112.  Fix? yes

Pass 2: Checking directory structure

Pass 3: Checking directory connectivity

Pass 4: Checking reference counts

Pass 5: Checking group summary information

Block bitmap differences:  +(36773--38796) +(4995391--4996509)

Fix? yes

Free blocks count wrong for group #1 (2655, counted=3512).

Fix? yes

Free blocks count wrong for group #2 (31296, counted=31570).

Fix? yes

Free blocks count wrong for group #152 (4250, counted=3131).

Fix? yes

Free blocks count wrong (4775861, counted=4775873).

Fix? yes

/dev/sda2: ***** FILE SYSTEM WAS MODIFIED *****

/dev/sda2: 1305/313344 files (6.5% non-contiguous), 226366/5002239 blocks

반응형