How To Install eye on Kali Linux
Introduction
In this tutorial we learn how to install eye on Kali Linux.
What is eye
eye is:
Euler Yet another proof Engine (EYE) is a reasoning engine supporting the Semantic Web layers. It performs semibackward chaining and it supports Euler paths. Via N3 it is interoperable with Cwm.
Semibackward chaining is backward chaining for rules using <= in N3 and forward chaining for rules using => in N3. This can be seen in EYE Reasoning.
Euler paths are roughly “don’t step in your own steps” which is inspired by what Leonhard Euler discovered in 1736 for the K?nigsberg Bridge Problem. EYE sees the rule P => C as P & NOT(C) => C.
Notation3 (N3) is a shorthand non-XML serialization of Resource Description Framework (RDF) models, designed with human-readability in mind: N3 is much more compact and readable than XML RDF notation.
Resource Description Framework (RDF) is a standard model for data interchange on the Web.
There are three methods to install eye 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 eye Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install eye using apt-get by running the following command:
sudo apt-get -y install eyeInstall eye Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install eye using apt by running the following command:
sudo apt -y install eyeInstall eye 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 updateAfter updating apt database, We can install eye using aptitude by running the following command:
sudo aptitude -y install eyeHow To Uninstall eye on Kali Linux
To uninstall only the eye package we can use the following command:
sudo apt-get remove eyeUninstall eye And Its Dependencies
To uninstall eye and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove eyeRemove eye Configurations and Data
To remove eye configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge eyeRemove eye configuration, data, and all of its dependencies
We can use the following command to remove eye configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge eyeDependencies
eye have the following dependencies:
References
Summary
In this tutorial we learn how to install eye package on Kali Linux using different package management tools: apt, apt-get and aptitude.