Fix Read-Only NTFS partition in Ubuntu: ======================================= Ubuntu will mount a ntfs partition as read-only due to conflicts with windows, this can be fixed by a two step process: 1: Input this command: (Replace nvme0n1p7 with the right partition) sudo ntfsfix /dev/nvme0n1p5 2. Then un-mount that partition and remount it. You will need sudo if it was mounted with the fstab. You can still use a GUI program for this though or though the command line like this sudo umount /dev/nvme0n1p5 sudo mount /dev/nvme0n1p5 /opt/Media_disk Source: https://askubuntu.com/questions/70281/why-does-my-ntfs-partition-mount-as-read-only#921634 Date: February 18th 2022