How To Install libgfortran5-alpha-cross on Ubuntu 20.04

In this tutorial we learn how to install libgfortran5-alpha-cross on Ubuntu 20.04. libgfortran5-alpha-cross is Runtime library for GNU Fortran applications Runtime library for GNU Fortran applications Runtime library for GNU Fortran applications

Introduction

In this tutorial we learn how to install libgfortran5-alpha-cross on Ubuntu 20.04.

What is libgfortran5-alpha-cross

libgfortran5-alpha-cross is:

Library needed for GNU Fortran applications linked against the shared library.

Package: libgfortran5-alpha-cross Architecture: all Version: 10.2.0-5ubuntu1~20.04cross1 Built-Using: gcc-10 (= 10.2.0-5ubuntu1~20.04) Priority: optional Section: universe/devel Source: gcc-10-cross-ports (5ubuntu2) Origin: Ubuntu Maintainer: Ubuntu Core developers [email protected] Original-Maintainer: Debian GCC Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 1642 Depends: gcc-10-cross-base-ports (= 10.2.0-5ubuntu1~20.04cross1), libc6.1-alpha-cross (>= 2.31), libgcc-s1-alpha-cross (>= 4.2) Filename: pool/universe/g/gcc-10-cross-ports/libgfortran5-alpha-cross_10.2.0-5ubuntu1~20.04cross1_all.deb Size: 366712 MD5sum: 291aae105856cd341785da5c94e6508c SHA1: 695812027ec1dddc7cdf12ee571a9727950b1227 SHA256: db92e554e4dde142d9ad7a3ed808f06b36d404f79022b18f9366d02f67d2d7dd SHA512: 23ce5aba351f7ed39472a872133b8e37bb204407c145f44fa856973f0daa5a3e0f0a5df38e9a24bf990fd528bd5c5a1b8828385bcb04737017e1c3de229319bb Homepage: http://gcc.gnu.org/ Description-en: Runtime library for GNU Fortran applications Library needed for GNU Fortran applications linked against the shared library.

Package: libgfortran5-alpha-cross Architecture: all Version: 10-20200411-0ubuntu1cross1 Built-Using: gcc-10 (= 10-20200411-0ubuntu1) Priority: optional Section: universe/devel Source: gcc-10-cross-ports (5ubuntu1) Origin: Ubuntu Maintainer: Ubuntu Core developers [email protected] Original-Maintainer: Debian GCC Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 1634 Depends: gcc-10-cross-base-ports (= 10-20200411-0ubuntu1cross1), libc6.1-alpha-cross (>= 2.31), libgcc-s1-alpha-cross (>= 4.2) Filename: pool/universe/g/gcc-10-cross-ports/libgfortran5-alpha-cross_10-20200411-0ubuntu1cross1_all.deb Size: 366224 MD5sum: 1e080f48f18bcf0846bbbf9538cb58b8 SHA1: 7c4d1f33fa1676677aeea90afff8db81a9cf8820 SHA256: a9d2527b40fc60d4d16e4a7e8b6fdeaffff570094e90061c43caad2afea25254 Homepage: http://gcc.gnu.org/ Description-en: Runtime library for GNU Fortran applications Library needed for GNU Fortran applications linked against the shared library.

There are three methods to install libgfortran5-alpha-cross on Ubuntu 20.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 libgfortran5-alpha-cross Using apt-get

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

sudo apt-get update

After updating apt database, We can install libgfortran5-alpha-cross using apt-get by running the following command:

sudo apt-get -y install libgfortran5-alpha-cross

Install libgfortran5-alpha-cross Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libgfortran5-alpha-cross using apt by running the following command:

sudo apt -y install libgfortran5-alpha-cross

Install libgfortran5-alpha-cross 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 libgfortran5-alpha-cross using aptitude by running the following command:

sudo aptitude -y install libgfortran5-alpha-cross

How To Uninstall libgfortran5-alpha-cross on Ubuntu 20.04

To uninstall only the libgfortran5-alpha-cross package we can use the following command:

sudo apt-get remove libgfortran5-alpha-cross

Uninstall libgfortran5-alpha-cross And Its Dependencies

To uninstall libgfortran5-alpha-cross and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove libgfortran5-alpha-cross

Remove libgfortran5-alpha-cross Configurations and Data

To remove libgfortran5-alpha-cross configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge libgfortran5-alpha-cross

Remove libgfortran5-alpha-cross configuration, data, and all of its dependencies

We can use the following command to remove libgfortran5-alpha-cross configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libgfortran5-alpha-cross

References

Summary

In this tutorial we learn how to install libgfortran5-alpha-cross package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.