How To Install hivex on Fedora 36
Introduction
In this tutorial we learn how to install hivex
on Fedora 36.
What is hivex
Hive files are the undocumented binary files that Windows uses to store the Windows Registry on disk. Hivex is a library that can read and write to these files. ‘hivexsh’ is a shell you can use to interactively navigate a hive binary file. ‘hivexregedit’ (in perl-hivex) lets you export and merge to the textual regedit format. ‘hivexml’ can be used to convert a hive file to a more useful XML format. In order to get access to the hive files themselves, you can copy them from a Windows machine. They are usually found in %systemroot%\system32\config. For virtual machines we recommend using libguestfs or guestfish to copy out these files. libguestfs also provides a useful high-level tool called ‘virt-win-reg’ (based on hivex technology) which can be used to query specific registry keys in an existing Windows VM. For OCaml bindings, see ‘ocaml-hivex-devel’. For Perl bindings, see ‘perl-hivex’. For Python 3 bindings, see ‘python3-hivex’. For Ruby bindings, see ‘ruby-hivex’.
We can use yum
or dnf
to install hivex
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install hivex.
Install hivex on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install hivex
using dnf
by running the following command:
sudo dnf -y install hivex
Install hivex on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install hivex
using yum
by running the following command:
sudo yum -y install hivex
How To Uninstall hivex on Fedora 36
To uninstall only the hivex
package we can use the following command:
sudo dnf remove hivex
hivex Package Contents on Fedora 36
/usr/bin/hivexget
/usr/bin/hivexml
/usr/bin/hivexsh
/usr/lib/.build-id
/usr/lib/.build-id/4b
/usr/lib/.build-id/4b/01bfdce73aff59fbe457d3eaef85af47066513
/usr/lib/.build-id/9e
/usr/lib/.build-id/9e/67e8938a99dcf8a4b8f2ac50b44ede0974720f
/usr/share/doc/hivex
/usr/share/doc/hivex/README
/usr/share/licenses/hivex
/usr/share/licenses/hivex/LICENSE
/usr/share/locale/ca/LC_MESSAGES/hivex.mo
/usr/share/locale/cs/LC_MESSAGES/hivex.mo
/usr/share/locale/de/LC_MESSAGES/hivex.mo
/usr/share/locale/es/LC_MESSAGES/hivex.mo
/usr/share/locale/eu/LC_MESSAGES/hivex.mo
/usr/share/locale/fr/LC_MESSAGES/hivex.mo
/usr/share/locale/gu/LC_MESSAGES/hivex.mo
/usr/share/locale/hi/LC_MESSAGES/hivex.mo
/usr/share/locale/hu/LC_MESSAGES/hivex.mo
/usr/share/locale/ja/LC_MESSAGES/hivex.mo
/usr/share/locale/kn/LC_MESSAGES/hivex.mo
/usr/share/locale/ml/LC_MESSAGES/hivex.mo
/usr/share/locale/mr/LC_MESSAGES/hivex.mo
/usr/share/locale/nl/LC_MESSAGES/hivex.mo
/usr/share/locale/or/LC_MESSAGES/hivex.mo
/usr/share/locale/pl/LC_MESSAGES/hivex.mo
/usr/share/locale/pt/LC_MESSAGES/hivex.mo
/usr/share/locale/pt_BR/LC_MESSAGES/hivex.mo
/usr/share/locale/ru/LC_MESSAGES/hivex.mo
/usr/share/locale/sr/LC_MESSAGES/hivex.mo
/usr/share/locale/uk/LC_MESSAGES/hivex.mo
/usr/share/locale/zh_CN/LC_MESSAGES/hivex.mo
/usr/share/man/man1/hivexget.1.gz
/usr/share/man/man1/hivexml.1.gz
/usr/share/man/man1/hivexsh.1.gz
References
Summary
In this tutorial we learn how to install hivex
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).