Below is the error I get when I try to run Atom after following this guide:
Asked
Active
Viewed 3,418 times
1
1 Answers
3
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.
-
Hey Redbob, thanks for the solution. sudo chown k:k /home/k/.atom -hR worked. :) – NotThatGood Oct 12 '17 at 14:54
-
.atom
directory unwriteable by running it withsudo
- see Why should users never use normal sudo to start graphical applications? – steeldriver Oct 12 '17 at 11:35