How to Setup ChormeOS for Web-Development

Victor Onuoha Martins
6 min readFeb 17, 2018

--

Visual Studio Code for armhf architecture running on xfce4

Read this article in dark mode, easily copy and paste code samples and discover more contents like this on Devjavu.

Starting anything at all can be really daunting, there’s just a lot to worry about; say, I needed to start a provision store, for example, I’d be worried about how much it would cost to get a shop, what security technology to implement, whether or not I’d have workers, how many workers, would they be short or tall workers, fat or thin….the list is endless.

So I had just gotten the Samsung Chromebook XE303C12 some months back and asked myself the same question you probably are asking yourself; “How on earth do I code on this thing??” .

I found some materials online quite alright but they all seemed to be all over the place, so I decided to put it all together how I would have wanted them.

We’ll go through these major steps

  1. Enable Developer Mode
  2. Before we get our hands dirty (Caret, CodePad, Quantum, Zed)
  3. Chromebrew (Crew)
  4. Install Linux with Crouton
  5. How about an IDE?
  6. Specific Stack?

Enable Developer Mode

In developer mode, you have more control over your chromebook and can basically mess around with it (as well as mess up your chromebook). This process will completely wipe every data on your pc, so you might need to backup.

To put your Chromebook in Developer Mode:

  1. Press and hold the Esc and Refresh keys together, then press the Power button (while still holding the other two keys). This will reboot your Chromebook into Recovery Mode.
  2. As soon as you see Recovery Mode pop up (the screen with the yellow exclamation point ) press Ctrl+D. This will bring up a prompt asking if you want to turn on Developer Mode.
  3. Press Enter to continue, then give it some time. It’ll pop up with a new screen for a few moments, then reboot and go through the process of enabling Developer Mode. This may take a little while (about 15 minutes or so), and will wipe your local information.
  4. When it’s done, it will return to the screen with the red exclamation point. Leave it alone until it reboots into Chrome OS.

note: after switching developer mode, you might see this on every boot (ignore the message) you can skip this by pressing Ctrl+D.

Before we get our hands dirty (Caret, CodePad, Quantum, Zed)

It would be worth stating that there are actually some great text editors you can download from Chrome web Store, Here are some of them I’ve used and think are not so bad:

  1. Caret

2. CodePad

3. Quantum

4. Zed

Chromebrew (Crew) — ChromeOS Package Manager

News flash! ChromeOS currently has no package manager like yum or apt, to install any app, developers have to build from source for specific architectures.

Fortunately Chromebrew helps to bridge this gap a little, with Chromebrew we’re able to install popular packages like git, nano, curl, node (nodejs), mongodb, python, php, apache, nginx, The full package list can be found here.

To install Chromebrew:

Press Ctrl + Alt + T to open up crosh, then type shell (to enter developer shell). then type this command:

wget -q -O - https://raw.github.com/skycocker/chromebrew/master/install.sh | bashORcurl -Ls git.io/vddgY -o install.sh && yes | bash install.sh

That should do the trick. To check that the installation was successful, type in:

crew search 

You should see a list of all the available packages.

To install a package:

crew install package_name

To remove a package:

crew remove package_name

To update all package

crew update

Install Linux with Crouton

  1. Download Crouton from the top of this page (or by clicking here) and save it in your Downloads folder.
  2. Press Ctrl+Alt+T to bring up a terminal on your Chromebook.
  3. At the Terminal, run the following command to enter a Ubuntu shell:
shell

4. Next, run the following command to install Crouton:

sudo sh -e ~/Downloads/crouton -t xfce,xiwi

5. If you’re doing this on a Chromebook Pixel, change it to:

sudo sh -e ~/Downloads/crouton -t touch,xfce,xiwi

The installation process is going to take a while so you could as well go see a movie while it’s at it.

while that’s installing, go over to Chrome web store and install the crouton integration extention

once done, you can start up xfce desktop session with the following command:

sudo startxfce4

you should see a new tab pop up

just pretend you’re on an entirely different machine and explore the possibilities. you can logout to close the xfce4 session.

you can always use the apt package manager to install linux related packages that chromebrew doesn’t give you.

How about an IDE?

At this point you can install my (not your) favourite IDE, Visual Studio Code. However for some chromebook architectures, the 64bit and 32bit version don’t work.

If your chromebook architecture is amd64 or armhf you can head over to this awesome site, here and follow the download instruction.

you should now be able to run VScode in xfce4

Specific Stack?

If perhaps you build with javascript, you might want to install most of the needed tools and packages needed for development (nodejs especially).

Or maybe it’s PHP or Laravel, you can always install php and apache web server via apt and every other needed tools and packages needed for development.

In essence: If apt doesn’t get you a package or tool, try chromebrew (crew)

from your shell you can always switch from Chronos Session to Ubuntu :

#to start the chroot session$ sudo enter-chroot#to exit$ exit

Cheers!!

📝 Read this story later in Journal.

👩‍💻 Wake up every Sunday morning to the week’s most noteworthy stories in Tech waiting in your inbox. Read the Noteworthy in Tech newsletter.

--

--