How To Install crip on Debian 10
Introduction
In this tutorial we learn how to install crip
on Debian 10.
What is crip
crip is:
crip creates Ogg Vorbis/FLAC/MP3 files under UNIX/Linux. It is well-suited for anyone (especially the perfectionist) who seeks to make a lot of files from CDs and have them all properly labeled and professional-quality with a minimum of hassle and yet still have flexibility and full control over everything. Current versions of crip only support Ogg Vorbis and FLAC.
This script is special because it is capable of doing group vorbisgain/replaygain and/or normalization (adjust the volume to be as loud as possible without clipping/distortion) and group labelling/tagging, which makes it easy to allow a group of tracks to be treated as one piece. It can also trim off the silence at the beginning and end of these tracks/groups.
There are three methods to install crip
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install crip Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install crip
using apt-get
by running the following command:
sudo apt-get -y install crip
Install crip Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install crip
using apt
by running the following command:
sudo apt -y install crip
Install crip Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install crip
using aptitude
by running the following command:
sudo aptitude -y install crip
How To Uninstall crip on Debian 10
To uninstall only the crip
package we can use the following command:
sudo apt-get remove crip
Uninstall crip And Its Dependencies
To uninstall crip
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove crip
Remove crip Configurations and Data
To remove crip
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge crip
Remove crip configuration, data, and all of its dependencies
We can use the following command to remove crip
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge crip
Dependencies
crip have the following dependencies:
References
Summary
In this tutorial we learn how to install crip
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.