Changes between Version 2 and Version 3 of Documentation/dSDR/GNURadio/InstallationOnUbuntu12.04


Ignore:
Timestamp:
May 14, 2013, 9:43:19 PM (11 years ago)
Author:
nilanjan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/dSDR/GNURadio/InstallationOnUbuntu12.04

    v2 v3  
    11= Installation procedure for UHD 003.005.002 and GNU Radio v3.6.4.1 on Ubuntu v12.04 =
    22
     3== Source installation ==
     4
    35 1. Load baseline ubuntu 12.04 image onto node
     6
    47 2. Build UHD from source code (http://code.ettus.com/redmine/ettus/projects/uhd/wiki/UHD_Build)
    58  a. From the root directory download the source tar ball:
     
    8891root@node1-1:~# gnuradio-config-info -v
    8992}}}
     93
     94
     95== Binary installation from Ettus repository (http://code.ettus.com/redmine/ettus/projects/uhd/wiki/GNURadio_Linux) ==
     96
     97 1. Load baseline ubuntu 12.04 image onto node
     98
     99 2. Add Ettus repository
     100{{{
     101root@node1-1:~# bash -c 'echo "deb http://files.ettus.com/binaries/uhd_stable/repo/uhd/ubuntu/`lsb_release -cs` `lsb_release -cs` main" > /etc/apt/sources.list.d/ettus.list'
     102root@node1-1:~# bash -c 'echo "deb http://files.ettus.com/binaries/uhd_stable/repo/gnuradio/ubuntu/`lsb_release -cs` `lsb_release -cs` main" >> /etc/apt/sources.list.d/ettus.list'
     103}}}
     104
     105 3. Update and install
     106{{{
     107root@node1-1:~# apt-get update
     108root@node1-1:~# apt-get install -t `lsb_release -cs` uhd gnuradio
     109}}}
     110
     111 4. Update network interfaces to enable eth2. Add following line to /etc/network/interfaces
     112{{{
     113auto eth2
     114iface eth2 inet static
     115address 192.168.10.1
     116netmask 255.255.255.0
     117broadcast 192.168.10.255
     118}}}
     119
     120 5. Add following lines to /etc/sysctl.conf
     121{{{
     122net.core.rmem_max=50000000
     123net.core.wmem_max=1048576
     124}}}
     125