| 82 |  | root@node1-1:/etc/modprobe.d# ls -al | 
          
            | 83 |  | total 52 | 
          
            | 84 |  | drwxr-xr-x  2 root root 4096 2011-06-05 23:03 . | 
          
            | 85 |  | drwxr-xr-x 80 root root 4096 2012-02-28 12:22 .. | 
          
            | 86 |  | -rw-r--r--  1 root root  323 2011-03-02 16:29 blacklist-ath5k.conf | 
          
            | 87 |  | -rw-r--r--  1 root root   16 2011-03-02 16:30 blacklist-ath9k.conf | 
          
            | 88 |  | -rw-r--r--  1 root root  325 2010-10-01 11:33 blacklist-ath_pci.conf | 
          
            | 89 |  | -rw-r--r--  1 root root 1603 2010-10-01 11:33 blacklist.conf | 
          
            | 90 |  | -rw-r--r--  1 root root  210 2010-10-01 11:33 blacklist-firewire.conf | 
          
            | 91 |  | -rw-r--r--  1 root root  660 2010-10-01 11:33 blacklist-framebuffer.conf | 
          
            | 92 |  | -rw-r--r--  1 root root   44 2011-06-05 23:03 blacklist-i2400m_usb.conf | 
          
            | 93 |  | -rw-r--r--  1 root root   36 2011-06-05 23:03 blacklist-iwlagn.conf | 
          
            | 94 |  | -rw-r--r--  1 root root  583 2011-04-01 10:05 blacklist-rare-network.conf | 
          
            | 95 |  | -rw-r--r--  1 root root 1077 2010-10-01 11:33 blacklist-watchdog.conf | 
          
            | 96 |  | -rw-r--r--  1 root root   29 2010-10-01 11:33 intel-5300-iwlagn-disable11n.conf | 
          
            |  | 86 | root@node1-1:/etc/modprobe.d# ls -ltr | 
          
            |  | 87 | total 68 | 
          
            |  | 88 | -rw-r--r-- 1 root root   29 Oct  1  2010 intel-5300-iwlagn-disable11n.conf | 
          
            |  | 89 | -rw-r--r-- 1 root root 1077 Oct  1  2010 blacklist-watchdog.conf | 
          
            |  | 90 | -rw-r--r-- 1 root root  660 Oct  1  2010 blacklist-framebuffer.conf | 
          
            |  | 91 | -rw-r--r-- 1 root root  210 Oct  1  2010 blacklist-firewire.conf | 
          
            |  | 92 | -rw-r--r-- 1 root root 1603 Oct  1  2010 blacklist.conf | 
          
            |  | 93 | -rw-r--r-- 1 root root  325 Oct  1  2010 blacklist-ath_pci.conf | 
          
            |  | 94 | -rw-r--r-- 1 root root  323 Mar  2  2011 blacklist-ath5k.conf | 
          
            |  | 95 | -rw-r--r-- 1 root root   16 Mar  2  2011 blacklist-ath9k.conf | 
          
            |  | 96 | -rw-r--r-- 1 root root   36 Jun  5  2011 blacklist-iwlagn.conf | 
          
            |  | 97 | -rw-r--r-- 1 root root   44 Jun  5  2011 blacklist-i2400m_usb.conf | 
          
            |  | 98 | -rw-r--r-- 1 root root  181 Dec  8  2012 i2400m.conf | 
          
            |  | 99 | -rw-r--r-- 1 root root  104 Apr 10  2014 mlx4.conf | 
          
            |  | 100 | -rw-r--r-- 1 root root  347 Apr 10  2014 iwlwifi.conf | 
          
            |  | 101 | -rw-r--r-- 1 root root  583 Apr 10  2014 blacklist-rare-network.conf | 
          
            |  | 102 | -rw-r--r-- 1 root root  456 Apr 14  2014 fbdev-blacklist.conf | 
          
            |  | 103 | -rw-r--r-- 1 root root   62 Jul 28 15:53 blacklist-ipw2200.conf | 
          
            |  | 104 | -rw-r--r-- 1 root root   51 Jul 28 15:54 blacklist-iwlwifi.conf | 
        
        
          
            | 143 |  | 1. To install the necessary packages from the mytestbed.net repository we need to first configure /etc/apt/sources.list . We will need only the precise repository. Edit the /etc/apt/sources.list | 
          
            | 144 |  | add the following line. | 
          
            | 145 |  | {{{ | 
          
            | 146 |  | deb http://pkg.mytestbed.net/ubuntu precise/ | 
          
            | 147 |  | }}} | 
          
            | 148 |  | 1. Add the following packages and files | 
          
            |  | 151 | 1. To begin we'll need to add the repositories (ORBIT and MyTestbed) to the list of sources that our node will pull packages from. This is done by running the following commands: | 
          
            |  | 152 | {{{ | 
          
            |  | 153 | wget -qO - http://packages.orbit-lab.org/downloads/orbitapt.gpg.key | sudo apt-key add - | 
          
            |  | 154 | wget -qO /etc/apt/sources.list.d/orbit.list http://packages.orbit-lab.org/downloads/orbit-precise.list | 
          
            |  | 155 | wget -qO - http://download.opensuse.org/repositories/devel:tools:mytestbed:stable/xUbuntu_12.04/Release.key | sudo apt-key add - | 
          
            |  | 156 | echo 'deb http://download.opensuse.org/repositories/devel:/tools:/mytestbed:/stable/xUbuntu_12.04/ /' >> /etc/apt/sources.list.d/oml2.list | 
          
            |  | 157 | }}} | 
          
            |  | 158 | 1. Once we have these changes in place, we need to update the repository list via | 
          
            |  | 159 | {{{ | 
          
            |  | 160 | apt-get update | 
          
            |  | 161 | }}} | 
          
            |  | 162 | 1. Finally, we need to add the following packages and files |