|
|
(11 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| Example session: [[Install/Test/Uninstall - Ubuntu 10.04 LTS]]
| | ==== [[Install/Test/Uninstall - Redhat5/Centos5/Fedora15|Redhat/Fedora/Centos]] ==== |
|
| |
|
| == Adding Repositories == | | ==== [[Install/Test/Uninstall - Ubuntu 10.04 LTS|Ubuntu/Debian]] ==== |
|
| |
|
| === Redhat/Fedora/Centos === | | ==== [[Install/Test/Uninstall - Suse 11.4|Suse]] ==== |
| | |
| <pre>
| |
| #Pick ONE Distro.
| |
| export DISTRO=Fedora_15
| |
| export DISTRO=RedHat_RHEL-5 #use this for Centos5 too
| |
| | |
| sudo su -c "echo -e '\
| |
| [exodus]\n\ | |
| name=exodus\n\
| |
| type=rpm-md\n\
| |
| baseurl=http://download.opensuse.org/repositories/home:/neosys:/exodus/$DISTRO/\n\
| |
| gpgcheck=1\n\
| |
| gpgkey=http://download.opensuse.org/repositories/home:/neosys:/exodus/$DISTRO/repodata/repomd.xml.key\n\
| |
| enabled=1\n\
| |
| '>/etc/yum.repos.d/exodus.repo"
| |
| | |
| sudo yum clean all
| |
| yum search exodus
| |
| </pre>
| |
| | |
| === Ubuntu/Debian ===
| |
| | |
| <pre>
| |
| #Pick ONE Distro.
| |
| export DISTRO=Debian_6.0
| |
| export DISTRO=xUbuntu_10.04
| |
| export DISTRO=xUbuntu_11.04
| |
| | |
| sudo su -c "echo 'deb http://download.opensuse.org/repositories/home:/neosys:/exodus/$DISTRO ./' > /etc/apt/sources.list.d/exodus.list"
| |
| | |
| sudo apt-get update
| |
| sudo apt-cache search exodus
| |
| </pre>
| |
| | |
| === Suse ===
| |
| | |
| <pre>
| |
| export DISTRO=openSUSE_11.4
| |
| | |
| sudo su -c "echo -e '\
| |
| [exodus]\n\
| |
| name=exodus\n\
| |
| type=rpm-md\n\
| |
| baseurl=http://download.opensuse.org/repositories/home:/neosys:/exodus/$DISTRO/\n\
| |
| gpgcheck=1\n\
| |
| gpgkey=http://download.opensuse.org/repositories/home:/neosys:/exodus/$DISTRO/repodata/repomd.xml.key\n\
| |
| enabled=1\n\
| |
| '>/etc/zypp/repos.d/exodus.repo"
| |
| | |
| sudo zypper refresh
| |
| zypper search exodus
| |
| </pre>
| |
| | |
| == Removing Repositories ==
| |
| | |
| === Redhat/Fedora/Centos ===
| |
| | |
| sudo yum remove "*exodus*"
| |
| sudo rm /etc/yum.repos.d/exodus.repo
| |
| sudo yum clean all
| |
| | |
| === Ubuntu/Debian ===
| |
| | |
| sudo rm /etc/apt/sources.list.d/exodus.list
| |
| sudo apt-get update
| |
| | |
| === Suse ===
| |
| | |
| sudo zypper remove "*exodus*"
| |
| sudo rm /etc/zypp/repos.d/exodus.repo
| |
| sudo zypper refresh
| |
| | |
| == Building From Source ==
| |
| | |
| === Core ===
| |
| | |
| Includes library, postgres plug, command line utilities and programming using C++ compiler
| |
| | |
| [http://code.google.com/p/exodusdb/source/browse/trunk/install_apt.sh Debian/Ubuntu]
| |
| | |
| [http://code.google.com/p/exodusdb/source/browse/trunk/buildinstall_yum.sh Redhat/Centos/Fedora]
| |
| | |
| [http://code.google.com/p/exodusdb/source/browse/trunk/buildinstall_yum.sh Suse]
| |
| | |
| === Language Bindings ===
| |
| | |
| Perl, Python, PHP, Java, C#
| |
| | |
| [http://code.google.com/p/exodusdb/source/browse/trunk/swig/install_apt.sh Debian/Ubuntu]
| |
| | |
| [http://code.google.com/p/exodusdb/source/browse/trunk/swig/install_yum.sh Redhat/Centos/Fedora]
| |
| | |
| === Other ===
| |
| | |
| [[Building Boost from scratch on Ubuntu 10.04 LTS]]
| |