How To Install dropbear on Fedora 34
Introduction
In this tutorial we learn how to install dropbear on Fedora 34.
What is dropbear
Dropbear is a relatively small SSH server and client. It’s particularly useful for “embedded”-type Linux (or other Unix) systems, such as wireless routers.
We can use yum or dnf to install dropbear on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install dropbear.
Install dropbear on Fedora 34 Using dnf
Update yum database with dnf using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install dropbear using dnf by running the following command:
sudo dnf -y install dropbear
Install dropbear on Fedora 34 Using yum
Update yum database with yum using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install dropbear using yum by running the following command:
sudo yum -y install dropbear
How To Uninstall dropbear on Fedora 34
To uninstall only the dropbear package we can use the following command:
sudo dnf remove dropbear
dropbear Package Contents on Fedora 34
/etc/dropbear
/usr/bin/dbclient
/usr/bin/dropbearconvert
/usr/bin/dropbearkey
/usr/lib/.build-id
/usr/lib/.build-id/0c
/usr/lib/.build-id/0c/ba1f18ca3b5db57b81c09f3be8745fbb15a8cb
/usr/lib/.build-id/65
/usr/lib/.build-id/65/31153598014ab4f2cf693a1cda57831fc721a9
/usr/lib/.build-id/c8
/usr/lib/.build-id/c8/ebd9568797e69a9467ce813f2d3f988704b638
/usr/lib/.build-id/ea
/usr/lib/.build-id/ea/31952e75a1e01cbba358a608597e5767ed218f
/usr/lib/systemd/system/dropbear-keygen.service
/usr/lib/systemd/system/dropbear.service
/usr/sbin/dropbear
/usr/share/doc/dropbear
/usr/share/doc/dropbear/CHANGES
/usr/share/doc/dropbear/README
/usr/share/licenses/dropbear
/usr/share/licenses/dropbear/LICENSE
/usr/share/man/man1/dbclient.1.gz
/usr/share/man/man1/dropbearconvert.1.gz
/usr/share/man/man1/dropbearkey.1.gz
/usr/share/man/man8/dropbear.8.gz
References
Summary
In this tutorial we learn how to install dropbear on Fedora 34 using yum and dnf.