How To Install libaws3.3.2.2-dev on Ubuntu 18.04

In this tutorial we learn how to install libaws3.3.2.2-dev on Ubuntu 18.04. libaws3.3.2.2-dev is Ada Web Server development files

Introduction

In this tutorial we learn how to install libaws3.3.2.2-dev on Ubuntu 18.04.

What is libaws3.3.2.2-dev

libaws3.3.2.2-dev is:

AWS is a complete framework to develop Web based applications. The main part of the framework is the embedded Web server. This small yet powerful Web server can be embedded into your application so your application will be able to talk with a Web browser. Around this Web server a lot of services have been developed.

  • A Web parameters module. This module takes care of retrieving the forms or URL parameters and to build an associative table for easy access.
  • A session server, this is a very important module to be able to keep client’s data from page to page.
  • Support SOAP to develop Web Services.
  • A tool to generate Web Services stubs/skeletons from a WSDL document.
  • A template parser, this module makes it possible to completely separate the Web design from the code. No more scripting into your Web page.
  • Support for Secure Sockets (HTTPS/SSL), this is based on the GNU TLS library.
  • Support for large servers using dispatchers based on URI, request methods.
  • Support for virtual hosting (dispatchers based on the host name).
  • Support for server push.
  • A directory browser ready to be used in any application.
  • A status page to get many information about the current AWS server.
  • A log module. Log files keep information about all resources requested to the server.
  • Hotplug modules which can be loaded/unloaded dynamically to add specific features to a server.
  • A communication API to exchange data between applications using the HTTP protocol.
  • A configuration API to tune/change the server parameters without recompilation.
  • A client API to retrieve any Web page from a Web site.
  • A Web Page service to build a simple static page server.
  • Support for SMTP, LDAP and Jabber protocols.

There are three methods to install libaws3.3.2.2-dev on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libaws3.3.2.2-dev Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libaws3.3.2.2-dev using apt-get by running the following command:

sudo apt-get -y install libaws3.3.2.2-dev

Install libaws3.3.2.2-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libaws3.3.2.2-dev using apt by running the following command:

sudo apt -y install libaws3.3.2.2-dev

Install libaws3.3.2.2-dev 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 libaws3.3.2.2-dev using aptitude by running the following command:

sudo aptitude -y install libaws3.3.2.2-dev

How To Uninstall libaws3.3.2.2-dev on Ubuntu 18.04

To uninstall only the libaws3.3.2.2-dev package we can use the following command:

sudo apt-get remove libaws3.3.2.2-dev

Uninstall libaws3.3.2.2-dev And Its Dependencies

To uninstall libaws3.3.2.2-dev and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libaws3.3.2.2-dev

Remove libaws3.3.2.2-dev Configurations and Data

To remove libaws3.3.2.2-dev configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libaws3.3.2.2-dev

Remove libaws3.3.2.2-dev configuration, data, and all of its dependencies

We can use the following command to remove libaws3.3.2.2-dev configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libaws3.3.2.2-dev

References

Summary

In this tutorial we learn how to install libaws3.3.2.2-dev package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.