How to Install and Uninstall overlayfs-tools.x86_64 Package on Fedora 38

Last updated: December 29,2024

1. Install "overlayfs-tools.x86_64" package

Learn how to install overlayfs-tools.x86_64 on Fedora 38

$ sudo dnf update $ sudo dnf install overlayfs-tools.x86_64

2. Uninstall "overlayfs-tools.x86_64" package

Please follow the instructions below to uninstall overlayfs-tools.x86_64 on Fedora 38:

$ sudo dnf remove overlayfs-tools.x86_64 $ sudo dnf autoremove

3. Information about the overlayfs-tools.x86_64 package on Fedora 38

Last metadata expiration check: 3:19:57 ago on Sat Mar 16 22:59:57 2024.
Available Packages
Name : overlayfs-tools
Version : 0
Release : 0.6.20200817git77bf3f7.fc38
Architecture : x86_64
Size : 25 k
Source : overlayfs-tools-0-0.6.20200817git77bf3f7.fc38.src.rpm
Repository : fedora
Summary : OverlayFS layers manipulation tools
URL : https://github.com/kmxz/overlayfs-tools/
License : WTFPL
Description : OverlayFS is the union filesystem provided by Linux kernel.
:
: This program comes provides three tools:
:
: * vacuum - remove duplicated files in upperdir where copy_up is done but the
: file is not actually modified (see the sentence "the copy_up may turn out to
: be unnecessary" in the Linux documentation). This may reduce the size of
: upperdir without changing lowerdir or overlay.
: * diff - show the list of actually changed files (the difference between overlay
: and lowerdir). A file with its type changed (i.e. from symbolic link to
: regular file) will shown as deleted then added, rather than modified.
: Similarly, for a opaque directory in upperdir, the corresponding directory in
: lowerdir (if exists) will be shown as entirely deleted, and a new directory
: with the same name added. File permission/owner changes will be simply shown
: as modified.
: * merge - merge down the changes from upperdir to lowerdir. Unlike aubrsync for
: AuFS which bypasses the union filesystem mechanism, overlayfs-utils emulates
: the OverlayFS logic, which will be far more efficient. After this operation,
: upperdir will be empty and lowerdir will be the same as original overlay.
: * deref - copy changes from upperdir to uppernew while unfolding redirect
: directories and metacopy regular files, so that new upperdir is compatible
: with legacy overlayfs driver.
:
: For safety reasons, vacuum and merge will not actually modify the filesystem,
: but generate a shell script to do the changes instead.