[Linux] /dev/sdc1 is apparently in use by the system; will not make a filesystem here!

Centos 설치 하고 HDD를 신규로 INSTALL 할때 fdisk 까지 잘 됐는데 아래와 같은 오류 발생

[root@localhost ~]# mkfs.ext4 /dev/sdb1
mke2fs 1.42.9 (28-Dec-2013)
/dev/sdc1 is apparently in use by the system; will not make a filesystem here!

오류 내용을 보면 해당 디스크가 사용중이란다.. 아.. ghost가 있나?
열심히 찾아 본 결과  Disk Device에 대한 Garbege정보가 있어서 그렇단다.
상태를 확인 하기 위해서 해당 명력어 실행

[root@localhost ~]# dmsetup status
pdc_baghiehjhf1: 0 1048576000 linear
pdc_baghiehjhf: 0 3906898048 linear
centos-swap: 0 37748736 linear
centos-root: 0 451878912 linear

보면 붉은 색으로 Garbege가 존재 한다 이를 clear 해주는 명령 실행 후 다시 상태 확인

[root@localhost ~]# dmsetup remove_all
[root@localhost ~]# dmsetup status
centos-swap: 0 37748736 linear
centos-root: 0 451878912 linear

이제 다시 본 작업인 포멧을 해보자

[root@localhost ~]# mkfs.ext4 /dev/sdc1
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
122101760 inodes, 488378385 blocks
24418919 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=2636120064
14905 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,
102400000, 214990848

Allocating group tables: done
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information:

잘된다.. 이거 때문에 몇일 고생 한듯.. 아 아는게 힘이다.


One Response to [Linux] /dev/sdc1 is apparently in use by the system; will not make a filesystem here!

  1. Avatar Deeps
    Deeps says:

    Thanks!