How To Install crystal-facet-uml on Kali Linux
Introduction
In this tutorial we learn how to install crystal-facet-uml
on Kali Linux.
What is crystal-facet-uml
crystal-facet-uml is:
crystal-facet-uml creates sysml/uml diagrams to document system and software architecture.
As software architect, you create a set of diagrams describing use-cases, requirements, structural views, behavioral and deployment views. crystal-facet-uml keeps element names and element hierarchies consistent. It exports diagrams in svg, pdf, ps and png formats to be used in text processing systems like DocBook, html, LaTeX. crystal-facet-uml exports the model to xmi format. This tool runs on your local PC and is based on glib, gdk, gtk, cairo, pango, sqlite.
There are three methods to install crystal-facet-uml
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install crystal-facet-uml Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install crystal-facet-uml
using apt-get
by running the following command:
sudo apt-get -y install crystal-facet-uml
Install crystal-facet-uml Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install crystal-facet-uml
using apt
by running the following command:
sudo apt -y install crystal-facet-uml
Install crystal-facet-uml Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install crystal-facet-uml
using aptitude
by running the following command:
sudo aptitude -y install crystal-facet-uml
How To Uninstall crystal-facet-uml on Kali Linux
To uninstall only the crystal-facet-uml
package we can use the following command:
sudo apt-get remove crystal-facet-uml
Uninstall crystal-facet-uml And Its Dependencies
To uninstall crystal-facet-uml
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove crystal-facet-uml
Remove crystal-facet-uml Configurations and Data
To remove crystal-facet-uml
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge crystal-facet-uml
Remove crystal-facet-uml configuration, data, and all of its dependencies
We can use the following command to remove crystal-facet-uml
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge crystal-facet-uml
Dependencies
crystal-facet-uml have the following dependencies:
- libc6
- libcairo2
- libgdk-pixbuf-2.0-0
- libglib2.0-0
- libgtk-3-0
- libpango-1.0-0
- libpangocairo-1.0-0
- libsqlite3-0
References
Summary
In this tutorial we learn how to install crystal-facet-uml
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.