How To Install ibniz on Debian 10
Introduction
In this tutorial we learn how to install ibniz
on Debian 10.
What is ibniz
ibniz is:
IBNIZ is a virtual machine designed for extremely compact low-level audiovisual programs. The leading design goal is usefulness as a platform for demoscene productions, glitch art and similar projects. Mainsteam software engineering aspects are considered totally irrelevant.
There are three methods to install ibniz
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 ibniz Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install ibniz
using apt-get
by running the following command:
sudo apt-get -y install ibniz
Install ibniz Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install ibniz
using apt
by running the following command:
sudo apt -y install ibniz
Install ibniz 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 ibniz
using aptitude
by running the following command:
sudo aptitude -y install ibniz
How To Uninstall ibniz on Debian 10
To uninstall only the ibniz
package we can use the following command:
sudo apt-get remove ibniz
Uninstall ibniz And Its Dependencies
To uninstall ibniz
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove ibniz
Remove ibniz Configurations and Data
To remove ibniz
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge ibniz
Remove ibniz configuration, data, and all of its dependencies
We can use the following command to remove ibniz
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ibniz
Dependencies
ibniz have the following dependencies:
References
Summary
In this tutorial we learn how to install ibniz
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.