Difference between revisions of "Freegeek repository"

From FreekiWiki
Jump to navigation Jump to search
(correct URL for freegeek keyring)
(Reformatted, distinguished CLI and GUI methods)
Line 1: Line 1:
For systems installed via liveCD you need to manually add the freegeek repository+keyring
+
For systems installed via liveCD or other means you'll need to manually add the freegeek repository and keyring in order to install freegeek-extras
  
*Go to system>administration>software sorces
+
==From the GUI==
*Select the third-party software tab
+
# Go to '''System >> Administration >> Software Sources'''
*add the following
+
# Select the '''Other Software''' tab
 +
# Click '''Add''' and type the following:  <code>deb http://apt.freegeek.org/ubuntu lucid main</code>
 +
# Add the Free Geek keyring
 +
#* Download the keyring from <code>http://apt.freegeek.org/freegeek-archive-keyring.gpg</code>
 +
#* In the Software Sources window, click on the '''Authentication''' and add the keyring file
 +
# Go to '''Applications >> Ubuntu Software Center''' and search for ''freegeek-extras'' and install it
 +
# Go to '''System >> Administration >> Update Manager''' and click '''Check''', then '''Install Updates'''
  
<code>
+
==From the CLI==
  deb http://apt.freegeek.org/ubuntu lucid main
+
Enter the following into a terminal:
 
+
$ sudo su
</code>
+
# cat << EOF >> /etc/apt/sources.list
 
+
  > deb http://apt.freegeek.org/ubuntu lucid main
*Add the freegeek keyring
+
> deb-src http://apt.freegeek.org/ubuntu lucid main
**[http://apt.freegeek.org/freegeek-archive-keyring.gpg download the keyring]
+
> EOF
**click on the authentication tab and add the keyring file.
+
# wget http://apt.freegeek.org/freegeek-archive-keyring.gpg
 
+
# apt-key add freegeek-archive-keyring.gpg
*Install freegeek-extras package (in terminal)
+
# apt-get update
  sudo apt-get install freegeek-extras
+
  # apt-get install freegeek-extras
 +
# apt-get upgrade
  
 
[[Category:Tech support]]
 
[[Category:Tech support]]

Revision as of 17:22, 15 November 2011

For systems installed via liveCD or other means you'll need to manually add the freegeek repository and keyring in order to install freegeek-extras

From the GUI

  1. Go to System >> Administration >> Software Sources
  2. Select the Other Software tab
  3. Click Add and type the following: deb http://apt.freegeek.org/ubuntu lucid main
  4. Add the Free Geek keyring
  5. Go to Applications >> Ubuntu Software Center and search for freegeek-extras and install it
  6. Go to System >> Administration >> Update Manager and click Check, then Install Updates

From the CLI

Enter the following into a terminal:

$ sudo su
# cat << EOF >> /etc/apt/sources.list
> deb http://apt.freegeek.org/ubuntu lucid main
> deb-src http://apt.freegeek.org/ubuntu lucid main
> EOF
# wget http://apt.freegeek.org/freegeek-archive-keyring.gpg
# apt-key add freegeek-archive-keyring.gpg
# apt-get update 
# apt-get install freegeek-extras
# apt-get upgrade