When i create VM from the pre-set Ubuntu images at Azure -- its ok. It looks like:
brutto@app-test-brutto:~$ df -T
Filesystem Type 1K-blocks Used Available Use% Mounted on
/dev/sda1 ext4 30224952 1391464 27298436 5% /
udev devtmpfs 851432 8 851424 1% /dev
tmpfs tmpfs 344108 236 343872 1% /run
none tmpfs 5120 0 5120 0% /run/lock
none tmpfs 860268 0 860268 0% /run/shm
/dev/sdb1 ext4 72246600 331976 68244712 1% /mnt/resource
See at the last line. Resource disk attached as ext4.
But if i create VM from my previously captured image (based on Ubuntu) it looks like:
brutto@app1-test-brutto:~$ df -T
Filesystem Type 1K-blocks Used Available Use% Mounted on
/dev/sda1 ext4 30235684 1242036 27458060 5% /
udev devtmpfs 851432 8 851424 1% /dev
tmpfs tmpfs 344108 248 343860 1% /run
none tmpfs 5120 0 5120 0% /run/lock
none tmpfs 860260 0 860260 0% /run/shm
/dev/sdb1 fuseblk 73398268 99232 73299036 1% /mnt
See at the last line too. Resource disk attached NTFS/fuseblk.
How can i create VM from image with ext4 resource disk?
I've read about /etc/waagent.conf and trying to set this ones:
ResourceDisk.Format=y
ResourceDisk.Filesystem=ext4
ResourceDisk.MountPoint=/mnt
Than reboot but nothing happens.