Gangmax Blog

Notes of Installing Ubuntu 16.04 Xenial

This is a summary notes when I install the Ubuntu Xenial environment.

Input method

From here.

In Xenial, the default keyboard input method system is “fcitx”. However I want to use “IBus”. In “Language Support” you can change it. After that, you need to install “ibus-pinyin” to use “pinyin” input method:

1
sudo apt-get install ibus-pinyin

A logout is needed to make it take effect.

Terminal

Follow the instructions in the “Set the position and size of gnome-terminal” post.

Share folder

Follow the instructions in the “Notes of Installing Ubuntu 14.04.1 AMD64 on Virtualbox” post.

Disable overlay scrollbars

Follow the instructions in the “Notes of Installing Ubuntu 14.04.1 AMD64 on Virtualbox” post.

Fonts

Follow the instructions in the “Notes of Installing Ubuntu 14.04.1 AMD64 on Virtualbox” post.

1
sudo apt-get install fonts-wqy-microhei fonts-wqy-zenhei ttf-wqy-microhei ttf-wqy-zenhei xfonts-wqy

Install packages

1
2
sudo apt-get install htop dkms ibus-pinyin alacarte
sudo apt-get install vim git subversion unrar meld shutter imagemagick goldendict zim

zsh

Follow the instructions in the “Zsh Again” post.

JDK

Follow the instructions in the “Notes of Installing Ubuntu 14.04.1 AMD64 on Virtualbox” post.

Clojure

Install “leiningen” with the instructions from here.

RVM

Octopress

When building the Octopress posts on Ubuntu 16.04 Xenial, I meet the “Could not open library ‘lib.so’” issue as described in the “Fixed issues after installing Ubuntu 14.04” post, but the Python lib files are in the right place. The roor cause is that: the Python version “2.7.10” is not installed. Install it by using “pyenv install 2.7.10” then it works.

Comments