Hello all,
I’ve problems to mount my GPT partitioned USB Hard Drive. I’m using Suse Dartmouth 12.3. I can see the device in /dev/ but not the partitions on it. There are 4 partitions on it.
- Boot Grub for GPT,
- SWAP,
- SYSTEM (ext4) mounted at /
- and an additional for files mounted at /2ndDisk
I need to get the data from /2ndDisk (2,7 TB file space)
fdisk -l /dev/sdc shows me
fdisk -l /dev/sdc
Hinweis: Die Sektorgröße ist 4096 (nicht 512)
Disk /dev/sdc: 3000.6 GB, 3000592965632 bytes
255 Köpfe, 63 Sektoren/Spur, 45600 Zylinder, zusammen 732566642 Sektoren
Einheiten = Sektoren von 1 × 4096 = 4096 Bytes
Sector size (logical/physical): 4096 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x00000000
Gerät boot. Anfang Ende Blöcke Id System
/dev/sdc1 2048 1028095 4104192 83 Linux
/dev/sdc2 1028096 11517951 41959424 82 Linux Swap / Solaris
/dev/sdc3 * 11517952 84920319 293609472 83 Linux
/dev/sdc4 1 1 4 ee GPT
Partitionstabelleneinträge sind nicht in Platten-Reihenfolge
That’s the output from parted
# parted -l /dev/sdc
Model: ATA WDC WD30EZRX-00D (scsi)
Disk /dev/sda: 3001GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt_sync_mbr
Number Start End Size File system Name Flags
1 1049kB 5964MB 5963MB bios_grub
2 5965MB 12,0GB 5989MB linux-swap(v1)
3 12,0GB 53,8GB 41,8GB ext4 boot, legacy_boot
4 53,8GB 3001GB 2947GB ext4 primary
Error: /dev/sdc: unrecognised disk label
Model: WDC WD30 EZRX-00DC0B0 (scsi)
Disk /dev/sdc: 3001GB
Sector size (logical/physical): 4096B/4096B
Partition Table: unknown
Warning: Unable to open /dev/sr0 read-write (Das Dateisystem ist nur lesbar).
/dev/sr0 has been opened read-only.
Error: Can't have a partition outside the disk!
Model: TSSTcorp CDDVDW TS-T633A (scsi)
Disk /dev/sr0: 4534MB
Sector size (logical/physical): 2048B/2048B
Partition Table: unknown
And another one:
# sfdisk -luS /dev/sdc
Festplatte /dev/sdc: 364801 Zylinder, 255 Köpfe, 63 Sektoren/Spur
Einheit = Sektoren von 512 Bytes, Zählung beginnt bei 0
Gerät boot. Anfang Ende #Sektoren Id System
/dev/sdc1 2048 1028095 1026048 83 Linux
sfdisk: Anfang: (c,h,s) erwartet (0,32,33) gefunden (1023,254,63)
sfdisk: Ende: (c,h,s) erwartet (63,253,62) gefunden (1023,254,63)
/dev/sdc2 1028096 11517951 10489856 82 Linux Swap / Solaris
sfdisk: Anfang: (c,h,s) erwartet (63,253,63) gefunden (1023,254,63)
sfdisk: Ende: (c,h,s) erwartet (716,244,40) gefunden (1023,254,63)
/dev/sdc3 * 11517952 84920319 73402368 83 Linux
sfdisk: Anfang: (c,h,s) erwartet (716,244,41) gefunden (1023,254,63)
/dev/sdc4 1 1 1 ee GPT
sfdisk: Anfang: (c,h,s) erwartet (0,0,2) gefunden (0,0,1)
sfdisk: Ende: (c,h,s) erwartet (0,0,2) gefunden (1023,254,63)
When I try to mount my 2.7 TB partition - seems to be sdb3 with fdisk - I’m getting this:
# mount -t ext4 /dev/sdc3 /mnt/
mount: special device /dev/sdc3 does not exist
Please help me out. How can I mount the partitions?
Thank you!