0

I have ownership access to files, but still paste option is disabled. I tried to change it with sudo, and got another error: no such file or directory

chmod throws Read-only file system error.

enter image description here

Also , I have mounted this drive as root, again no such file or directory was error was there.

Kulfy
  • 17,416
  • 26
  • 64
  • 103
  • What is the output of `mount | grep /media` and `ls -l /WinRadius.rar`? – Kulfy Apr 25 '19 at 13:46
  • Possibly related: https://askubuntu.com/questions/809237/how-to-fix-the-destination-is-read-only-error-on-hdd-partition – Terrance Apr 25 '19 at 13:47

1 Answers1

1

When you remount the filesystem you have to make sure that you mount it as Read-Write.

sudo mount -o rw [Partition] [Target directory]

for example:

sudo mount -o rw /dev/sdb2 /mnt/data

Freygeist
  • 11
  • 2