How To Install clementine on Debian 12
Introduction
In this tutorial we learn how to install clementine
on Debian 12.
What is clementine
clementine is:
Clementine is a multiplatform music player focusing on a fast and easy-to-use interface for searching and playing your music.
Summary of included features :
- Search and play your local music library.
- Listen to internet radio from ROCKRADIO.com, RadioTunes.com, IntergalacticFM, SomaFM, Magnatune, Jamendo, Digitally Imported, ClassicalRadio.com, JAZZRADIO.com, Icecast and Subsonic servers.
- Search and play songs you’ve uploaded to SeaFile, Box, Dropbox, Google Drive, and OneDrive.
- Create smart playlists and dynamic playlists.
- Tabbed playlists, import and export M3U, XSPF, PLS and ASX.
- CUE sheet support.
- Play audio CDs.
- Visualisations from projectM.
- Lyrics and artist biographies and photos.
- Transcode music into MP3, Ogg Vorbis, Ogg Speex, FLAC or AAC.
- Edit tags on MP3 and OGG files, organise your music.
- Fetch missing tags from MusicBrainz.
- Discover and download Podcasts.
- Download missing album cover art from Last.fm.
- Native desktop notifications using libnotify.
- Remote control using an Android device, a Wii Remote, MPRIS or the command-line.
- Copy music to your iPod, iPhone, MTP or mass-storage USB player.
- Queue manager.
There are three methods to install clementine
on Debian 12. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install clementine Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install clementine
using apt-get
by running the following command:
sudo apt-get -y install clementine
Install clementine Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install clementine
using apt
by running the following command:
sudo apt -y install clementine
Install clementine 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 clementine
using aptitude
by running the following command:
sudo aptitude -y install clementine
How To Uninstall clementine on Debian 12
To uninstall only the clementine
package we can use the following command:
sudo apt-get remove clementine
Uninstall clementine And Its Dependencies
To uninstall clementine
and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove clementine
Remove clementine Configurations and Data
To remove clementine
configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge clementine
Remove clementine configuration, data, and all of its dependencies
We can use the following command to remove clementine
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge clementine
Dependencies
clementine have the following dependencies:
- libasound2
- libc6
- libcdio19
- libchromaprint1
- libfftw3-double3
- libgcc-s1
- libglib2.0-0
- libgpod4
- libgstreamer-plugins-base1.0-0
- libgstreamer1.0-0
- liblastfm5-1
- libmtp9
- libmygpo-qt5-1
- libprotobuf32
- libpulse0
- libqt5concurrent5
- libqt5core5a
- libqt5dbus5
- libqt5gui5
- libqt5network5
- libqt5sql5
- libqt5widgets5
- libqt5x11extras5
- libsqlite3-0
- libstdc++6
- libtag1v5
- libx11-6
- zlib1g
References
Summary
In this tutorial we learn how to install clementine
package on Debian 12 using different package management tools: apt
, apt-get
and aptitude
.