How To Install mystiq on Kali Linux
Introduction
In this tutorial we learn how to install mystiq on Kali Linux.
What is mystiq
mystiq is:
Powerful media converter. FFmpeg can read audio and video files in various formats and convert them into other formats. MystiQ features an intuitive graphical interface and a rich set of presets to help you convert media files within a few clicks. Advanced users can also adjust conversion parameters in detail.
There are three methods to install mystiq 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 mystiq Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install mystiq using apt-get by running the following command:
sudo apt-get -y install mystiqInstall mystiq Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install mystiq using apt by running the following command:
sudo apt -y install mystiqInstall mystiq 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 mystiq using aptitude by running the following command:
sudo aptitude -y install mystiqHow To Uninstall mystiq on Kali Linux
To uninstall only the mystiq package we can use the following command:
sudo apt-get remove mystiqUninstall mystiq And Its Dependencies
To uninstall mystiq and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove mystiqRemove mystiq Configurations and Data
To remove mystiq configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge mystiqRemove mystiq configuration, data, and all of its dependencies
We can use the following command to remove mystiq configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge mystiqDependencies
mystiq have the following dependencies:
- ffmpeg
- qml-module-qtmultimedia
- qml-module-qtquick-dialogs
- qml-module-qtquick2
- libnotify-bin
- sox
- libc6
- libgcc-s1
- libqt5core5a
- libqt5dbus5
- libqt5gui5
- libqt5multimedia5
- libqt5multimediawidgets5
- libqt5network5
- libqt5quickwidgets5
- libqt5widgets5
- libstdc++6
References
Summary
In this tutorial we learn how to install mystiq package on Kali Linux using different package management tools: apt, apt-get and aptitude.