How To Install glue-schema on Debian 9
Introduction
In this tutorial we learn how to install glue-schema
on Debian 9.
What is glue-schema
glue-schema is:
The GLUE specification is an information model for Grid entities such as computing clusters and data storage facilities. As a conceptual model, it is designed to be independent from the concrete data models adopted for its implementation. The specification can be rendered to several concrete data models such as XML Schema, LDAP Schema or SQL.
This package provides LDAP schema files for the GLUE 1.3 and GLUE 2.0 Schema.
There are three methods to install glue-schema
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 glue-schema Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install glue-schema
using apt-get
by running the following command:
sudo apt-get -y install glue-schema
Install glue-schema Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install glue-schema
using apt
by running the following command:
sudo apt -y install glue-schema
Install glue-schema 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 glue-schema
using aptitude
by running the following command:
sudo aptitude -y install glue-schema
How To Uninstall glue-schema on Debian 9
To uninstall only the glue-schema
package we can use the following command:
sudo apt-get remove glue-schema
Uninstall glue-schema And Its Dependencies
To uninstall glue-schema
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove glue-schema
Remove glue-schema Configurations and Data
To remove glue-schema
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge glue-schema
Remove glue-schema configuration, data, and all of its dependencies
We can use the following command to remove glue-schema
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge glue-schema
Dependencies
glue-schema have the following dependencies:
References
Summary
In this tutorial we learn how to install glue-schema
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.