Displaying 1 result from an estimated 1 matches for "my_disk_image".
2007 Dec 19
2
Resizing a Xen DomU disk image
Hello Mailing List!
A quick question.  Has anyone gotten a resize (in my case grown) a Xen
DomU disk image?
Here is the procedure I have followed:
1.  Install a DomU using virt-install
	Customize xvda to be all one partition ext3
2.  On Dom0:
	dd if=/dev/zero bs=1G count=1 >> <my_disk_image>
	ll -h (Image is now 1GB larger)
	xm create <DomU>
    On DomU:
	df -h (Size has not changed)
	shutdown -h now
    On Dom0:
	e2fsck -f <my_disk_image> (Errors Bad Magic...)
	resize2fs -f <my_disk_image> (Errors Bad Magic...)
	xm create <DomU>
    On DomU:
	df -h (Still r...