0

The problem is I have encountered that I cant write into my windows 11 drives from Ubuntu 22.04 drives. I have checked to disable fast startup in windows 11 but there was no success. Any other method that would work?

I simply double click on the drives on the menu bar in the left panel. Then checking if i can create folder and it has been grayed out. Moreover pasting something copied from Ubuntu home folder is sending a no permission message. I had access, but i do not know what happened suddenly I lost write access to my windows drives. Read access is available.

David DE
  • 2,316
V.Ajall
  • 31

1 Answers1

1
  1. Ensure the ntfs-3g package is installed. In a terminal, run:
sudo apt update
sudo apt install ntfs-3g
  1. Mount manually the Windows partition. You must first get its corresponding device, e.g., using sudo fdisk -l. Let's assume that this is /dev/sda2 and you want to mount it in /media/windows:
sudo umount /dev/sda2
sudo mkdir -p /media/windows
sudo mount /dev/sda2 /media/windows

This last command may explain that the NTFS filesystem is readonly because Windows is in hibernation did not completely unmounted this partition. If you are in this situation, boot your Windows, and due a "true" shutdown. See Unable to mount Windows (NTFS) filesystem due to hibernation