How To Install shairport-sync on Kali Linux
Introduction
In this tutorial we learn how to install shairport-sync on Kali Linux.
What is shairport-sync
shairport-sync is:
Plays audio streamed from iTunes, iOS devices and third-party AirPlay sources such as ForkedDaapd and others. Audio played by a Shairport Sync-powered device stays synchronised with the source and hence with similar devices playing the same source. In this way, synchronised multi-room audio is possible without difficulty.
Shairport Sync does not support AirPlay video or photo streaming.
There are three methods to install shairport-sync 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 shairport-sync Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install shairport-sync using apt-get by running the following command:
sudo apt-get -y install shairport-syncInstall shairport-sync Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install shairport-sync using apt by running the following command:
sudo apt -y install shairport-syncInstall shairport-sync 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 updateAfter updating apt database, We can install shairport-sync using aptitude by running the following command:
sudo aptitude -y install shairport-syncHow To Uninstall shairport-sync on Kali Linux
To uninstall only the shairport-sync package we can use the following command:
sudo apt-get remove shairport-syncUninstall shairport-sync And Its Dependencies
To uninstall shairport-sync and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove shairport-syncRemove shairport-sync Configurations and Data
To remove shairport-sync configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge shairport-syncRemove shairport-sync configuration, data, and all of its dependencies
We can use the following command to remove shairport-sync configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge shairport-syncDependencies
shairport-sync have the following dependencies:
- init-system-helpers
- adduser
- avahi-daemon
- libasound2
- libavahi-client3
- libavahi-common3
- libc6
- libconfig9
- libdaemon0
- libgcc-s1
- libglib2.0-0
- libjack-jackd2-0
- libmosquitto1
- libpopt0
- libpulse0
- libsndfile1
- libsoxr0
- libssl1.1
- libstdc++6
References
Summary
In this tutorial we learn how to install shairport-sync package on Kali Linux using different package management tools: apt, apt-get and aptitude.