How To Install ledgersmb on Kali Linux
Introduction
In this tutorial we learn how to install ledgersmb on Kali Linux.
What is ledgersmb
ledgersmb is:
LedgerSMB is a full featured double-entry financial accounting and Enterprise Resource Planning system accessed via a web browser (Perl/JS with a PostgreSQL backend) which offers “Accounts Receivable”, “Accounts Payable” and “General Ledger” tracking as well as inventory control and fixed assets handling. The LedgerSMB client can be a web browser or a programmed API call. The goal of the LedgerSMB project is to bring high quality ERP and accounting capabilities to Small and Midsize Businesses.
The application now defaults to being made available locally on port 5762 and being run directly by Starman instead of by Apache. If other access is needed, a Reverse Proxy can be configured locally using Apache, Nginx, Lighttpd, or Varnish.
For more information, please see /usr/share/doc/ledgersmb/README.Debian.
There are three methods to install ledgersmb 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 ledgersmb Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install ledgersmb using apt-get by running the following command:
sudo apt-get -y install ledgersmbInstall ledgersmb Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install ledgersmb using apt by running the following command:
sudo apt -y install ledgersmbInstall ledgersmb 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 ledgersmb using aptitude by running the following command:
sudo aptitude -y install ledgersmbHow To Uninstall ledgersmb on Kali Linux
To uninstall only the ledgersmb package we can use the following command:
sudo apt-get remove ledgersmbUninstall ledgersmb And Its Dependencies
To uninstall ledgersmb and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove ledgersmbRemove ledgersmb Configurations and Data
To remove ledgersmb configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge ledgersmbRemove ledgersmb configuration, data, and all of its dependencies
We can use the following command to remove ledgersmb configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ledgersmbDependencies
ledgersmb have the following dependencies:
- dpkg
- adduser
- libcarp-always-perl
- libcgi-emulate-psgi-perl
- libcgi-simple-perl
- libclass-c3-xs-perl
- libconfig-inifiles-perl
- libdata-uuid-perl
- libdatetime-perl
- libdatetime-format-strptime-perl
- libdbd-pg-perl
- libdbi-perl
- libhtml-escape-perl
- libhttp-exception-perl
- libio-stringy-perl
- libjs-dojo-dijit
- libjson-perl
- liblocale-codes-perl
- liblocale-maketext-lexicon-perl
- liblog-log4perl-perl
- libnamespace-autoclean-perl
- libmime-lite-perl
- libmime-types-perl
- libmoose-perl
- libmoosex-nonmoose-perl
- libnumber-format-perl
- libpgobject-perl
- libpgobject-simple-perl
- libpgobject-simple-role-perl
- libpgobject-type-bigfloat-perl
- libpgobject-type-bytestring-perl
- libpgobject-type-datetime-perl
- libpgobject-util-dbmethod-perl
- libpgobject-util-dbadmin-perl
- libplack-perl
- libplack-builder-conditionals-perl
- libplack-middleware-reverseproxy-perl
- libplack-request-withencoding-perl
- libtemplate-perl
- libtext-markdown-perl
- libtry-tiny-perl
- libversion-compare-perl
- libxml-simple-perl
- perl
- postgresql-client
- postgresql-contrib
- starman
- ucf
- debconf
- perl
References
Summary
In this tutorial we learn how to install ledgersmb package on Kali Linux using different package management tools: apt, apt-get and aptitude.