How To Install quisk on Debian 12

Learn how to install quisk on Debian 12 with this tutorial. quisk is Software Defined Radio (SDR)

Introduction

In this tutorial we learn how to install quisk on Debian 12.

What is quisk

quisk is:

This is Quisk, a Software Defined Radio (SDR). You supply an antenna and a complex (I/Q) mixer to convert the radio spectrum to a low IF. Then send that IF to your computer using the sound card, Ethernet or USB. The Quisk software will read the I/Q data, tune it, filter it, demodulate it, and send the audio to headphones or speakers. Quisk has a microphone input and a key input so it can operate as a complete transceiver.

Quisk works with this hardware:

  • SoftRock connected to the sound card
  • Many other SDR’s connected to the sound card
  • SDR-IQ connected by USB
  • Perseus connected by USB
  • N2ADR hardware connected by Ethernet and IP
  • HiQSDR hardware connected by Ethernet and IP
  • The Hermes-Lite project at hermeslite.com
  • Quisk can be used as a pan adapter, and can control some radios

Quisk is small and simple, and has been designed so that it is easy to change Quisk to suit your own hardware. Quisk rhymes with “brisk”, and is QSK plus a few letters to make it easier to pronounce. QSK is a Q signal meaning full breakin CW operation, and Quisk has been designed for low latency. Quisk includes an input keying signal that can mute the audio and substitute a sidetone.

There are three methods to install quisk on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install quisk Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install quisk using apt-get by running the following command:

sudo apt-get -y install quisk

Install quisk Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install quisk using apt by running the following command:

sudo apt -y install quisk

Install quisk Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install quisk using aptitude by running the following command:

sudo aptitude -y install quisk

How To Uninstall quisk on Debian 12

To uninstall only the quisk package we can use the following command:

sudo apt-get remove quisk

Uninstall quisk And Its Dependencies

To uninstall quisk and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove quisk

Remove quisk Configurations and Data

To remove quisk configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge quisk

Remove quisk configuration, data, and all of its dependencies

We can use the following command to remove quisk configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge quisk

Dependencies

quisk have the following dependencies:

References

Summary

In this tutorial we learn how to install quisk package on Debian 12 using different package management tools: apt, apt-get and aptitude.