Permission denied error when trying to run Atom

Below is the error I get when I try to run Atom after following this guide:

screenshot showing Atom open next to a terminal window

4

1 Answer

To solve this issue, you need to revert permissions to .atom config folder:

sudo chown <user>:<user> /home/<user>/.atom -hR

Seeing your image, I presume it's

sudo chown k:k /home/k/.atom -hR

If this doesn't solve it, I suggest you reinstall Atom using the deb package directly downloaded from Atom site (that's how I installed in my computer):

sudo dpkg -i atom-amd64.deb
sudo apt-get -f install

The last line is to install dependencies.

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like