安装ubuntu server配合fluxbox界面的流程

首先安装 ubuntu server
然后在命令行使用
sudo apt-get update
sudo apt-get upgrade
sudo apt-get -f install
sudo apt-get install xorg xdm fluxbox //这里可以分别install
sudo apt-get install gdm
sudo dpkg-reconfigure xserver-xorg

If the mouse and keyboard doesn't work when in the gdm or xdm screen, you could do this
After running the "sudo dpkg-reconfigure xserver-xorg",
You could edit xorg.conf
here is how
cd /etc/X11
vi xorg.conf

add some lines in

Section “InputDevice”
Identifier “Generic Keyboard”
Driver “kbd”
Option “XkbRules” “xorg”
Option “XkbModel” “pc105″
Option “XkbLayout” “cn”
EndSection

Section “InputDevice”
Identifier “Configured Mouse”
Driver “mouse”
EndSection

Section “InputDevice”
Identifier “Synaptics Touchpad”
Driver “synaptics”
Option “SendCoreEvents” “true”
Option “Device” “/dev/psaux”
Option “Protocol” “auto-dev”
Option “HorizEdgeScroll” “0″
EndSection

After Last line

Section “ServerLayout”
Identifier “Default Layout”
screen “Default Screen”
Inputdevice “Generic Keyboard”
Inputdevice “Configured Mouse”
Inputdevice “Synaptics Touchpad”
EndSection

Then

sudo reboot

everything will go well.

sudo apt-get install firefox
sudo apt-get install synaptic

Then goto Synaptic to find chinese language support related package, install them
中文支持包的名字是 language-support-zh
另外记得安装 scim
原文地址:https://www.cnblogs.com/cnyin/p/1914267.html