How To Install morla on Kali Linux
Introduction
In this tutorial we learn how to install morla
on Kali Linux.
What is morla
morla is:
With Morla you can manage more RDF documents simultaneously, visualize graphs, use templates for quick writing and exec SPARQL/RDQL queries.
You can import RDFS documents and use their content to write new RDF triples. Templates are also RDF documents, and they make Morla easily customizable and expandable. You can embed Javascript code in your templates so you can validate and change user inputs.
Morla is also a modular software so you can add functionality to the save, open and view procedures.
You can also use Morla as an RDF navigator, wandering among the net knots of the RDF documents present on internet exactly as we are used to do with web browsers.
There are three methods to install morla
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 morla Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install morla
using apt-get
by running the following command:
sudo apt-get -y install morla
Install morla Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install morla
using apt
by running the following command:
sudo apt -y install morla
Install morla 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 morla
using aptitude
by running the following command:
sudo aptitude -y install morla
How To Uninstall morla on Kali Linux
To uninstall only the morla
package we can use the following command:
sudo apt-get remove morla
Uninstall morla And Its Dependencies
To uninstall morla
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove morla
Remove morla Configurations and Data
To remove morla
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge morla
Remove morla configuration, data, and all of its dependencies
We can use the following command to remove morla
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge morla
Dependencies
morla have the following dependencies:
- libatk1.0-0
- libc6
- libcairo2
- libcurl3-gnutls
- libfontconfig1
- libfreetype6
- libgdk-pixbuf2.0-0
- libglib2.0-0
- libgtk2.0-0
- libnxml0
- libpango-1.0-0
- libpangocairo-1.0-0
- libpangoft2-1.0-0
- libraptor2-0
- librasqal3
- librdf0
- libxml2
- libxslt1.1
- gsettings-desktop-schemas
References
Summary
In this tutorial we learn how to install morla
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.