I have a problem with my Ubuntu 17 machine, I can't rename or delete any file on my hard drive, I get this error:
Asked
Active
Viewed 7,595 times
1 Answers
2
A Read-Only Filesystem generally occurs when something goes wrong and the system decides it's safest to go read-only.
The solution is to remount the system as read-write.
sudo mount -o remount,rw /partition/identifier /mount/point
You can find the mount point with this command:
mount -v | grep "^/" | awk '{print "\nPartition identifier: " $1 "\n Mountpoint: " $3}'
You might need to unmount if already mounted.

pledab
- 60
- 9