How To Install cdrskin on Kali Linux
Introduction
In this tutorial we learn how to install cdrskin on Kali Linux.
What is cdrskin
cdrskin is:
cdrskin strives to be a second source for the services traditionally provided by cdrecord. It writes data sessions to CD, DVD, or BD media. To CD media it may also write audio sessions. Multi-session is possible on all media types except DVD-R DL and fastly blanked DVD-RW.
This is a burner-only application. If you want a burner and ISO 9660 image manipulation application, please install the xorriso package.
There are three methods to install cdrskin 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 cdrskin Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install cdrskin using apt-get by running the following command:
sudo apt-get -y install cdrskinInstall cdrskin Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install cdrskin using apt by running the following command:
sudo apt -y install cdrskinInstall cdrskin 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 cdrskin using aptitude by running the following command:
sudo aptitude -y install cdrskinHow To Uninstall cdrskin on Kali Linux
To uninstall only the cdrskin package we can use the following command:
sudo apt-get remove cdrskinUninstall cdrskin And Its Dependencies
To uninstall cdrskin and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove cdrskinRemove cdrskin Configurations and Data
To remove cdrskin configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge cdrskinRemove cdrskin configuration, data, and all of its dependencies
We can use the following command to remove cdrskin configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge cdrskinDependencies
cdrskin have the following dependencies:
References
Summary
In this tutorial we learn how to install cdrskin package on Kali Linux using different package management tools: apt, apt-get and aptitude.