How To Install detox on Fedora 36
Introduction
In this tutorial we learn how to install detox
on Fedora 36.
What is detox
Detox is a utility designed to clean up file names. It replaces difficult to work with characters, such as spaces, with standard equivalents. It will also clean up file names with UTF-8 or Latin-1 (or CP-1252) characters in them.
We can use yum
or dnf
to install detox
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install detox.
Install detox 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 detox
using dnf
by running the following command:
sudo dnf -y install detox
Install detox 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 detox
using yum
by running the following command:
sudo yum -y install detox
How To Uninstall detox on Fedora 36
To uninstall only the detox
package we can use the following command:
sudo dnf remove detox
detox Package Contents on Fedora 36
/etc/detoxrc
/usr/bin/detox
/usr/bin/inline-detox
/usr/lib/.build-id
/usr/lib/.build-id/cb
/usr/lib/.build-id/cb/92ab5a7ba22dea867c5ea5e56d1b8800557534
/usr/lib/.build-id/cb/92ab5a7ba22dea867c5ea5e56d1b8800557534.1
/usr/share/detox
/usr/share/detox/iso8859_1.tbl
/usr/share/detox/iso8859_1.tbl.sample
/usr/share/detox/safe.tbl
/usr/share/detox/safe.tbl.sample
/usr/share/detox/unicode.tbl
/usr/share/detox/unicode.tbl.sample
/usr/share/doc/detox
/usr/share/doc/detox/README.md
/usr/share/man/man1/detox.1.gz
/usr/share/man/man1/inline-detox.1.gz
/usr/share/man/man5/detox.tbl.5.gz
/usr/share/man/man5/detoxrc.5.gz
References
Summary
In this tutorial we learn how to install detox
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).