
ext3 파일 시스템이 "온라인"으로 확장될 수 있다는 것을 읽었습니다. ext3에서는 마운트된 파티션을 확장할 수 있나요?
테스트에서 이상한 질문을 발견했습니다.
답변1
상당히 최근의 Linux 커널(2.6 시리즈에 추가됨)은 ext3/4 파일 시스템을 온라인으로 확장할 수 있습니다(즉, 마운트된 동안):
localhost root # lvcreate -L100M -n test vg0
Logical volume "test" created.
localhost root # mkfs.ext4 /dev/vg0/test
mke2fs 1.42.13 (17-May-2015)
Creating filesystem with 102400 1k blocks and 25688 inodes
Filesystem UUID: 1d97763f-7a37-41cc-b2a6-c5b2f93a616a
Superblock backups stored on blocks:
8193, 24577, 40961, 57345, 73729
Allocating group tables: done
Writing inode tables: done
Creating journal (4096 blocks): done
Writing superblocks and filesystem accounting information: done
localhost root # mount /dev/vg0/test /mnt/test
localhost root # lvextend -L200M vg0/test
Size of logical volume vg0/test changed from 100.00 MiB (25 extents) to 200.00 MiB (50 extents).
Logical volume test successfully resized
localhost root # resize2fs /dev/vg0/test
resize2fs 1.42.13 (17-May-2015)
Filesystem at /dev/vg0/test is mounted on /mnt/test; on-line resizing required
old_desc_blocks = 1, new_desc_blocks = 1
The filesystem on /dev/vg0/test is now 204800 (1k) blocks long.