Install find command on Fedora server
Install find command on Fedora 31 server
1. Log into Fedora server as ‘root’ user
Find command is provided by findutils package
2. Install findutils package using dnf command
command:
# sudo dnf install findutils
OR
# dnf install findutils
Fedora Modular 31 – x86_64 3.0 kB/s | 6.5 kB 00:02
Fedora Modular 31 – x86_64 – Updates 2.1 kB/s | 5.0 kB 00:02
Fedora Modular 31 – x86_64 – Updates 16 kB/s | 199 kB 00:12
Fedora 31 – x86_64 – Updates 6.4 kB/s | 6.2 kB 00:00
Fedora 31 – x86_64 – Updates 235 kB/s | 3.1 MB 00:13
Dependencies resolved.
===================================================================================================
Package Architecture Version Repository Size
===================================================================================================
Installing:
findutils x86_64 1:4.6.0-25.fc31 updates 517 k
Transaction Summary
===================================================================================================
Install 1 Package
Total download size: 517 k
Installed size: 1.7 M
Is this ok [y/N]: y
Method II : Download and install findutils rpm
1. Log into Fedora server as ‘root’ user
2. glibc dependency is needed by findutils package so make sure it is installed
3. You can download findutils package from fedoraproject.org website using wget command
# wget https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/31/Everything/x86_64/Packages/f/findutils-4.6.0-25.fc31.x86_64.rpm
4. Install findutils package using rpm command
#rpm -ivh findutils-4.6.0-25.fc31.x86_64.rpm