08-29-2018, 10:00 PM
The disk is NTFS formatted, you should format it for Linux (eg. ext4).
If there is some data that you want to save, then use Windows and copy that
data into some other disk (or USB stick for example).
Then connect the drive to Linux and
Open terminal, then:
And there you have it...
Unplug it and plug it back, it should work now
If there is some data that you want to save, then use Windows and copy that
data into some other disk (or USB stick for example).
Then connect the drive to Linux and
Open terminal, then:
Code:
sudo su
Code:
umount /dev/sdb1 >/dev/null 2>&1; sync; mkfs.ext4 -t ext4 /dev/sdb1
And there you have it...
Unplug it and plug it back, it should work now