Questions tagged [atom]

Atom is a free and open-source text editor by GitHub, that aims to be a "Hackable text editor for the 21st century". It includes features such as syntax highlighting (which is available for a wide range of different programming/markup languages), spell-check, autofill, etc.

Atom is a free and open-source text editor, licensed under the MIT license, that is developed by GitHub. Its first stable release (1.0) was on the 25th of June 2015, although preview releases had been available for some time before then. Its installation is usually simple, but it requires a recent release of Node.js which can make things more complicated. It is available from the webupd8team PPA, although installing from source and from 64-bit deb packages provided on their website are also viable options.

Installation

Installing Atom can be done via three major methods, on Ubuntu. The first, which is only possible on 64-bit systems, is to download the deb package provided on their website and then install it either via the Ubuntu Software Center or by running:

sudo dpkg -i atom-amd64.deb

from the command line. This installation will need to be manually updated every time a new release becomes available. That is, one will need to download the deb package from this website, again, and re-run the above command to update the existing installation.

Secondly, Atom may be installed from the webupd8team PPA, which can be performed by running:

sudo add-apt-repository ppa:webupd8team/atom
sudo apt-get update
sudo apt-get install atom

This installation will be automatically updated every time a new release becomes available and one runs the software updater.

Thirdly, Atom may be installed from source. This method is usually the most time-consuming (easily taking over an hour, but most of this will be automated, requiring no user input) and liable to errors. Firstly, one must get the dependencies, by running:

sudo apt-get install -y build-essential git libgnome-keyring-dev fakeroot
curl -sL https://deb.nodesource.com/setup_0.12 | sudo bash -
sudo apt-get install -y nodejs

then get the source code:

git clone https://github.com/atom/atom
cd atom
git fetch -p
git checkout $(git describe --tags `git rev-list --tags --max-count=1`)
script/build
sudo script/grunt install

This installation will not self-update, hence this must be done manually. To update a source installation manually, run (from the atom source directory):

git remote add upstream https://github.com/atom/atom.git
git fetch -p
git checkout $(git describe --tags `git rev-list --tags --max-count=1`)
script/build
sudo script/grunt install

the first of these lines can be omitted after you update the first time.

External links

116 questions
54
votes
12 answers

How to automatically update Atom editor?

Automatic update of Atom feature is not yet supported for Ubuntu. From their GitHub repository: Currently only a 64-bit version is available. Download atom-amd64.deb from the Atom releases page. Run sudo dpkg --install atom-amd64.deb on the…
Igor V.
  • 948
  • 2
  • 9
  • 16
18
votes
2 answers

Installing Atom text editor on 32-bit Ubuntu

The Atom text editor, newly introduced by the GitHub team, looks like "a hackable text editor for the 21st Century", and I must say, the screenshots have lured me. Official binaries are only available for OS X. After going open-source many have…
user280208
10
votes
4 answers

How to open a terminal from within Atom?

I'm currently working with Atom, and sometimes I want to open a terminal on the directory my working file is. To do this, I usually have to open the folder in nautilus (right clicking the file in atom) and then I open a terminal on that directory…
lapisdecor
  • 1,647
  • 5
  • 19
  • 39
7
votes
2 answers

ubuntu 17.10 & Firefox DPI Scaling

I'm using Ubuntu 17.10 on a Dell XPS 13 with a 3200x1800 screen and while most native applications seem to scale okay using the "Scale" option in my display settings, Firefox seems to render at a lower resolution and "scale up", causing all graphics…
7
votes
3 answers

How I can create a 32-bit version of Atom?

The new Atom 1.0 text editor is now available. But only to 64-bit processors. How I can create a 32-bit version?
Jorge B.
  • 483
7
votes
2 answers

How to uninstall Atom on Ubuntu 17.10?

I am looking for a way to uninstall Atom on Ubuntu 17.10. Is there any script for it? I want to completely uninstall Atom from my machine.
Midhun
  • 173
  • 1
  • 1
  • 6
6
votes
1 answer

Intel Atom N270/N280 processors - 32-bit or 64-bit OS Compatible?

I have a netbook with either an Intel Atom N270 or N280 Processor. Curious to know whether 64-bit OS will run or is it just 32-bit compliant?
6
votes
1 answer

Disable autocompletion in Atom

So I just recently got into coding (Python) and I am using Ubuntu 16.04 and the Atom text editor. A very annoying feature is the auto-completion. For example, I type in x (a variable I set previously) and when I press enter to get to the next line,…
6
votes
2 answers

How can I open a folder in Atom editor directly from within my file manager's context menu?

Is it possible to extend the context menu as follows?
orschiro
  • 13,687
5
votes
1 answer

Where can I find the Atom installation directory?

I am running Ubuntu 15.10. After downloading the Atom editor, I can not find where exactly on my system it is installed. I tried running which atom /usr/bin/atom However, after navigating to the /bin directory, I can only find a text file named…
abruzzi26
  • 153
5
votes
1 answer

How to use Atom's LaTeX package?

I'm very newbie, please don't annoy for my question. I've installed LaTeX using apt-get install texlive-full but really don't know where it has been installed. As from Atom's LaTeX package needs TeX distribution's bin directory, so I tried to find…
Bluenex
  • 173
5
votes
4 answers

Atom text editor gone after update to 20.10, error: Depends: gvfs-bin but it is not installable

Today I succesfully upgraded to Ubuntu 20.10. However, I noticed that the Atom text editor that I use was gone after the update. So, I tried installing it using sudo apt install atom. That didn't work and threw the following error: Some packages…
Douwe
  • 63
4
votes
2 answers

Trying to install Atom. Unable to start Clangd language server

I am fairly new to Ubuntu. I am trying to set up Atom to write code with C++ and I get this: Tried to spawn process using executable /usr/bin/clangd, which does not exist. Ensure you have correctly configured the path to Clangd in the package…
4
votes
1 answer

The 'terminal-plus' package for Atom editor doesn't work

I am using Atom editor on ubuntu 14.04 LTS 64 bit and I installed terminal-plus package. I can create a new terminal but I cannot write into it as you see in the screenshot below PS: I don't know if it's related to this error: Uncaught TypeError:…
zeroday
  • 41
4
votes
2 answers

Atom text editor; Shortcuts for moving to bottom of file, moving to end of line

How do I move to the bottom of a file, top of a file, end of a line and beginning of a line in the Atom text editor (atom.io)? I can not find any shortcuts for that text editor. Only shortcuts for OSX.
phez1
  • 155
  • 1
  • 1
  • 6
1
2 3 4 5 6 7 8