Introduction
In this tutorial we learn how to install binutils-arm-linux-gnueabihf-dbg
on Ubuntu 20.04.
What is binutils-arm-linux-gnueabihf-dbg
binutils-arm-linux-gnueabihf-dbg is:
This package provides debug symbols for binutils-arm-linux-gnueabihf.
Package: binutils-arm-linux-gnueabihf-dbg
Architecture: amd64
Version: 2.34-6ubuntu1
Multi-Arch: foreign
Priority: optional
Section: debug
Source: binutils
Origin: Ubuntu
Maintainer: Ubuntu Developers [email protected]
Original-Maintainer: Matthias Klose [email protected]
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 44151
Depends: binutils-arm-linux-gnueabihf (= 2.34-6ubuntu1)
Filename: pool/main/b/binutils/binutils-arm-linux-gnueabihf-dbg_2.34-6ubuntu1_amd64.deb
Size: 41675928
MD5sum: c695671f878e38f055761f8e00ddd737
SHA1: 554478c0054dd4bc41bf7a791b8f156d9736724f
SHA256: b1ee2ab139bfe4e6b047f321ed60822d5bd30fcee28220617ffcf38fbf147a26
Homepage: https://www.gnu.org/software/binutils/
Description-en: GNU binary utilities, for arm-linux-gnueabihf target (debug symbols)
This package provides debug symbols for binutils-arm-linux-gnueabihf.
There are three methods to install binutils-arm-linux-gnueabihf-dbg
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 binutils-arm-linux-gnueabihf-dbg Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install binutils-arm-linux-gnueabihf-dbg
using apt-get
by running the following command:
sudo apt-get -y install binutils-arm-linux-gnueabihf-dbg
Install binutils-arm-linux-gnueabihf-dbg Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install binutils-arm-linux-gnueabihf-dbg
using apt
by running the following command:
sudo apt -y install binutils-arm-linux-gnueabihf-dbg
Install binutils-arm-linux-gnueabihf-dbg 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 binutils-arm-linux-gnueabihf-dbg
using aptitude
by running the following command:
sudo aptitude -y install binutils-arm-linux-gnueabihf-dbg
How To Uninstall binutils-arm-linux-gnueabihf-dbg on Ubuntu 20.04
To uninstall only the binutils-arm-linux-gnueabihf-dbg
package we can use the following command:
sudo apt-get remove binutils-arm-linux-gnueabihf-dbg
Uninstall binutils-arm-linux-gnueabihf-dbg And Its Dependencies
To uninstall binutils-arm-linux-gnueabihf-dbg
and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove binutils-arm-linux-gnueabihf-dbg
Remove binutils-arm-linux-gnueabihf-dbg Configurations and Data
To remove binutils-arm-linux-gnueabihf-dbg
configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge binutils-arm-linux-gnueabihf-dbg
Remove binutils-arm-linux-gnueabihf-dbg configuration, data, and all of its dependencies
We can use the following command to remove binutils-arm-linux-gnueabihf-dbg
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge binutils-arm-linux-gnueabihf-dbg
References
Summary
In this tutorial we learn how to install binutils-arm-linux-gnueabihf-dbg
package on Ubuntu 20.04 using different package management tools: apt
, apt-get
and aptitude
.