Changing File System Size
The default file system size for host accounts is 1GB, of which about 500MB is initially free. For users who require more, use procedure below to change the size of the file system for one host account. All commands must be executed as root. In this example, the user's account name is alice and the new file system size is 2GB.
$ xm destroy alice $ /bin/cp -a /home/alice/default.ext3 /home/alice/new.ext3 $ dd if=/dev/null of=/home/alice/new.ext3 bs=1M seek=1999 count=1 $ e2fsck -f /home/alice/new.ext3 $ resize2fs /home/alice/new.ext3 $ mv /home/alice/default.ext3 /tmp/alice.ext3 $ mv /home/alice/new.ext3 /home/alice/default.ext3 $ xm create /var/lib/tycoon/aucd/Xen2/accounts/alice.conf
