Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
11
rated 0 times [  11] [ 0]  / answers: 1 / hits: 10643  / 1 Year ago, sat, december 3, 2022, 10:28:04

The new Atom 1.0 text editor is now available. But only to 64-bit processors. How I can create a 32-bit version?


More From » compiling

 Answers
3

These instructions assume you have a 32-bit system:



sudo apt-get install build-essential git libgnome-keyring-dev fakeroot rpm libx11-dev libxkbfile-dev


Setup node.js:



curl --silent --location https://deb.nodesource.com/setup_0.12 | sudo bash -
sudo apt-get install nodejs


Clone the Atom repository:



cd
git clone https://github.com/atom/atom


If you need the latest release:



git fetch -p
git checkout $(git describe --tags `git rev-list --tags --max-count=1`)


Now build and install:



cd atom
sudo script/build --create-debian-package


Use sudo above to avoid permission denied errors during the build process. Also, if you have a problem at the build command, run sudo update-alternatives --install /usr/bin/node node /usr/bin/nodejs 10.






Or install Atom via a PPA:



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

[#19370] Sunday, December 4, 2022, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
termetalli

Total Points: 326
Total Questions: 127
Total Answers: 110

Location: Sao Tome and Principe
Member since Sat, Sep 12, 2020
4 Years ago
;