Okay, the investigation is creeping along. Unfortunately, you didn't quite follow the suggestions in post #17.that is helpful. Now I will go back and reread this a few times while I wait for the sun to come out again and hopefully be able to make enough sense of it to be able to follow these directions properly.
Here are the results:
(clouds coming back.in, gotta shut the puter down for the rest of the day now)
First you needed to run the command:
lsblk -f, to find out what the filesystem was, which in that case was ext4. As mentioned there, it was an example of the use of the command to discover what the filesystem was. Then an explanation was provided for that particular result, not a result for the drive from your machine. In your case, you needed to run that command to discover which filesystem is in use on your external drive.The result shown by that
lsblk -f command on your machine would likely have shown what the filesystem on your external drive actually is, which according to the output in post #20 is exfat. The command needs to be run to see the output.For repair on the exfat filesystem the following command for your external disk: /dev/sdb2 would usually be:
Code:
fsck.exfat -p /dev/sdb2
Check the manual page for that command on your machine with the command:
man fsck.exfat. The following information is usually available for that command for the -p option:
Code:
-p Repair the filesystem without user interaction if it can be done safely.
It may be the case that the version of fsck on your machine does not have that option. If by chance it doesn't, you can perhaps upgrade to the latest version of fsck which hopefully does cover it. By the way, which distro are you running?
Last edited:

