How To Install welle.io on Kali Linux
Introduction
In this tutorial we learn how to install welle.io
on Kali Linux.
What is welle.io
welle.io is:
This is an open source DAB and DAB+ software defined radio (SDR) with support for rtl-sdr (RTL2832U) and airspy. It supports high DPI and touch displays and it runs even on cheap computers like Raspberry Pi 2/3 and 100?? China Windows 10 tablets.
There are three methods to install welle.io
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install welle.io Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install welle.io
using apt-get
by running the following command:
sudo apt-get -y install welle.io
Install welle.io Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install welle.io
using apt
by running the following command:
sudo apt -y install welle.io
Install welle.io Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install welle.io
using aptitude
by running the following command:
sudo aptitude -y install welle.io
How To Uninstall welle.io on Kali Linux
To uninstall only the welle.io
package we can use the following command:
sudo apt-get remove welle.io
Uninstall welle.io And Its Dependencies
To uninstall welle.io
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove welle.io
Remove welle.io Configurations and Data
To remove welle.io
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge welle.io
Remove welle.io configuration, data, and all of its dependencies
We can use the following command to remove welle.io
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge welle.io
Dependencies
welle.io have the following dependencies:
- libairspy0
- libasound2
- libc6
- libfaad2
- libfftw3-single3
- libgcc-s1
- libmp3lame0
- libmpg123-0
- libqt5charts5
- libqt5core5a
- libqt5gui5
- libqt5multimedia5
- libqt5qml5
- libqt5quick5
- libqt5quickcontrols2-5
- libqt5widgets5
- librtlsdr0
- libsoapysdr0.7
- libstdc++6
- libqt5quick5
- libqt5multimedia5-plugins
- qml-module-qt-labs-settings
- qml-module-qtquick-window2
- qml-module-qtquick2
- qml-module-qtquick-layouts
- qml-module-qtquick-dialogs
- qml-module-qtquick-controls2
- qml-module-qtquick-controls
- qml-module-qtquick-templates2
- qml-module-qtquick-privatewidgets
- qml-module-qtquick-localstorage
- qml-module-qtcharts
- qml-module-qtgraphicaleffects
References
Summary
In this tutorial we learn how to install welle.io
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.