I connected an external (1TB) hard disk drive to my computer. It is automatically mounted on /media/$USER/Seagate
Backup Plus Drive. However this drive has two partitions: an NTFS partition, and an EXT3 partition. Strangely, Ubuntu 20.04 LTS only mounted the NTFS partition on /dev/sdc1
, but it did mount the second Linux partition on /dev/sdc2
. I tried to mount /dev/sdc2
by explicitly using the mount
command, but it failed.
After that, I ran the command fdisk -l
, which detected both partitions on /dev/sdc
. I copy the relevant part of fdisk
output below:
Disk /dev/sdc: 931.53 GiB, 1000204885504 bytes, 1953525167 sectors
Disk model: Backup+ BK
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x44fe9885
Device Boot Start End Sectors Size Id Type
/dev/sdc1 63 643451444 643451382 306.8G 7 HPFS/NTFS/exFAT
/dev/sdc2 643451445 1953520064 1310068620 624.7G 83 Linux
On other Linux platforms (such as RH), I have had no difficulty mounting the second partition on /dev/sdc2
. In fact they all do it automatically. Is there something specific I need to do in Ubuntu 20.04 LTS to mount the second partition?