先看完,不然,你一定會后悔的。。不好看,你打我。。
sudo apt-get install xfce4 sudo apt-get install xfce4-goodies sudo apt-get install vnc4server
在debian的終端中執行這3個命令就可以了,然后還要配置vnc,在.vnc/xstartup更改為如下內容:
1 #!/bin/sh 2 3 # Uncomment the following two lines for normal desktop: 4 unset SESSION_MANAGER 5 # exec /etc/X11/xinit/xinitrc 8 startxfce4 & 9 10 [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup 11 [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources 12 xsetroot -solid grey 13 vncconfig -iconic & 14 # x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" & 15 # x-window-manager &
然后vnc重啟一下,vncserver -kill :0,再vncserver :0就可以了
安裝中文環境(解決亂碼問題):
sudo apt-get install locales sudo dpkg-reconfigure locales sudo apt-get install xfonts-wqy ttf-wqy-zenhei ttf-wqy-microhei
然后在.bash_profile中或.zshrc中添加如下:export LANG=zh_CN.utf8,然后重啟即可
在桌面中做如下配置:
- 在菜單->設置->設置管理器中->窗口管理器中,樣式選Agualemon,字體設置為Source Code Pro,如果沒有,自行下載
- 在菜單->設置->設置管理器中->外觀中,風格選擇xfce,圖標選faba-mono-Dark,字體同樣選擇Source Code Pro
- 在菜單->設置->設置管理器中->外觀中,字體DPI可以自己調高一些,下面dark欄也可自行設置大小稍大些
設置完成之后的整體效果如下:
關於zsh的配置,可以參考我的這個:http://blog.csdn.net/i_am_root/article/details/39483443