How To Install aldo on Fedora 34
Introduction
In this tutorial we learn how to install aldo
on Fedora 34.
What is aldo
Aldo is a morse code learning tool released under GPL, which provides four type of training methods 1. Classic exercise 2. Koch method (20wpm) until you’ll be able to identify at least 90 percent of them. After that, one more character will be added, and so on. 3. Read from file 4. Callsign exercise
We can use yum
or dnf
to install aldo
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install aldo.
Install aldo 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 aldo
using dnf
by running the following command:
sudo dnf -y install aldo
Install aldo 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 aldo
using yum
by running the following command:
sudo yum -y install aldo
How To Uninstall aldo on Fedora 34
To uninstall only the aldo
package we can use the following command:
sudo dnf remove aldo
aldo Package Contents on Fedora 34
/usr/bin/aldo
/usr/lib/.build-id
/usr/lib/.build-id/e6
/usr/lib/.build-id/e6/f49421d56ff5c574c55ce97e8aa3d3c7a3a318
/usr/share/doc/aldo
/usr/share/doc/aldo/AUTHORS
/usr/share/doc/aldo/ChangeLog
/usr/share/doc/aldo/README
/usr/share/doc/aldo/THANKS
/usr/share/licenses/aldo
/usr/share/licenses/aldo/COPYING
/usr/share/man/man1/aldo.1.gz
References
Summary
In this tutorial we learn how to install aldo
on Fedora 34 using yum and dnf.