I'm stuck mounting an SSD, which is pre-formatted as ext4, via SATA to USB cable. However it gives the error:
mount: wrong fs type, bad option, bad superblock on /dev/sdc,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
This problem does not happen when plugging the SSD directly to the drive bay of the laptop. The problem is also not the cable, because it can mount a HDD formatted as FAT32.
It seems to me that you're attempting to mount the device and not the right partition.
Please update your question as to see the mount command you are executing.
Make sure you don't have an USB memory stick, that is taking /dev/sdc
Execute this command to see all the partitions and paste the output:
Assuming /dev/sdc is the right one, print the partition table to make sure which one is the right one to mount:
For example:
Cheers
You don't mount "/dev/sdc", that's the disk. The partition should be "/dev/sdc1" or some other number.
regards.