I have Windows 10 and Ubuntu Budgie on my laptop (dual boot). Windows is on a 1TB HDD drive and Linux (which I mostly use) is on a separate SSD. Previously, I could access my HDD from Windows with all permissions but recently I used the free version of IM-Magic Partition Resizer Free in Windows to change and merge some partitions. Now, the problem is that I lost my write-execute permission on Linux!
cp: cannot create regular file './nima2.ovpn': Read-only file system
I tried some commands I found on the web and his site but none worked. I also tried How do I use 'chmod' on an NTFS (or FAT32) partition? but couldn't make it work.
Here is the data of one of my partitions:
Here is the content of /etc/fstab
:
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sdb during installation
UUID=f3194103-518f-4b51-b3ee-0df649359852 / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sda2 during installation
UUID=B084-4E87 /boot/efi vfat umask=0077 0 1
# swap was on /dev/sda7 during installation
UUID=b337eac3-ac75-44cb-9175-cd9c3dd2b6a9 none swap sw 0 0
/etc/fstab
– Serafim Jun 19 '20 at 21:04/etc/fstab
for the NTFS partition that you want to access. I would find the NTFS Volume Serial Number and create an entry in/etc/fstab
. Even so, if windows is not shut down but just hybernating, then Linux will only mount the NTFS partition as read only so windows has to be shut down to get read/write permission on an NTFS partition. – Serafim Jun 20 '20 at 11:04