Difference between revisions of "Guacamole 0.3.0 on Ubuntu 10.04"
From Linuxintro
imported>ThorstenStaerk |
|||
Line 50: | Line 50: | ||
* [[connect to a Linux computer]] | * [[connect to a Linux computer]] | ||
* [[guacamole on Debian 6]] | * [[guacamole on Debian 6]] | ||
+ | * [[guacamole on Ubuntu 11.10 32bit]] | ||
* [[cool things]] | * [[cool things]] | ||
* http://guac-dev.org/Debian%20Install%20Instructions | * http://guac-dev.org/Debian%20Install%20Instructions |
Revision as of 21:15, 25 December 2011
Guacamole is a program to tunnel a Linux desktop to a browser.
Sometimes in your Linux life, you need to control your servers in the internet with a graphical user interface. This is tedious when you are behind a corporate firewall blocking ssh requests to the public internet. Typical corporate firewalls only allow proxified client access to port 80, 8080 and 443 in the public internet. One way to go is to use a browser to display a Linux desktop. The solution is not, however, to use VNC for a web browser, as it will be blocked by corporate firewalls. The solution is guacamole.
Here is what I did to configure Guacamole on 2011-06-25 using a rackspace server with Ubuntu 10.04 x64:
- install some dependencies
apt-get install tomcat6 libvncserver0
- download this package
- unpack it
tar xvzf guacamole-0.3.0-ubuntu-10.04-x86-64.tar.gz
- install the contained software
cd guacamole-0.3.0-ubuntu-10.04-x86-64 dpkg -i *.deb
- put the software to the right place
ln -s /var/lib/guacamole/guacamole.war /var/lib/tomcat6/webapps ln -s /etc/guacamole/guacamole.properties /var/lib/tomcat6/common/classes
- edit /etc/guacamole/user-mapping.xml
<user-mapping> <authorize username="user" password="password"> <protocol>vnc</protocol> <param name="hostname">localhost</param> <param name="port">5901</param> <param name="password">password</param> </authorize> </user-mapping>
- This will allow you to log in as user named user with the password password. A VNC service must be listening on port 5901 configured with the password password.
- install a vnc server
apt-get install tightvncserver
- start the vnc server
vncserver
- surf to your Linux desktop: http://localhost:8080/guacamole/
- Now that this has worked, you want the service to be reachable via port 80, so do a port forwarding:
ssh username@server -L localport:remoteserver:remoteport