Skip to content

Instantly share code, notes, and snippets.

@martinbowling
Created December 8, 2014 00:10
Show Gist options
  • Save martinbowling/01c96ff0eb10c2b04370 to your computer and use it in GitHub Desktop.
Save martinbowling/01c96ff0eb10c2b04370 to your computer and use it in GitHub Desktop.
# 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 tightvncserver
# Start VNC to create config file
tightvncserver :1
# Then stop VNC
tightvncserver -kill :1
# Edit config file to start session with LXDE:
nano ~/.vnc/xstartup
# Add this at the bottom of the file:
lxterminal &
/usr/bin/lxsession -s LXDE &
# Restart VNC
tightvncserver :1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment