Quantcast
Channel: Web Upd8 - Ubuntu / Linux blog
Viewing all articles
Browse latest Browse all 824

Things To Do After Installing Ubuntu On A Chromebook Using Crouton

$
0
0
Yesterday I wrote about installing Ubuntu on your Chromebook using Crouton. However, Crouton only installs a few apps so here's what you should install on your new Ubuntu installation running on top of Chrome OS and a few thing that you may want to fix, like the brightness and volume keys or how to get Ubuntu Software Center to work.

Note: Below I'll only cover Unity and Xfce but there are some generic tips as well.


1. Install extra applications


Ubuntu installed using Crouton ships with just a few apps (file manager, Xterm and a couple more) so let's install some extra applications.

For Unity, I recommend installing gnome-terminal, file-roller and Gedit. Open Xterm and install them using the following commands:
sudo apt-get install gnome-terminal file-roller gedit

For Xfce, you'll want a text editor (leafpad) and a music player (I recommend Audacious):
sudo apt-get install leafpad audacious

And for both Xfce and Unity, you'll probably want to install a video player (VLC), ubuntu-restricted-extras as well as the Ubuntu Font, Ubuntu Software Center which you can later use to install many other applications and Synaptic (in case USC doesn't work for you):
sudo apt-get install vlc ubuntu-restricted-extras ttf-ubuntu-font-family software-center synaptic


Important note: don't launch Ubuntu Software Center from the menu / Dash. You must run it with "gksu" - either edit its desktop file or simply open a terminal and type:
gksu software-center
If you don't do this, Ubuntu Software Center will start, but you won't be able to install any applications using it. The application screenshots in USC don't seem to work though.

If you're using an ARM Chromebook, note that not all applications support ARM. You can install GIMP, LibreOffice and so on but you won't be able to install Skype or Steam for example.


2. Updating the chroot


Ubuntu may stop working after a Chrome OS update. If that's the case, update all the installed targets using the following command (in Chrome OS, open a terminal using Ctrl + Alt + T, then type "shell"):
sudo sh -e ~/Downloads/crouton -u -n chrootname
Where "chrootname" is the name of the chroot you want to update. The default chrootname is the codename for the Ubuntu version you've installed (regardless of the desktop environment you've installed). For example, if you've installed Ubuntu 12.04 Precise, the default chrootname is "precise".


3. Xfce tweaks


On Xfce, I suggest changing the GTK/icon theme and enabling font anti-aliasing because the defaults are kind of ugly. You should also remove Xscreensaver as it causes issues.

Before:


After:



To fix the font, open Settings Manager > Appearance, on the "Fonts" tab check the "Enable anti-aliasing" box and under "hinting", select "slight":


You may also want to change to the Ubuntu Font which you've installed if you've followed all the steps in our previous article. If you didn't install it already, use:
sudo apt-get install ttf-ubuntu-font-family

To change the GTK theme (tested on Ubuntu 13.10, Numix may not be available for older releases):
  • Settings Manager > Appearence > Style: select Numix or Greybird;
  • Settings Manager > Window Manager > Style: select Numix or Greybird.

Install the Xubuntu icon theme (in the Xfce4 terminal):
sudo apt-get install xubuntu-icon-theme

To change the icon theme (default is Tango, at least under Crouton with Ubuntu 13.10): Setting Manager > Appearance > Icons: select Elementary Xfce dark.

To remove XScreensaver which causes some issues, use the following command (in the Xfce4 terminal):
sudo apt-get remove xscreensaver


4. Fix brightness and volume keys


By default, the brightness and volume keys don't work. To fix them, you can install the "keyboard" target. Exit Ubuntu, open the Chrome OS terminal by pressing Ctrl + Alt + T, then type "shell" and then use the command below:
sudo sh -e ~/Downloads/crouton -r ubuntuversion -t keyboard -u
Where "ubuntuversion" is the Ubuntu version you've installed ("precise", "saucy", etc.)

This will add the "keyboard" target to the existing chroot.

Then, start Ubuntu and use:
  • Search key + volume keys to change the volume;
  • Search key + brightness keys to change the brightness.

For me (on HP Chromebook 11), the volume keys worked but the brightness keys didn't work properly under Unity (both volume and brightness keys worked under Xfce).

If this occurs for you too, there's another tweak you can use. Crouton installs a brightness script you can use to change the brightness. You can do this either via a terminal:

-increase the brightness:
brightness up
-decrease the brightness:
brightness down


Or you can assign keyboard shortcuts for the two commands mentioned above: System Settings > Keyboard > Shortcuts tab > Custom Shortcuts: click "+" and:
  • for increasing the brightness: under "Name" enter "Brightness Up" and under command: "brightness up";
  • for decreasing the brightness (click "+" again): under "Name" enter "Brightness Down" and under command, use: "brightness down".
Then, assign these custom shortcuts the brightness keys (you can directly assign the brightness keys or use Search key + brightness keys, so it's consistent with the volume keys).

For more tips, see Crouton's GitHub readme | wiki.

Viewing all articles
Browse latest Browse all 824

Trending Articles