« Previous - Version 16/51 (diff) - Next » - Current version
Josh Blum, 04/04/2012 05:47 pm


UHD Installation (Linux)

Linux users have three options for downloading and installing UHD, as described below. Currently supported platforms are:

  • Ubuntu 10.04-11.10
  • Fedora 15-16

Install with Apt/Yum

Binaries generated from UHD's unstable and bugfix branches can also be installed using our Ubuntu and Fedora repositories. If you want your UHD install to update every week, follow the instructions below:

Ubuntu

  • Master/Unstable
    • Copy and paste these commands into your terminal. This will install UHD as well as place our repository into the list of sources Ubuntu uses to check for package updates.
      sudo bash -c 'echo "deb http://files.ettus.com/binaries/unstable/repo/uhd/ubuntu/`lsb_release -cs` `lsb_release -cs` main" > /etc/apt/sources.list.d/ettus.list'
      sudo apt-get update
      sudo apt-get install uhd
      
  • Releases/Bugfixes
    • Copy and paste these commands into your terminal. This will install UHD as well as place our repository into the list of sources Ubuntu uses to check for package updates.
      sudo bash -c 'echo "deb http://files.ettus.com/binaries/stable/repo/uhd/ubuntu/`lsb_release -cs` `lsb_release -cs` main" > /etc/apt/sources.list.d/ettus.list'
      sudo apt-get update
      sudo apt-get install uhd
      

Fedora

  • Master/Unstable
    • Follow these instructions to install UHD and place our repository into the list of sources Fedora uses to check for package updates.
    • Create the file "/etc/yum.repos.d/ettus.repo". Copy this into the file:
      [ettus-uhd-master-repo]
      name=Ettus Research - UHD Master $releasever-$basearch
      baseurl=http://files.ettus.com/binaries/uhd_unstable/repo/uhd/fedora/$releasever/$basearch
      gpgcheck=0
      

      Run the following commands:
      sudo yum update
      sudo yum install uhd
      
  • Releases/Bugfixes
    • Follow these instructions to install UHD and place our repository into the list of sources Fedora uses to check for package updates.
    • Create the file "/etc/yum.repos.d/ettus.repo". Copy this into the file:
      [ettus-uhd-stable-repo]
      name=Ettus Research - UHD Stable $releasever-$basearch
      baseurl=http://files.ettus.com/binaries/uhd_stable/repo/uhd/fedora/$releasever/$basearch
      gpgcheck=0
      

      Run the following commands:
      sudo yum update
      sudo yum install uhd
      

Installer Packages

We provide standalone binaries for all supported platforms.

These binaries are generated every weekend, and we provide the following:
  • UHD binary
  • Tarball of the UHD images used when forming the binary
Binaries of all previous releases can be downloaded below:

Along with binaries of all UHD releases, we host binaries of the latest bug fixes, which can be downloaded here

Source Code

Or you can build UHD from source. Follow the Build instructions.