Ubuntu – Repair ext3 partition on external disk from Ubuntu 10.10

ext3Ubuntu

Currently, what is the best way or tool to repair an ext3 partition?

There used to be fsck, but the disk is an external USB, and using the latest Ubuntu 10.10, I wondered if there might be a new tool that helps?

Best Answer

You can use fsck that works well, go in runlevel 1 :

init 1

Unmount your usb drive :

umount /dev/sda3

Run fsck :

fsck -t ext3 /dev/sda3
fsck -y /dev/sda3

Once fsck finished, remount the file system and go in multiusermode