ich habe ein Live Grml 2013/2 auf einen USB-Stick kopiert und mache damit meine ersten Schritte. Damit kann ich meinen Laptop-Rechner booten. Der X-Server läuft damit, Internetzugang funktioniert noch nicht.
Code: Alles auswählen
~$ sudo fdisk -l /dev/sdb
WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.
Device Boot Start End Blocks Id System
/dev/sdb1 * 0 1497087 748544 17 Hidden HPFS/NTFS
Code: Alles auswählen
~$ sudo gparted
======================
libparted : 2.3
======================
/dev/sdb contains GPT signatures, indicating that it has a GPT table. However, it does not have a valid fake msdos partition table, as it should. Perhaps it was corrupted -- possibly by a program that doesn't understand GPT partition tables. Or perhaps you deleted the GPT table, and are now using an msdos partition table. Is this a GPT partition table?
The backup GPT table is not at the end of the disk, as it should be. This might mean that another operating system believes the disk is smaller. Fix, by moving the backup to the end (and removing the old backup)?
Code: Alles auswählen
$ sudo dd if=/dev/sdb bs=512 count=1 | hexdump
1+0 Datensätze ein
1+0 Datensätze aus
512 Bytes (512 B) kopiert, 0,00168785 s, 303 kB/s
Wie sollte ich das reparieren?