I've just installed Ubuntu latest one today (21.04). I don't have any other OS on my laptop, only Ubuntu. I want to edit a text file stored in Part4, which is in NTFS filesystem. But when I edited it I saw that I can't save that as it's showing that the file is in read only. Also I can't delete files from the partition as they return the same issue. What should I do?
Note that I am completely new in Ubuntu, in fact I had windows 10 installed on my laptop till last night when I decided to try something new.
mount
command it'll be by that command, if you used a GUI tool the message may only be found in logs (or an indicator on the screen/gui). The commanddmesg
will show most logs since boot; though if you know when you mounted it; you can searchjournalctl
which for messages around the time/date of your mount. One benefit of commands, is the messages appear both in logs (if needed later) & appear on screen after your command; if you're using a GUI they are in logs only often (you didn't say if 21.04 desktop, or 21.04 server..) – guiverc Aug 01 '21 at 07:20I used this: chmod a+rwx /media/username/Part4 -R
– Kingshuk Chakravorty Aug 01 '21 at 07:46