Created
December 8, 2014 00:10
-
-
Save martinbowling/01c96ff0eb10c2b04370 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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