Ubuntu – Can’t mount an IDE HDD – “can’t read superblock” error message

hard drivemount

I'm trying to mount my HDD, /dev/sdb, which is connected via an enclosure but every time I try do so I get an error message

mount: /dev/sdb: can't read superblock

How do I solve this problem and mount my HDD?

Best Answer

Test this:

Connect your Hdd.

Open a terminal,

Press Ctrl+Alt+T

Run it:

sudo -i
fdisk -l

Suppose that fdisk reports that the partition hdd is /dev/sdb1, continue running:

fsck -y /dev/sdb1
Related Question