1. 가상화 기반의 Linux OS 상에서 mkfs를 통해 파일시스템 생성시 종종 아래와 같은 메세지와 함께 파일시스템 작성이 불가능할 경우가 있음
[root@s-node01 /]# [root@s-node01 /]# [root@s-node01 /]# mkfs.ext3 /dev/sdb1 mke2fs 1.39 (29-May-2006) /dev/sdb1 is apparently in use by the system; will not make a filesystem here! |
2. dmsetup 명령을 통해 시스템에서 사용중인 Disk Device 에 대한 상태정보를 확인후 시스템에서 실제 사용중이지 않은 Garbage 정보를 Clear 한 후 파일 시스템 작성이 가능하다.
[root@s-node01 /]# [root@s-node01 /]# dmsetup status VG_XenStorage--050248de--7d7c--28e7--dcde--0ea15f4b3816-MGT: 0 8192 linear VolGroup00-LogVol01: 0 2097152 linear VolGroup00-LogVol00: 0 18612224 linear [root@s-node01 /]# [root@s-node01 /]# [root@s-node01 /]# dmsetup remove_all [root@s-node01 /]# [root@s-node01 /]# dmsetup status VolGroup00-LogVol01: 0 2097152 linear VolGroup00-LogVol00: 0 18612224 linear [root@s-node01 /]# [root@s-node01 /]# [root@s-node01 /]# mkfs.ext3 /dev/sdb1 mke2fs 1.39 (29-May-2006) Filesystem label= OS type: Linux Block size=4096 (log=2) Fragment size=4096 (log=2) 5242880 inodes, 10484412 blocks 524220 blocks (5.00%) reserved for the super user First data block=0 Maximum filesystem blocks=4294967296 320 block groups 32768 blocks per group, 32768 fragments per group 16384 inodes per group Superblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 4096000, 7962624
Writing inode tables: done Creating journal (32768 blocks): done Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 24 mounts or 180 days, whichever comes first. Use tune2fs -c or -i to override. [root@s-node01 /]# |