ubuntu12.04的桌面版直接用不习惯了,因此就基于ubuntu server本身装得桌面用了。python
先安装ubuntu server12.04,过程不说了。shell
更改软件源为国内源:ubuntu
vi /etc/apt/sources.list :%s/us.archive/cn.archive/g :wq
添加PPA:app
sudo apt-get install python-software-properties sudo add-apt-repository ppa:gnome3-team/gnome3 sudo add-apt-repository ppa:ricotz/testing
安装gnome shell
sudo apt-get update sudo apt-get install gnome-shell #桌面 sudo apt-get install gnome-shell-extensions sudo apt-get install gnome-tweak-tool #配置工具
安装登陆界面(是否必须?):工具
sudo apt-get install lightdm
安装新立得软件包管理器,能够查找软件使用:
sudo apt-get install synpatic
能够在新立得中安装gnome-terminal和文件管理器nautilus。 google
查找language-select-gnome,而后就能够在applications->system tools->system settings->language support中添加中文了。code
安装输入法server
sudo add-apt-repository ppa:fcitx-team/nightly sudo apt-get update sudo apt-get install fcitx sudo apt-get install fcitx-googlepinyin
设置keyboard input method 为fcitx
设置开机启动,在starup applications中,command设置为fcitx -d便可ci
vmware中不能共享文件的解决方法:terminal
sudo apt-get install open-vm-dkms #先选y,再N、N..... sudo mount -t vmhgfs .host:/ /mnt/hgfs
在/etc/rc.local中能够添加启动时执行的命令,如:mount -t vmhgfs .host:/ /mnt/hgfs