How To Install rumur on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
3 minutes • 463 words
Introduction
In this tutorial we learn how to install rumur on Ubuntu.
What is rumur
rumur is:
Rumur is a model checker for use in the formal verification of finite state machines specified in the Murphi modelling language. It is based on a previous tool, CMurphi, and attempts to provide an approximate drop-in replacement for CMurphi.
Rumur works by reading an input file describing a collection of state variables and transition rules, from which it generates a C program to verify safety and security properties of this state machine. The generated verifier works by exhaustively exploring the state space, checking for violation of invariants or deadlocks.
In comparison to CMurphi, Rumur generates a verifier that runs significantly faster and uses less memory on large input problems. Rumur comes with an optional wrapper script, rumur-run, that streamlines the process of generating a verifier, compiling it, and then running it. This wrapper requires Python.
There are three methods to install rumur on Ubuntu. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install rumur Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install rumur using apt-get by running the following command:
sudo apt-get -y install rumur
Install rumur Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install rumur using apt by running the following command:
sudo apt -y install rumur
Install rumur 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 Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install rumur using aptitude by running the following command:
sudo aptitude -y install rumur
How To Uninstall rumur on Ubuntu
To uninstall only the rumur package we can use the following command:
sudo apt-get remove rumur
Uninstall rumur And Its Dependencies
To uninstall rumur and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove rumur
Remove rumur Configurations and Data
To remove rumur configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge rumur
Remove rumur configuration, data, and all of its dependencies
We can use the following command to remove rumur configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge rumur
Dependencies
rumur have the following dependencies:
References
Summary
In this tutorial we learn how to install rumur package on Ubuntu using different package management tools: apt, apt-get and aptitude.