Fixing NTFS hard drive that refuses to mount

Posted on Nov 8, 2020

This could be that is is not automounting coz of an error to do with bad sectors etc.

1
2
$ yes | sudo pacman -S ntfs-3g

Then

$ sudo ntfsfix /dev/sdX

where /dev/sdX is the Hard Drive e.g /dev/sdd1

Checking the type of your mounted partitions or devices

1
$ sudo blkid /dev/sdd

Where /dev/sdd1 is your

Check your mounted partitions/devices

1
$ cat /proc/mounts

or

1
$ cat /etc/fstab

mount device(hard drive) using terminal

$ sudo mount -t ntfs /dev/sdd1 /mnt

unmount device from using terminal

1
$ sudo umount /dev/sdd1