• 8 years ago
Setting up a VPS with a gui in less then 10 minutes (2 commands total)

OS: linux ubuntu 15.05
software: putty.exe & VNC.exe

used commands:

[Setting up the server] (copy all in 1 go and paste in putty)

apt-get -y --force-yes purge apache2* bind9* samba*&&\
apt-get -y --force-yes update&&\
apt-get -y --force-yes upgrade&&\
apt-get install -y --force-yes nano&&\
apt-get install -y --force-yes xorg lxde-core tightvncserver&&\
apt-get install -y --force-yes chromium-browser&&\
adduser yourusername

[starting up VNCserver] (login into "yourusername" in putty)

vncserver :1 -geometry 1024x768 -depth 16 -pixelformat rgb565

thats all you now have a server set up to do what ever you want it to do.

have a great day!

Recommended