How to install gqrx on ubuntu

Content on WhatAnswers is provided "as is" for informational purposes. While we strive for accuracy, we make no guarantees. Content is AI-assisted and should not be used as professional advice.

Last updated: April 4, 2026

Quick Answer: To install Gqrx SDR on Ubuntu, you can use the official PPA for the most up-to-date version. First, add the PPA to your system, then update your package list, and finally, install Gqrx using the `apt` command. Alternatively, you can compile Gqrx from source, but this is more complex.

Key Facts

Overview

Gqrx SDR is a versatile software defined radio receiver that allows users to explore the radio spectrum using their computer. It supports a wide range of SDR hardware, enabling reception of various radio signals, from FM broadcast to amateur radio bands and beyond. Installing Gqrx on Ubuntu provides a powerful tool for radio enthusiasts, students, and professionals interested in radio communications, signal analysis, and spectrum monitoring. This guide outlines the most common and recommended method for installing Gqrx on Ubuntu, ensuring you can quickly get started with your SDR adventures.

Why Install Gqrx on Ubuntu?

Ubuntu, being a popular and user-friendly Linux distribution, is an excellent platform for running SDR software like Gqrx. The open-source nature of both Ubuntu and Gqrx aligns perfectly, fostering a community-driven development environment. Installing Gqrx on Ubuntu allows you to:

Prerequisites

Before you begin the installation, ensure you have the following:

Installation Method 1: Using the Official PPA (Recommended)

The most straightforward and recommended method for installing Gqrx on Ubuntu is by using the official Personal Package Archive (PPA). This ensures you get a stable and up-to-date version of the software that is properly configured for your Ubuntu system.

Step 1: Add the Gqrx PPA

Open a terminal window (you can usually find it by searching for 'Terminal' in your applications menu or by pressing Ctrl+Alt+T). Then, execute the following command to add the Gqrx PPA to your system's software sources:

sudo add-apt-repository ppa:gqrx/gqrx-sdr

You will be prompted to press Enter to confirm the addition of the PPA. This command fetches the necessary information about the packages available in the Gqrx PPA.

Step 2: Update Your Package List

After adding the PPA, it's crucial to update your system's package list so that Ubuntu is aware of the new software available from the PPA. Run the following command in the terminal:

sudo apt update

This command synchronizes your local package index with the repositories, including the newly added Gqrx PPA.

Step 3: Install Gqrx SDR

Now that your system knows about Gqrx, you can install it using the `apt` package manager. Execute the following command:

sudo apt install gqrx-sdr gr-osmosdr

This command will download and install Gqrx along with its essential dependencies, including `gr-osmosdr`, which provides support for various SDR hardware devices.

Step 4: Launch Gqrx

Once the installation is complete, you can launch Gqrx. You can find it in your applications menu under 'Internet' or 'Sound & Video', or you can launch it directly from the terminal by typing:

gqrx

When you first launch Gqrx, you may be prompted to configure your SDR device. Select your connected SDR hardware from the dropdown list and click 'OK'.

Installation Method 2: Compiling from Source (Advanced)

Compiling Gqrx from source offers the most control and access to the absolute latest development code, but it is a more complex process and requires installing development tools and libraries. This method is generally recommended only for developers or advanced users who need specific features not yet released in stable versions.

General Steps (Requires detailed knowledge of build systems like CMake and GNU Radio):

  1. Install build dependencies: This involves installing packages like `cmake`, `git`, `build-essential`, and various development libraries required by Gqrx and its dependencies (like GNU Radio).
  2. Clone the Gqrx source code repository from GitHub.
  3. Create a build directory and navigate into it.
  4. Run CMake to configure the build.
  5. Compile the source code using Make.
  6. Install the compiled software.

Due to the complexity and the potential for dependency issues, compiling from source is not detailed further in this guide. If you choose this path, refer to the official Gqrx documentation on GitHub for the most accurate and up-to-date instructions.

Troubleshooting Common Issues

Conclusion

Installing Gqrx SDR on Ubuntu using the PPA is a straightforward process that unlocks a world of radio spectrum exploration. By following the steps outlined above, you can quickly set up Gqrx and begin experimenting with various radio signals. Remember to consult the official Gqrx documentation and community forums for further assistance and advanced configurations.

Sources

  1. Gqrx SDR - Downloadfair-use
  2. GNU Radio for Ubuntu - GNU Radio WikiCC-BY-SA-3.0
  3. Ubuntu Official Websitefair-use

Missing an answer?

Suggest a question and we'll generate an answer for it.