31

How to fix The destination is read-only error on HDD partition with Windows 8.1 dual boot?

enter image description here
Error while copying to ntfs partition

enter image description here

mook765
  • 15,925
VJ Ranga
  • 1,469
  • 1
    Mount it read-write. – dadexix86 Aug 07 '16 at 13:53
  • how can i do this – VJ Ranga Aug 07 '16 at 13:56
  • Start by posting a screenshot of Gparted. – dadexix86 Aug 07 '16 at 13:57
  • what i can't understand this please explain – VJ Ranga Aug 07 '16 at 14:04
  • Open Gparted (install it if not yet there), then take a screenshot of your disk, upload it to a sharing website like imgur and put here the link. – dadexix86 Aug 07 '16 at 14:13
  • Install gparted from the Software Center or by running apt-get install gparted. Then launch it and post a screenshot of it. – Mörkö Aug 07 '16 at 14:14
  • http://i.stack.imgur.com/EEX0v.png – VJ Ranga Aug 07 '16 at 14:21
  • then what can i do? – VJ Ranga Aug 07 '16 at 14:22
  • 1
    please tell me what do now – VJ Ranga Aug 07 '16 at 14:41
  • I couldn't get the usb stick I wanted to use usable either. None of the suggestions worked, either the stick was reformatted and then the system would no longer mount it or the stick remained 'read only'. I found a solution. I formatted the stick to FAT32 in my Apple that runs OSX High Sierra. After that, my Linux machines can read and write to it. I find it weird that this is the only working solution. I am not a power user, I just use Linux to extend the life of my aging hardware. Jumping through loops like this to get a usb stick to act like a usb stick doesn't help. – Arthur Swart Oct 09 '18 at 12:15

4 Answers4

68

For me the solution was quite simple:

killall nautilus

First I tried with gpart and disk utilities to erase the partition but the problem still there, I saw answers about mount by hand or about win solutions but it doesn't make sense for me because my usb was created with an image of ubuntu with dd!. At the end, it seems to be a nautilus's bug. Just restart your PC or kill your nautilus and the problem will gone.

Rodrigo
  • 781
9

I have the same issue and tried almost everything. Fortunately, found a solution to the problem from this thread : Read-only partition, dual boot WIn10

The Windows 10 update reseted it to the default fast startup which is a form of hibernation.

You need to disable this feature (again, probably) in Windows and then shutdown, not reboot. Once done properly you'll be able to access the data partition normally with read/write permissions.

How to disable hibernate on windows : https://www.cnet.com/how-to/how-to-enable-or-disable-hibernate-in-windows-10/

6

Open the terminal (MAKE SURE THAT YOU DON'T HAVE ANYTHING OPEN THAT USES THAT DRIVE!) and then type:

sudo mount -o remount,rw  /dev/sda3

Now you should have the drive mounted as read-write. If not, then try:

sudo mount -f -o remount,rw /dev/sda3

or sudo umount /dev/sda3 sudo mount -rw /dev/sda3

If the umount was successful but the mount after it was failed try to put at the last mount command in this answer, in front or after the -rw argument -f to force the operation.

(NOTE: I HAVEN'T TRIED THIS BUT I'VE USED THESE COMMANDS AT MY OWN PROBLEMS LIKE THIS BUT ONLY SOME OF THEM ARE WORKING. FOR ME THIS WAS HAPPEN A WHILE AGO AND I CAN'T REMEMBER THE EXACT SAME COMMANDS THAT I USED TO FIX THE PROBLEM AND THERE CAN BE SOME SYNTAX ERRORS AT SOME COMMANDS AND I CAN MISSED SOME COMMANDS THAT CAN FIX YOUR PROBLEM.)

Videonauth
  • 33,355
  • 17
  • 105
  • 120
ThonkDifferent
  • 1,155
  • 1
  • 8
  • 13
6
sudo mount -o remount,rw /dev/sdd1

replace sdd1 with your hdd or pendrive.

To check which one is yours type in terminal:

lsblk

and find your drive there and notice the device or partition and replace yours in above command.

this might work :)

note: "replace partition not disk"

PRO
  • 71
  • 1
  • 2