I recently upgraded my Ubuntu from 11.10 (Oneiric) to 12.04 (Precise Pangolin) on a Dell Inspiron B130 Laptop. When I run fdisk -l it says that my HD doesn't contain a valid partition table. I have been reading a great deal about proper partitioning that leads me to believe that this is bad, but I have noticed no strange behavior or problems. What are the ramifications of not having a valid partition table?
|
|
||||
|
It is possible to have a filesystem directly on a block device with no partition table on it, and there's nothing intrinsically wrong with that. It just means you can have only one filesystem and nothing else on it (no swap partition, etc...). However, it is unlikely that such a block device is bootable. The bootloader (grub) usually sneaks itself into some free space that results when the disk is split up into partitions, and there would be nowhere to put it without that. So yes, per psusi's comment, the tool must be "wrong". What's possible is that your disk has a GPT partition table and no PC legacy partition table. Another possibility is that |
|||
|
|
|
This is not really a good or bad thing. The error "doesn't contain a valid partition table" does not always actually mean that. You can have a valid partition table at an unrecognized offset and get the same error. For instance:
I run several machines that to achieve disk alignment I start the beginning sector at 4096 (divisible by 8) and create partition 1 starting from this point. or Create LVM without first creating a partition so that it starts from the beginning of the disk and not from the default offset. Example: By default most disks start at sector 63 when you look at them using
-receive the boundary error when modifying the starting sector
-partition table error when adding LVM to a drive without first creating a partition thus no partition table
--> this partition is
Add in your output from This is all supposition without seeing your specific details. Edit: A lot of what I said was contained in Celada's answer (in a more succinct and much easier to read fashion :}). Hopefully my "exposition" has not added to the confusion. |
|||||||
|
parted -l. – psusi May 15 '12 at 1:22