debian最小桌面,适合vnc使用
在购买了一个内存大小只有1G的vps之后,就已开始着手折腾了,在上面装了各种东西,nginx、php、mysql、django等,而且还要用ssh来连接它进行FQ。。我深刻地体会到,留给自己的内存已经不多了,但一些配置在ssh还是很抓鸡。。比如字体,安了zsh和ohmyz.sh后,箭头不好使,没办法还是折腾个桌面吧,然后可以通过vnc访问,但内存太小了,debian的xfce、kde、gnome一套下来,内存就跪了,于是找到了下面的这个桌面
# Make sure Debian is the latest and greatest apt-get update apt-get upgrade apt-get dist-upgrade # Install X, LXDE, VPN programs apt-get install xorg lxde-core vnc4server # Start VNC to create config file vncserver :0 # Then stop VNC vncserver -kill :0 # Edit config file to start session with LXDE: vi ~/.vnc/xstartup # Add this at the bottom of the file: lxterminal & /usr/bin/lxsession -s LXDE & # Restart VNC vncserver :0