Below is the error I get when I try to run Atom after following this guide:
41 Answer
To solve this issue, you need to revert permissions to .atom config folder:
sudo chown <user>:<user> /home/<user>/.atom -hRSeeing your image, I presume it's
sudo chown k:k /home/k/.atom -hRIf 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 installThe last line is to install dependencies.
2