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 [2011/10/17 18:55]
h1 Page moved from adding_the_x2go_repository_ubuntu to wiki:adding_the_x2go_repository_ubuntu
wiki:x2go-repository-ubuntu [2013/03/12 20:44]
sunweaver removed
Line 1: Line 1:
-====== X2go packages for Ubuntu GNU/Linux ======+====== X2Go packages for Ubuntu GNU/Linux ======
  
-From our nightly-builds on Ubuntu Launchpad we regularly copy package to the Launchpad PPA:  **ppa:x2go/stable**.+Packages for Ubuntu are provided for several platforms (amd64/i386, lucid/maverick/natty/oneiric.  
 +From our nightly-builds on Ubuntu Launchpad we regularly copy package to the Launchpad PPA:  **''ppa:x2go/stable''**.
  
-First, become your system'super-user (you may have to (re-)enter your password here):+Before adding X2Go's Launchpad package repository to your APT system, please make sure that you use Ubuntu'''main'' __and__ ''universe'' repository on your Ubuntu system. The very minimal ''/etc/apt/sources.list'' must look like this. (Of course we recommend to have Ubuntu security updates enabled, explaining how to do this is off-topic here, though.):
  
 <code> <code>
-$ sudo -i+deb http://de.archive.ubuntu.com/ubuntu <my-ubuntu-version> main universe
 </code> </code>
  
-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):+===== Add the X2Go repository on Launchpad to APT =====
  
-<code> +Use the following commands to add the ''ppa:x2go/stable'' as a package source to your local system. 
-$ export http_proxy=http://<my.proxy.server>:<my_proxy_port>+Before doing so, you might like to learn about [[https://help.ubuntu.com/community/AptGet|apt-get]], [[https://help.ubuntu.com/community/RootSudo|sudo]] and [[https://help.ubuntu.com/community/Repositories/CommandLine#Adding_Launchpad_PPA_Repositories|ppa]]s 
-$ export https_proxy=http://<my.proxy.server>:<my_proxy_port>/+ 
 +Alternatively you can also use the Ubuntu [[https://help.ubuntu.com/community/Repositories/Ubuntu#Adding_PPAs | software center]]. 
 + 
 +You might have to install ''add-apt-repository'' first using: 
 +<code bash> 
 +sudo apt-get install python-software-properties 
 +</code> 
 +Also if you are running a Ubuntu {Desktop,Server} 12.10 system you will need to install the ''software-properties-common'' package too: 
 +<code bash> 
 +sudo apt-get install software-properties-common python-software-properties
 </code> </code>
  
-Now, please add the PPA mentioned below to your system for installing X2go on Ubuntu platforms (amd64/i386, lucid/maverick/natty/oneiric). Use the follwing commands to add the ppa:x2go/stable as a package source to your local system and perform a search for X2go-related packages:+Afterwards you can add our ppa:
  
-<code> +<code bash
-# if you followed the first step you should still be the system's super-user... +sudo add-apt-repository ppa:x2go/stable 
-add-apt-repository ppa:x2go/stable +sudo apt-get update
-$ aptitude update +
-$ aptitude search x2go +
-$ ...+
 </code> </code>
  
-Congratulations, you are now able to access the X2go packages. You may continue by installing x2goserver, x2goclient or pyhoca-gui or any other of the available packages. + 
 +The X2Go related packages should now be listed calling: 
 +<code bash> 
 +apt-cache search x2go 
 +</code> 
 + 
 + 
 +Congratulations, you are now able to access the X2Go packages. You may continue by installing x2goserver, x2goclient or pyhoca-gui or any other of the available packages.  
 + 
 + 
 + 
 +===== 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 bash> 
 +export http_proxy=http://<my.proxy.server>:<my_proxy_port>/ 
 +export https_proxy=http://<my.proxy.server>:<my_proxy_port>/ 
 +</code> 
 + 
 +