How To Install tntnet on Debian 10
Introduction
In this tutorial we learn how to install tntnet
on Debian 10.
What is tntnet
tntnet is:
Tntnet has a template-language called ecpp similar to PHP, JSP or Mason, where you can embed c++ code inside a HTML page to generate active content. The ecpp files are precompiled to C++ classes called components and compiled and linked into a shared library. This process is done at compiletime. The web server Tntnet needs only the compiled component library.
Because the web applications are compiled into native code, they are very fast and compact.
Components can call other components. So you can create building blocks of HTML parts and call them in other pages like subprocesses.
Requests are parsed by tntnet and the request information is easily accessible to the components. It supports GET and POST parameters and MIME multipart requests for file upload.
The template language has also support for internationalized applications. You can easily create web applications for different languages.
Other features are: cookies, HTTP upload, automatic request parameter parsing and conversion, automatic session management, scoped variables (application, request and session), internationalisation and keep-alive.
Logging is done through cxxtools, which provides a unique API for log4cpp, log4cxx or simple logging to files or console.
Tntnet is fully multithreaded and much work has been gone into making it scalable. It uses a dynamic pool of worker threads, which answer requests from HTTP clients.
There are three methods to install tntnet
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 tntnet Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install tntnet
using apt-get
by running the following command:
sudo apt-get -y install tntnet
Install tntnet Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install tntnet
using apt
by running the following command:
sudo apt -y install tntnet
Install tntnet 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 tntnet
using aptitude
by running the following command:
sudo aptitude -y install tntnet
How To Uninstall tntnet on Debian 10
To uninstall only the tntnet
package we can use the following command:
sudo apt-get remove tntnet
Uninstall tntnet And Its Dependencies
To uninstall tntnet
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove tntnet
Remove tntnet Configurations and Data
To remove tntnet
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge tntnet
Remove tntnet configuration, data, and all of its dependencies
We can use the following command to remove tntnet
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge tntnet
Dependencies
tntnet have the following dependencies:
References
Summary
In this tutorial we learn how to install tntnet
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.