| 58 | 1. To install the necessary packages from the mytestbed.net repository we need to first configure /etc/apt/sources.list . We will need the repository for natty since the oneiric |
| 59 | repository doesn't containt packages from omf-5.3. |
| 60 | {{{ |
| 61 | deb http://pkg.mytestbed.net/ubuntu natty/ |
| 62 | }}} |
| 63 | The current oneiric repository doesn't have a version of libxmpp4r-ruby which was part of the natty(and older) universe repositories. Instead |
| 64 | we will have to manually download the debs and install them. I used the follow commands to retrieve and install them from an ubuntu mirror. |
| 65 | {{{ |
| 66 | wget http://ubuntu.media.mit.edu/ubuntu//pool/universe/libx/libxmpp4r-ruby/libxmpp4r-ruby1.8_0.5-1_all.deb |
| 67 | dpkg -i libxmpp4r-ruby1.8_0.5-1_all.deb |
| 68 | wget http://ubuntu.media.mit.edu/ubuntu//pool/universe/libx/libxmpp4r-ruby/libxmpp4r-ruby_0.5-1_all.deb |
| 69 | dpkg -i libxmpp4r-ruby_0.5-1_all.deb |
| 70 | }}} |
| 71 | The first is the actual package, the second is a container. Apt will refuse to install OMF-5.3 if the container package is not installed. |
| 72 | From here we simply need to update and install the two omf-5.3 packages |
| 73 | {{{ |
| 74 | apt-get install omf-common-5.3 omf-expctl-5.3 |
| 75 | }}} |
| 76 | Finally we install OML2. The meta package seems broken, but is unnecessary any way. We can simply install all the oml2 packages (except |
| 77 | for oml2-apps-all) |
| 78 | {{{ |
| 79 | apt-get install oml2-nmetrics liboml2-0 oml2-gpslogger oml2-proxy-server oml2-iperf oml2-otg2 oml2-wlanconfig oml2-proxycon oml2-trace liboml2-dev oml2-server |
| 80 | }}} |
| 81 | |