Reputation: 1693
I took an c1.xlarge instance in EC2(Ubuntu 12.04) which promised me 1690 Gigs of instance storage. But when I checked the instance, I could only find 450 Gigs of it. What am I overlooking and where?
Upvotes: 5
Views: 2245
Reputation: 8099
For some instances, there is a special block device mapping necessary to mount every available instance storage space. Here is a link to a description on how to mount the extra space so that it also becomes available in your instance.
Upvotes: 4
Reputation: 3448
try cat /proc/partitions command and check if it is attached to your instance. There might be a case where EBS storage is not mounted on your instance however it would be available as attached storage. If you can see 1690 Gigs with above command, you have to mount remaining storage to your instance then only it would be available to your instance for usage and can be seen through df -kh command.
Upvotes: 4