0
I have created an EC2 instance with an instance store automatically mounted to it. Although I can use the mounted disk correctly I can fdisk command complains that the disk does not have a valid partition table (here is the output):
Disk /dev/xvdb: 4289 MB, 4289200128 bytes
255 heads, 63 sectors/track, 521 cylinders, total 8377344 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Disk /dev/xvdb doesn't contain a valid partition table
I was curious what cause this and if there is really a partition there what is the type of it?
Try
file -s /dev/xvdb
, throughsudo
if necessary for access. – a CVn – 2015-11-16T18:09:07.900