2

long time Linux user, but can't find an answer to this. The makers of parted/gparted completely ignored my question.

Some time back in slackware, I'd formatted a 2TB with two ext2 partitions, but when I install either Mint or Ubuntu, gparted sees this as a single FAT32 formatted drive.

See print from parted and fdisk below.

Anyone know how to get parted to see my ext2 partitions without moving everything off and repartitioning in parted?

parted:

Model: ATA ST2000DM001-9YN1 (scsi)
Disk /dev/sdb: 2000GB
Sector size (logical/physical): 512B/4096B
Partition Table: loop
Disk Flags:

Number  Start  End     Size    File system  Flags
 1      0.00B  2000GB  2000GB  fat32

fdisk:

Disk /dev/sdb: 1.8 TiB, 2000398934016 bytes, 3907029168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes   
Disklabel type: dos
Disk identifier: 0x3d1c2b39

Device     Boot      Start        End    Sectors  Size Id Type
/dev/sdb1             2048 1719666687 1719664640  820G 83 Linux
/dev/sdb2       1719666688 3907029167 2187362480    1T 83 Linux
muru
  • 207,228

1 Answers1

1

From the comments...

Parted shows the partition table is "loop" which is incorrect. It should indicate "msdos".

Backup your data. Lay down a fresh partition table (GPT recommended), create two new partitions (EXT4 recommended), and restore your data.

heynnema
  • 73,649