How To Install atomicparsley on Kali Linux
Introduction
In this tutorial we learn how to install atomicparsley on Kali Linux.
What is atomicparsley
atomicparsley is:
AtomicParsley is a lightweight command line program for reading, parsing and setting metadata into MPEG-4 files supporting these styles of metadata:
- iTunes-style metadata into .mp4, .m4a, .m4p, .m4v, .m4b files
- 3gp-style assets (3GPP TS 26.444 version 6.4.0 Release 6 specification conforming) in 3GPP, 3GPP2, MobileMP4 & derivatives
- ISO copyright notices at movie & track level for MPEG-4 & derivative files
- uuid private user extension text & file embedding for MPEG-4 & derivative files
There are three methods to install atomicparsley 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 atomicparsley Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install atomicparsley using apt-get by running the following command:
sudo apt-get -y install atomicparsleyInstall atomicparsley Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install atomicparsley using apt by running the following command:
sudo apt -y install atomicparsleyInstall atomicparsley 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 atomicparsley using aptitude by running the following command:
sudo aptitude -y install atomicparsleyHow To Uninstall atomicparsley on Kali Linux
To uninstall only the atomicparsley package we can use the following command:
sudo apt-get remove atomicparsleyUninstall atomicparsley And Its Dependencies
To uninstall atomicparsley and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove atomicparsleyRemove atomicparsley Configurations and Data
To remove atomicparsley configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge atomicparsleyRemove atomicparsley configuration, data, and all of its dependencies
We can use the following command to remove atomicparsley configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge atomicparsleyDependencies
atomicparsley have the following dependencies:
References
Summary
In this tutorial we learn how to install atomicparsley package on Kali Linux using different package management tools: apt, apt-get and aptitude.