Install/Test/Uninstall - Ubuntu/Debian: Difference between revisions

From NEOSYS Dev Wiki
Jump to navigationJump to search
(Inspect the script)
Line 1: Line 1:
=== Setup ===
=== Setup ===


By this process you enable installation of binary code from a Launchpad PPA repository hosted by Canonical.
View the script
 
Key E7815451 is https://launchpad.net/~steve-bush/+archive/ppa-exodus
 
<pre>
<pre>
sudo sh -c 'echo "deb http://ppa.launchpad.net/steve-bush/ppa-exodus/ubuntu lucid main\n \
wget -q -O - http://exodusdb.googlecode.com/svn/trunk/addrepo_lucid.sh | cat
deb-src http://ppa.launchpad.net/steve-bush/ppa-exodus/ubuntu lucid main" \
#or
> /etc/apt/sources.list.d/exodus-ppa-lucid.list'
curl -s http://exodusdb.googlecode.com/svn/trunk/addrepo_lucid.sh | cat
</pre>
</pre>
Run it
<pre>
<pre>
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E7815451
wget -q -O - http://exodusdb.googlecode.com/svn/trunk/addrepo_lucid.sh | bash
#or
curl -s http://exodusdb.googlecode.com/svn/trunk/addrepo_lucid.sh | bash
</pre>
</pre>



Revision as of 17:16, 29 June 2011

Setup

View the script

wget -q -O - http://exodusdb.googlecode.com/svn/trunk/addrepo_lucid.sh | cat
#or
curl -s http://exodusdb.googlecode.com/svn/trunk/addrepo_lucid.sh | cat

Run it

wget -q -O - http://exodusdb.googlecode.com/svn/trunk/addrepo_lucid.sh | bash
#or
curl -s http://exodusdb.googlecode.com/svn/trunk/addrepo_lucid.sh | bash

Install

sudo apt-get update
sudo apt-get install exodus

Testing

testsort

Upgrade

sudo apt-get update
sudo apt-get upgrade

Uninstall

sudo apt-get autoremove exodus

Un-setup

sudo rm -f /etc/apt/sources.list.d/exodus-ppa-lucid.list
sudo apt-key del E7815451