User Tools

Site Tools


wiki:x2go-repository-ubuntu

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
wiki:x2go-repository-ubuntu [2012/12/04 01:33]
msx Added the missing instruction 'sudo apt-get install software-properties-common' needed for newer Ubuntu 12.10 systems.
wiki:x2go-repository-ubuntu [2013/03/12 20:44]
sunweaver removed
Line 16: Line 16:
  
 Alternatively you can also use the Ubuntu [[https://help.ubuntu.com/community/Repositories/Ubuntu#Adding_PPAs | software center]]. Alternatively you can also use the Ubuntu [[https://help.ubuntu.com/community/Repositories/Ubuntu#Adding_PPAs | software center]].
- 
-<code> 
-$ sudo add-apt-repository ppa:x2go/stable 
-$ sudo apt-get update 
-</code> 
  
 You might have to install ''add-apt-repository'' first using: You might have to install ''add-apt-repository'' first using:
-<code> +<code bash
-sudo apt-get install python-software-properties+sudo apt-get install python-software-properties
 </code> </code>
-Also if you are running a Ubuntu {Desktop,Server} 12.10 system you will need to install this package too: +Also if you are running a Ubuntu {Desktop,Server} 12.10 system you will need to install the ''software-properties-common'' package too: 
-<code> +<code bash
-sudo apt-get install software-properties-common+sudo apt-get install software-properties-common python-software-properties 
 +</code> 
 + 
 +Afterwards you can add our ppa: 
 + 
 +<code bash> 
 +sudo add-apt-repository ppa:x2go/stable 
 +sudo apt-get update
 </code> </code>
  
  
 The X2Go related packages should now be listed calling: The X2Go related packages should now be listed calling:
-<code> +<code bash
-apt-cache search x2go+apt-cache search x2go
 </code> </code>
  
Line 41: Line 43:
  
  
-===== General minimal guide/steps to install x2goserver on Ubuntu ===== 
  
-After adding the x2go PPA (see above) on your remote Ubuntu "desktop" server there are a few general steps to follow to install the x2goserver  for use.+===== Behind a Proxy? ===== 
 +If you are on a site that uses HTTP proxy to connect to websites on the internet, make sure you run the following commands first before adding the X2Go PPA to your APT package management system (replace ''my.proxy.server'' and ''my_proxy_port'' with your local site's proxy settings):
  
-Start a ssh terminal session with the remote Ubuntu server. +<code bash> 
- +export http_proxy=http://<my.proxy.server>:<my_proxy_port>/ 
-If you have not copied ssh keys (see x2go wiki section called **Advanced x2go Setups**) in order to use automatic login by user to the remote server without having to enter their password and instead you plan to require remote users to enter both their UserID and Password on their x2go client then you will need to edit/modify ///etc/ssh/sshd_config// and change the entry for //ChallengeResponseAUthentication// from NO to YES then restart ssh (sudo /etc/init.d/ssh restart). +export https_proxy=http://<my.proxy.server>:<my_proxy_port>/
- +
-The next step is to install the primary x2goserver packages. +
- +
-<code> +
-$ sudo apt-get install x2goserver x2goserver-xsession+
 </code> </code>
  
  
  
- 
-===== Behind a Proxy? ===== 
-If you are on a site that uses a HTTP proxy to connect to websites on the internet, make sure you run the following commands first before adding the X2Go PPA to your APT package management system (replace ''my.proxy.server'' and ''my_proxy_port'' with your local site's proxy settings): 
- 
-<code> 
-$ export http_proxy=http://<my.proxy.server>:<my_proxy_port>/ 
-$ export https_proxy=http://<my.proxy.server>:<my_proxy_port>/ 
-</code>