How To Install mediaconch-gui on Debian 12
Introduction
In this tutorial we learn how to install mediaconch-gui on Debian 12.
What is mediaconch-gui
mediaconch-gui is:
MediaConch is an extensible, open source software project consisting of an implementation checker, policy checker, reporter, and fixer that targets preservation-level audiovisual files (specifically Matroska, Linear Pulse Code Modulation (LPCM) and FF Video Codec 1 (FFV1)) for use in memory institutions, providing detailed and batch-level conformance checking via an adaptable and flexible application program interface accessible by the command line, a graphical user interface, or a web-based shell.
This package contains the GUI application.
There are three methods to install mediaconch-gui 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 mediaconch-gui Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install mediaconch-gui using apt-get by running the following command:
sudo apt-get -y install mediaconch-gui
Install mediaconch-gui Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install mediaconch-gui using apt by running the following command:
sudo apt -y install mediaconch-gui
Install mediaconch-gui 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 mediaconch-gui using aptitude by running the following command:
sudo aptitude -y install mediaconch-gui
How To Uninstall mediaconch-gui on Debian 12
To uninstall only the mediaconch-gui package we can use the following command:
sudo apt-get remove mediaconch-gui
Uninstall mediaconch-gui And Its Dependencies
To uninstall mediaconch-gui and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove mediaconch-gui
Remove mediaconch-gui Configurations and Data
To remove mediaconch-gui configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge mediaconch-gui
Remove mediaconch-gui configuration, data, and all of its dependencies
We can use the following command to remove mediaconch-gui configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge mediaconch-gui
Dependencies
mediaconch-gui have the following dependencies:
- libc6
- libevent-2.1-7
- libgcc-s1
- libjansson4
- libmediainfo0v5
- libqt5core5a
- libqt5gui5
- libqt5webkit5
- libqt5widgets5
- libsqlite3-0
- libstdc++6
- libxml2
- libxslt1.1
- libzen0v5
- zlib1g
References
Summary
In this tutorial we learn how to install mediaconch-gui package on Debian 12 using different package management tools: apt, apt-get and aptitude.