close Warning: Can't synchronize with repository "(default)" ("(default)" is not readable or not a Git repository.). Look in the Trac log for more information.

Changes between Initial Version and Version 1 of Documentation/Other/RepositoryConfigOml


Ignore:
Timestamp:
Dec 2, 2014, 2:44:40 AM (9 years ago)
Author:
wontoniii
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/Other/RepositoryConfigOml

    v1 v1  
     1=== Configure OML apt Repository ===
     2
     3OML libraries are required to proceed with the installation. They are installed automatically once the repositories list have been added correctly.
     4
     5'''Note: It is assumed that you have root access and can run these commands as root if needed'''
     6
     7First, append the following line to /etc/apt/sources.list, choosing the one appropriate for your Ubuntu version:
     8
     9{{{
     10#Ubuntu 10.04
     11deb http://download.opensuse.org/repositories/home:/cdwertmann:/oml/xUbuntu_10.04/ ./
     12   
     13#Ubuntu 12.04
     14deb http://download.opensuse.org/repositories/home:/cdwertmann:/oml/xUbuntu_12.04/ ./
     15}}}
     16
     17You also need to add the repository key before the actual download (requires curl or similar):
     18
     19{{{
     20#Ubuntu 10.04
     21wget -qO- http://download.opensuse.org/repositories/home:/cdwertmann:/oml/xUbuntu_10.04/Release.key | sudo apt-key add -
     22       
     23#Ubuntu 12.04
     24wget -qO- http://download.opensuse.org/repositories/home:/cdwertmann:/oml/xUbuntu_12.04/Release.key | sudo apt-key add -
     25}}}
     26
     27Once we have these changes in place, we need to update the repository list via:
     28
     29{{{
     30sudo apt-get update
     31}}}