How To Install clusterssh on Fedora 34

clusterssh is Secure concurrent multiple server terminal control

Introduction

In this tutorial we learn how to install clusterssh on Fedora 34.

What is clusterssh

Control multiple terminals open on different servers to perform administration tasks, for example multiple hosts requiring the same configuration within a cluster. Not limited to use with clusters, however.

We can use yum or dnf to install clusterssh on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install clusterssh.

Install clusterssh 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 clusterssh using dnf by running the following command:

sudo dnf -y install clusterssh

Install clusterssh 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 clusterssh using yum by running the following command:

sudo yum -y install clusterssh

How To Uninstall clusterssh on Fedora 34

To uninstall only the clusterssh package we can use the following command:

sudo dnf remove clusterssh

clusterssh Package Contents on Fedora 34

/etc/bash_completion.d
/etc/bash_completion.d/clusterssh
/usr/bin/ccon
/usr/bin/crsh
/usr/bin/csftp
/usr/bin/cssh
/usr/bin/ctel
/usr/share/doc/clusterssh
/usr/share/doc/clusterssh/AUTHORS
/usr/share/doc/clusterssh/Changes
/usr/share/doc/clusterssh/THANKS
/usr/share/doc/clusterssh/TODO
/usr/share/man/man1/ccon.1.gz
/usr/share/man/man1/crsh.1.gz
/usr/share/man/man1/csftp.1.gz
/usr/share/man/man1/cssh.1.gz
/usr/share/man/man1/ctel.1.gz
/usr/share/man/man3/App::ClusterSSH.3pm.gz
/usr/share/man/man3/App::ClusterSSH::Base.3pm.gz
/usr/share/man/man3/App::ClusterSSH::Cluster.3pm.gz
/usr/share/man/man3/App::ClusterSSH::Config.3pm.gz
/usr/share/man/man3/App::ClusterSSH::Getopt.3pm.gz
/usr/share/man/man3/App::ClusterSSH::Helper.3pm.gz
/usr/share/man/man3/App::ClusterSSH::Host.3pm.gz
/usr/share/man/man3/App::ClusterSSH::L10N.3pm.gz
/usr/share/man/man3/App::ClusterSSH::L10N::en.3pm.gz
/usr/share/man/man3/App::ClusterSSH::Range.3pm.gz
/usr/share/man/man3/App::ClusterSSH::Window.3pm.gz
/usr/share/man/man3/App::ClusterSSH::Window::Tk.3pm.gz
/usr/share/perl5/vendor_perl
/usr/share/perl5/vendor_perl/App
/usr/share/perl5/vendor_perl/App/ClusterSSH
/usr/share/perl5/vendor_perl/App/ClusterSSH.pm
/usr/share/perl5/vendor_perl/App/ClusterSSH/Base.pm
/usr/share/perl5/vendor_perl/App/ClusterSSH/Cluster.pm
/usr/share/perl5/vendor_perl/App/ClusterSSH/Config.pm
/usr/share/perl5/vendor_perl/App/ClusterSSH/Getopt.pm
/usr/share/perl5/vendor_perl/App/ClusterSSH/Helper.pm
/usr/share/perl5/vendor_perl/App/ClusterSSH/Host.pm
/usr/share/perl5/vendor_perl/App/ClusterSSH/L10N
/usr/share/perl5/vendor_perl/App/ClusterSSH/L10N.pm
/usr/share/perl5/vendor_perl/App/ClusterSSH/L10N/en.pm
/usr/share/perl5/vendor_perl/App/ClusterSSH/Range.pm
/usr/share/perl5/vendor_perl/App/ClusterSSH/Window
/usr/share/perl5/vendor_perl/App/ClusterSSH/Window.pm
/usr/share/perl5/vendor_perl/App/ClusterSSH/Window/Tk.pm

References

Summary

In this tutorial we learn how to install clusterssh on Fedora 34 using yum and dnf.