How To Install yatm on Kali Linux
Introduction
In this tutorial we learn how to install yatm on Kali Linux.
What is yatm
yatm is:
Yatm (Yet Another Time Machine) is a very simple command line audio player. Its main purpose is to play audio files at a different tempo while retaining the original sounds pitch. This is very useful for listening to audiobooks at a slightly higher speed than they were originally recorded with. It can also be helpful when listening to musical passages at a slower speed to be able to distinguish the different notes more easily.
Changing the pitch while keeping the tempo is also supported. Musical cents and semitones can be used to specify pitch change. This makes it easy to use for musicians. The notes you have are in G but the recording you’d like to play along with is in F? No problem, transpose the recording up two semitones. You’d like to play along with this baroque recording that uses original pitch? Just tune the music up about 80 cents and you should be fine.
There are three methods to install yatm 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 yatm Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install yatm using apt-get by running the following command:
sudo apt-get -y install yatmInstall yatm Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install yatm using apt by running the following command:
sudo apt -y install yatmInstall yatm 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 yatm using aptitude by running the following command:
sudo aptitude -y install yatmHow To Uninstall yatm on Kali Linux
To uninstall only the yatm package we can use the following command:
sudo apt-get remove yatmUninstall yatm And Its Dependencies
To uninstall yatm and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove yatmRemove yatm Configurations and Data
To remove yatm configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge yatmRemove yatm configuration, data, and all of its dependencies
We can use the following command to remove yatm configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge yatmDependencies
yatm have the following dependencies:
References
Summary
In this tutorial we learn how to install yatm package on Kali Linux using different package management tools: apt, apt-get and aptitude.