Failed to change read-only flag pycharm in ubuntu

When I try to write something in file it show error

"Failed to change read-only flag from pycharm in ubuntu"

After little bit search I solved the problem; Failed to change read-only flag pycharm in ubuntu. If you’re a Ubuntu user and see a clear read only status issue, it has something to do with chown and chmod of Linux authority control command.

  • Open your terminal where your folder or file located and then enter following command and your only readable issue will be resolved.

...

sudo chown -R yourusername your-project-folder

[Ubuntu] clear read only status issue

Back to Top