As you might suspect, that's not good. At this point, you're likely to lose some or all your data as you proceed. If you want to try and save anything, try mounting it read only to see if you can at least copy some stuff off of it.
sudo mount -vsf -t jfs -o ro,nointegrity,errors=remount-ro /dev/sdc1 /mnt/sdc1
I assume you've updated your system so you have the latest version of jfsutils. You should probably run fsck with repairs ( -n just tests ).
sudo fsck.jfs -v -f /dev/sdc1
sudo mount -vsf -t jfs -o ro,nointegrity,errors=remount-ro /dev/sdc1 /mnt/sdc1
I assume you've updated your system so you have the latest version of jfsutils. You should probably run fsck with repairs ( -n just tests ).
sudo fsck.jfs -v -f /dev/sdc1
Comment