Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing Emacs in the terminal on Chrome OS [closed]

Chrome OS has vim preinstalled. I would like to add Emacs in terminal mode. I have not found any leads by searching the internet. My question is:

How I can Install software locally on Chrome OS?

like image 986
ewm Avatar asked Dec 17 '11 12:12

ewm


People also ask

Does Emacs work on Chromebook?

Emacs is the ideal software for a Chromebook. They are cheap lightweight computers that are perfect for writing on the go.

Why is my terminal not working Chromebook?

Your Chromebook may not launch Terminal if the Linux environment isn't working correctly in the background. Reboot the Linux virtual machine to fix the problem. Right-click the Terminal icon in the Shelf or app launcher and select Shut Down Linux. Relaunch Terminal or any Linux app to restart the Linux environment.

Can ChromeOS run Terminal?

The Terminal is the main entry point into Linux on ChromeOS and the main way for you to interact with the development environment by running command line tools. We understand that the Terminal is a crucial tool for developers and are committed to improving developer experiences on ChromeOS.


2 Answers

ChromeOS is not derived from Ubuntu. I don't think you can install any software on it unless it's a pure web app. BTW, if you wish to have a nice editor to write code try cloud9 (or some other online editors/IDE that gives you powerful options to develop). Here is a short post I've wrote on the options we have today in ChromeOS: http://greenido.wordpress.com/2011/07/04/web-developers-and-the-new-chromebook/

like image 55
Ido Green Avatar answered Sep 27 '22 03:09

Ido Green


@Ido It is not Ubuntu, but I do believe it is derived from Ubuntu. It is definitely Linux, and follows a lot of the Ubuntu/Debian conventions. Supposedly you can install qemacs on a chrome os device with the following steps.

  1. Boot into developer mode.
  2. Get to the console with cntl-alt-f2.
  3. "sudo su -" to become super user.
  4. Run "dev_install", which will install the portage package management tools.
  5. Run "emerge qemacs" to install emacs.

That's the theory, anyway. There appear to be some unresolved bugs with dev_install.

like image 29
TKH Avatar answered Sep 26 '22 03:09

TKH