标签:des style blog http io color ar sp for
先看完,不然,你一定会后悔的。。不好看,你打我。。
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,然后重启即可
在桌面中做如下配置:
设置完成之后的整体效果如下:
关于zsh的配置,可以参考我的这个:http://blog.csdn.net/i_am_root/article/details/39483443
标签:des style blog http io color ar sp for
原文地址:http://www.cnblogs.com/cungen/p/4089442.html