How To Install registry-tools on Ubuntu 20.04

In this tutorial we learn how to install registry-tools on Ubuntu 20.04. registry-tools is tools for viewing and manipulating the Windows registry tools for viewing and manipulating the Windows registry tools for viewing and manipulating the Windows registry

Introduction

In this tutorial we learn how to install registry-tools on Ubuntu 20.04.

What is registry-tools

registry-tools is:

Samba is an implementation of the SMB/CIFS protocol for Unix systems, providing support for cross-platform file sharing with Microsoft Windows, OS X, and other Unix systems. Samba can also function as a domain controller or member server in both NT4-style and Active Directory domains.

This package contains tools for viewing and manipulating the binary “registry” found on Windows machines, both locally and remote.

Package: registry-tools Architecture: amd64 Version: 2:4.11.6+dfsg-0ubuntu1.8 Priority: optional Section: universe/net Source: samba Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian Samba Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 295 Depends: samba-libs (= 2:4.11.6+dfsg-0ubuntu1.8), libc6 (>= 2.8), libpopt0 (>= 1.14), libreadline8 (>= 6.0), libtalloc2 (>= 2.2.0~), libwbclient0 (= 2:4.11.6+dfsg-0ubuntu1.8) Filename: pool/universe/s/samba/registry-tools_4.11.6+dfsg-0ubuntu1.8_amd64.deb Size: 32488 MD5sum: c3218e678b97824c0cc71065a732c603 SHA1: 6fec27dfa510a804bab2f55c885a61ae5b400c6c SHA256: 75c319b1a505b06bc508e028fac64bcd706b65f422f4f7a1d635ae3a28bd817d SHA512: 1fcf05b06307748478a3dda3f44b386b1351a57b96f7eb9a5572afbe2ed66f4cd35df134e817b91b1e5541dbed744bda501d3a3ce969eadf756f950bf441a602 Homepage: http://www.samba.org Description-en: tools for viewing and manipulating the Windows registry Samba is an implementation of the SMB/CIFS protocol for Unix systems, providing support for cross-platform file sharing with Microsoft Windows, OS X, and other Unix systems. Samba can also function as a domain controller or member server in both NT4-style and Active Directory domains.

This package contains tools for viewing and manipulating the binary “registry” found on Windows machines, both locally and remote.

Package: registry-tools Architecture: amd64 Version: 2:4.11.6+dfsg-0ubuntu1 Priority: optional Section: universe/net Source: samba Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian Samba Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 289 Depends: samba-libs (= 2:4.11.6+dfsg-0ubuntu1), libc6 (>= 2.8), libpopt0 (>= 1.14), libreadline8 (>= 6.0), libtalloc2 (>= 2.2.0~), libwbclient0 (= 2:4.11.6+dfsg-0ubuntu1) Filename: pool/universe/s/samba/registry-tools_4.11.6+dfsg-0ubuntu1_amd64.deb Size: 32376 MD5sum: 186d7ddeba311b577bf7916f80e88f3d SHA1: 82a1ebc3e89214d4cde7a9eb80e7711ad0ef9fac SHA256: 9afd007e8f9197ab9ac50321c749b1cfde727ac74242268e3d292eb30b073036 Homepage: http://www.samba.org Description-en: tools for viewing and manipulating the Windows registry Samba is an implementation of the SMB/CIFS protocol for Unix systems, providing support for cross-platform file sharing with Microsoft Windows, OS X, and other Unix systems. Samba can also function as a domain controller or member server in both NT4-style and Active Directory domains.

This package contains tools for viewing and manipulating the binary “registry” found on Windows machines, both locally and remote.

There are three methods to install registry-tools 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 registry-tools Using apt-get

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

sudo apt-get update

After updating apt database, We can install registry-tools using apt-get by running the following command:

sudo apt-get -y install registry-tools

Install registry-tools Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install registry-tools using apt by running the following command:

sudo apt -y install registry-tools

Install registry-tools 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 registry-tools using aptitude by running the following command:

sudo aptitude -y install registry-tools

How To Uninstall registry-tools on Ubuntu 20.04

To uninstall only the registry-tools package we can use the following command:

sudo apt-get remove registry-tools

Uninstall registry-tools And Its Dependencies

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

sudo apt-get -y autoremove registry-tools

Remove registry-tools Configurations and Data

To remove registry-tools configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge registry-tools

Remove registry-tools configuration, data, and all of its dependencies

We can use the following command to remove registry-tools configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge registry-tools

References

Summary

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