在ubuntu server 12.04上安装gnome-shell记录

ubuntu12.04的桌面版直接用不习惯了,所以就基于ubuntu server自己装得桌面用了。

先安装ubuntu server12.04,过程不说了。

更改软件源为国内源:

vi /etc/apt/sources.list

:%s/us.archive/cn.archive/g
:wq

添加PPA:

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。

查找language-select-gnome,然后就可以在applications->system tools->system settings->language support中添加中文了。

安装输入法

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即可

vmware中不能共享文件的解决方法:

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

 

你可能感兴趣的:(server,gnome)