How To Install videocut on Debian 9

In this tutorial we learn how to install videocut on Debian 9. videocut is application for creating compositions of screenshots from videos

Introduction

In this tutorial we learn how to install videocut on Debian 9.

What is videocut

videocut is:

VideoCut is an open source desktop application specialized for creating compositions of screenshots from video files. Additional you can also export your whole composition in one image file with additional audio and video header information.

There are three methods to install videocut on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install videocut Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install videocut using apt-get by running the following command:

sudo apt-get -y install videocut

Install videocut Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install videocut using apt by running the following command:

sudo apt -y install videocut

Install videocut 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 videocut using aptitude by running the following command:

sudo aptitude -y install videocut

How To Uninstall videocut on Debian 9

To uninstall only the videocut package we can use the following command:

sudo apt-get remove videocut

Uninstall videocut And Its Dependencies

To uninstall videocut and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove videocut

Remove videocut Configurations and Data

To remove videocut configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge videocut

Remove videocut configuration, data, and all of its dependencies

We can use the following command to remove videocut configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge videocut

Dependencies

videocut have the following dependencies:

References

Summary

In this tutorial we learn how to install videocut package on Debian 9 using different package management tools: apt, apt-get and aptitude.