How To Install libmojomojo-perl on Debian 10
Introduction
In this tutorial we learn how to install libmojomojo-perl
on Debian 10.
What is libmojomojo-perl
libmojomojo-perl is:
MojoMojo is a feature-rich content management system, borrowing many useful concepts from wikis and blogs. It provides a simple interface to maintain a full tree-structure of pages, connecting them in various ways. It has full support for tracking document versions, so you can always revert changes or see what has changed with a simple AJAX-based diff system.
MojoMojo includes a variety of other features including built-in fulltext search, live AJAX previews of edited pages, and RSS feeds for every page. To discover more ways MojoMojo can be useful to your organization, please visit URL:http://mojomojo.org.
There are three methods to install libmojomojo-perl
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libmojomojo-perl Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libmojomojo-perl
using apt-get
by running the following command:
sudo apt-get -y install libmojomojo-perl
Install libmojomojo-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libmojomojo-perl
using apt
by running the following command:
sudo apt -y install libmojomojo-perl
Install libmojomojo-perl 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 libmojomojo-perl
using aptitude
by running the following command:
sudo aptitude -y install libmojomojo-perl
How To Uninstall libmojomojo-perl on Debian 10
To uninstall only the libmojomojo-perl
package we can use the following command:
sudo apt-get remove libmojomojo-perl
Uninstall libmojomojo-perl And Its Dependencies
To uninstall libmojomojo-perl
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libmojomojo-perl
Remove libmojomojo-perl Configurations and Data
To remove libmojomojo-perl
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libmojomojo-perl
Remove libmojomojo-perl configuration, data, and all of its dependencies
We can use the following command to remove libmojomojo-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmojomojo-perl
Dependencies
libmojomojo-perl have the following dependencies:
- perl
- libalgorithm-diff-perl
- libalgorithm-merge-perl
- libarchive-zip-perl
- libcache-fastmmap-perl
- libcatalyst-action-renderview-perl
- libcatalyst-authentication-store-dbix-class-perl
- libcatalyst-controller-html-formfu-perl
- libcatalyst-model-dbic-schema-perl
- libcatalyst-perl
- libcatalyst-plugin-authentication-perl
- libcatalyst-plugin-cache-perl
- libcatalyst-plugin-configloader-perl
- libcatalyst-plugin-i18n-perl
- libcatalyst-plugin-session-state-cookie-perl
- libcatalyst-plugin-session-store-cache-perl
- libcatalyst-plugin-setenv-perl
- libcatalyst-plugin-static-simple-perl
- libcatalyst-plugin-subrequest-perl
- libcatalyst-view-email-perl
- libcatalyst-view-json-perl
- libcatalyst-view-tt-perl
- libconfig-general-perl
- libconfig-jfdi-perl
- libcrypt-cbc-perl
- libdata-page-perl
- libdatetime-format-mail-perl
- libdatetime-perl
- libdbd-sqlite3-perl
- libdbix-class-datetime-epoch-perl
- libdbix-class-encodedcolumn-perl
- libdbix-class-perl
- libdbix-class-timestamp-perl
- libfile-copy-recursive-perl
- libfile-mmagic-perl
- libfile-slurp-perl
- libhtml-formfu-model-dbic-perl
- libhtml-formfu-perl
- libhtml-parser-perl
- libhtml-strip-perl
- libhtml-tagcloud-perl
- libimage-exiftool-perl
- libimage-math-constrain-perl
- libimager-perl
- libio-stringy-perl
- libjs-jquery
- libjs-jquery-form
- libjs-jquery-livequery
- libjs-jquery-ui
- libkinosearch1-perl
- libmodule-pluggable-ordered-perl
- libmoose-perl
- libmro-compat-perl
- libnumber-format-perl
- libplack-perl
- libtemplate-perl
- libtemplate-plugin-javascript-perl
- libterm-prompt-perl
- libtext-context-perl
- libtext-multimarkdown-perl
- libtext-password-pronounceable-perl
- libtext-textile-perl
- liburi-perl
- libyaml-perl
References
Summary
In this tutorial we learn how to install libmojomojo-perl
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.