How To Install pseudo on Fedora 36
Introduction
In this tutorial we learn how to install pseudo
on Fedora 36.
What is pseudo
The pseudo utility offers a way to run commands in a virtualized “root” environment, allowing ordinary users to run commands which give the illusion of creating device nodes, changing file ownership, and otherwise doing things necessary for creating distribution packages or filesystems. Pseudo has a lot of similarities to fakeroot but is a new implementation that improves on the problems seen using fakeroot. Pseudo is now extensively used by Poky as a replacement to fakeroot but can also be used standalone in many other use cases.
We can use yum
or dnf
to install pseudo
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install pseudo.
Install pseudo 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 pseudo
using dnf
by running the following command:
sudo dnf -y install pseudo
Install pseudo 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 pseudo
using yum
by running the following command:
sudo yum -y install pseudo
How To Uninstall pseudo on Fedora 36
To uninstall only the pseudo
package we can use the following command:
sudo dnf remove pseudo
pseudo Package Contents on Fedora 36
/usr/bin/fakeroot
/usr/bin/fakeroot-pseudo
/usr/bin/pseudo
/usr/bin/pseudodb
/usr/bin/pseudolog
/usr/lib/.build-id
/usr/lib/.build-id/56
/usr/lib/.build-id/56/428210e9b0504c20e952a7cd7645fd3f411753
/usr/lib/.build-id/72
/usr/lib/.build-id/72/e5efd9232bab596fa42e458a07d08055cd0666
/usr/lib/.build-id/88
/usr/lib/.build-id/88/f5f4c17637190c7fb539a704e0e7f87c85b626
/usr/lib/.build-id/89
/usr/lib/.build-id/89/320e4b70b2b6e174c575b3d349e32d4fce49c7
/usr/lib64/pseudo
/usr/lib64/pseudo/libpseudo.so
/usr/share/doc/pseudo
/usr/share/doc/pseudo/ChangeLog.txt
/usr/share/doc/pseudo/Futures.txt
/usr/share/doc/pseudo/README
/usr/share/licenses/pseudo
/usr/share/licenses/pseudo/COPYING
/usr/share/man/man1/fakeroot-pseudo.1.gz
/usr/share/man/man1/fakeroot.1.gz
/usr/share/man/man1/pseudo.1.gz
/usr/share/man/man1/pseudolog.1.gz
References
Summary
In this tutorial we learn how to install pseudo
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).