Before resizing a file system it must be unmounted, so you’ll need to create working standalone boot disks.
A few ways you can do it:
1. resize2fs
2. parted
3. Partition Magic 7.x
In all cases, first convert ext3 –> ext2:
tune2fs -O ^has_journal /dev/hdax
e2fsck -v -f /dev/hdax
Resize the partitions with tool of choice.
Convert back to ext3
tune2fs -j /dev/hdax
e2fsck -v -f /dev/hdax
- 0 משתמשים שמצאו מאמר זה מועיל