|
|
(18 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| Example: [[Installing on Ubuntu 10.04 LTS from repository]]
| | ==== [[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. for centos, use redhat
| |
| export DISTRO=Fedora_15
| |
| export DISTRO=RedHat_RHEL-5
| |
| | |
| 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 update
| |
| </pre>
| |
| | |
| === Ubuntu/Debian ===
| |
| | |
| <pre>
| |
| #pick one.
| |
| 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
| |
| </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 update
| |
| </pre>
| |
| | |
| == Building From Source ==
| |
| | |
| [http://code.google.com/p/exodusdb/source/browse/trunk/install_apt.sh Debian/Ubuntu/APT] - only C++ language bindings ATM
| |
| | |
| [http://code.google.com/p/exodusdb/source/browse/trunk/buildinstall_yum.sh Centos/Fedora/Redhat/YUM] - only C++ language bindings ATM
| |
| | |
| [http://code.google.com/p/exodusdb/source/browse/trunk/swig/install_apt.sh Debian/Ubuntu/APT] perl, python, php, java, c#
| |
| | |
| [http://code.google.com/p/exodusdb/source/browse/trunk/swig/install_yum.sh Redhat/Centos/Fedora/YUM] perl, python, php, java, c#
| |
| | |
| [[Building Boost from scratch on Ubuntu 10.04 LTS]]
| |