How To Install gobjc-10-multilib on Ubuntu 20.04

In this tutorial we learn how to install gobjc-10-multilib on Ubuntu 20.04. gobjc-10-multilib is GNU Objective-C compiler (multilib support) GNU Objective-C compiler (multilib support)

Introduction

In this tutorial we learn how to install gobjc-10-multilib on Ubuntu 20.04.

What is gobjc-10-multilib

gobjc-10-multilib is:

This is the GNU Objective-C compiler, which compiles Objective-C on platforms supported by the gcc compiler.

This is a dependency package, depending on development packages for the non-default multilib architecture(s).

Package: gobjc-10-multilib Architecture: amd64 Version: 10-20200411-0ubuntu1 Priority: optional Section: universe/devel Source: gcc-10 Origin: Ubuntu Maintainer: Ubuntu Core developers [email protected] Original-Maintainer: Debian GCC Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 6 Depends: gcc-10-base (= 10-20200411-0ubuntu1), gobjc-10 (= 10-20200411-0ubuntu1), gcc-10-multilib (= 10-20200411-0ubuntu1), lib32objc-10-dev (= 10-20200411-0ubuntu1), libx32objc-10-dev (= 10-20200411-0ubuntu1) Filename: pool/universe/g/gcc-10/gobjc-10-multilib_10-20200411-0ubuntu1_amd64.deb Size: 1072 MD5sum: a5711aa54f18841e2ca42d106857ec31 SHA1: ed768b3120953aecb403c7096a7ef7a619ad4555 SHA256: a9c8e5e7320005c2f5deccff45bed94274468f21419a3814d9180812f88903dd Homepage: http://gcc.gnu.org/ Description-en: GNU Objective-C compiler (multilib support) This is the GNU Objective-C compiler, which compiles Objective-C on platforms supported by the gcc compiler.

This is a dependency package, depending on development packages for the non-default multilib architecture(s).

There are three methods to install gobjc-10-multilib 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 gobjc-10-multilib Using apt-get

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

sudo apt-get update

After updating apt database, We can install gobjc-10-multilib using apt-get by running the following command:

sudo apt-get -y install gobjc-10-multilib

Install gobjc-10-multilib Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install gobjc-10-multilib using apt by running the following command:

sudo apt -y install gobjc-10-multilib

Install gobjc-10-multilib 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 gobjc-10-multilib using aptitude by running the following command:

sudo aptitude -y install gobjc-10-multilib

How To Uninstall gobjc-10-multilib on Ubuntu 20.04

To uninstall only the gobjc-10-multilib package we can use the following command:

sudo apt-get remove gobjc-10-multilib

Uninstall gobjc-10-multilib And Its Dependencies

To uninstall gobjc-10-multilib and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove gobjc-10-multilib

Remove gobjc-10-multilib Configurations and Data

To remove gobjc-10-multilib configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge gobjc-10-multilib

Remove gobjc-10-multilib configuration, data, and all of its dependencies

We can use the following command to remove gobjc-10-multilib configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge gobjc-10-multilib

References

Summary

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