How To Install aws on Fedora 34

aws is Ada Web Server Ada Web Server

Introduction

In this tutorial we learn how to install aws on Fedora 34.

What is aws

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 standard Web browser Around this Web server a lot of services have been developed. aws 2020 4.fc34 x86_64 2.1 M aws-2020-4.fc34.src.rpm fedora Ada Web Server http GPLv3+ with exceptions and GPLv2+ 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 standard Web browser Around this Web server a lot of services have been developed.

We can use yum or dnf to install aws on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install aws.

Install aws on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install aws using dnf by running the following command:

sudo dnf -y install aws

Install aws on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install aws using yum by running the following command:

sudo yum -y install aws

How To Uninstall aws on Fedora 34

To uninstall only the aws package we can use the following command:

sudo dnf remove aws

aws Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/56
/usr/lib/.build-id/56/753c9155c8ce8a52c156e8963ffc10524ac266
/usr/lib64/aws
/usr/lib64/aws/libaws-2020.so
/usr/lib64/libaws-2020.so
/usr/lib64/libaws_ssl-2020.so
/usr/share/licenses/aws
/usr/share/licenses/aws/COPYING3
/usr/lib/.build-id
/usr/lib/.build-id/67
/usr/lib/.build-id/67/f5f916678e46c377a64f85396ea53174b1393f
/usr/lib/aws
/usr/lib/aws/libaws-2020.so
/usr/lib/libaws-2020.so
/usr/lib/libaws_ssl-2020.so
/usr/share/licenses/aws
/usr/share/licenses/aws/COPYING3

References

Summary

In this tutorial we learn how to install aws on Fedora 34 using yum and dnf.