... | ... | @@ -2,11 +2,17 @@ |
|
|
|
|
|
Downloadable here: http://cloud.centos.org
|
|
|
|
|
|
Centos 7 works fine, Centos 6.x is missing a package from EPEL called cloud-utils, which is responsible for growing the disk size to the size set by the flavor.
|
|
|
Centos 7 works fine, Centos 6.x is missing packages, which are responsible for growing the disk size to the size set by the flavor.
|
|
|
|
|
|
To install the missing package:
|
|
|
|
|
|
```
|
|
|
yum install -y http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
|
|
|
yum install cloud-utils
|
|
|
``` |
|
|
\ No newline at end of file |
|
|
yum install cloud-utils cloud-init dracut-modules-growroot
|
|
|
```
|
|
|
|
|
|
Now the partition is grown but the filesystem not! To fix that, rebuild the kernel image
|
|
|
|
|
|
```
|
|
|
dracut --force
|
|
|
``` |