- Posted on
- • Software
fortune: Display random quotes or jokes
- Author
-
-
- User
- Linux Bash
- Posts by this author
- Posts by this author
-
Unleashing Laughter and Wisdom in Your Terminal: The Magic of the fortune
Command
For Linux enthusiasts, there's always a little more that can be achieved with the command line than meets the eye. Among the vast arsenal of utilities available in the Linux ecosystem, there's one charming little program guaranteed to bring a smile or drop a nugget of wisdom each time you fire up your terminal: the fortune
command. Simple, yet delightful, fortune
serves up a random quote or joke whenever you invoke it. Today, I’ll guide you through what fortune
is, how to install it on different Linux distributions, and how to incorporate it into your daily command line routine.
What Is the fortune
Command?
The fortune
command is a classic Unix program that outputs a random quotation from a collection of quotes. The quotes are often humorous, philosophical, or derived from various literary sources. Initially written for the Unix operating system, it has been ported to Linux and is maintained under various packages.
Installing fortune
Before you start enjoying those snippets of humor or wisdom, fortune
needs to be installed on your system. Depending on your distribution, you can use one of the following package managers:
1. Debian and Ubuntu (Using apt)
For users running Debian-based distributions like Debian itself or Ubuntu, the easiest way to install fortune
is using apt
. Open your terminal and run the following commands:
sudo apt update
sudo apt install fortune-mod
2. Fedora (Using dnf)
If you are a Fedora user, you will be using dnf
to install packages. Open your terminal and execute:
sudo dnf install fortune-mod
3. openSUSE (Using zypper)
openSUSE users can rely on zypper
to install fortune
. Just open your terminal and type:
sudo zypper install fortune
How to Use fortune
Once installed, using fortune
is as simple as typing fortune
in your terminal and hitting enter:
fortune
With each execution, fortune
picks a random quote from its database and displays it in the terminal.
Making Every Terminal Session Enlightening or Entertaining
If you want a bit of wisdom or humor every time you open a terminal, you can add fortune
to your shell’s startup file, such as .bashrc
or .zshrc
.
Here’s how you can do it:
Open your
.bashrc
or.zshrc
file in your favorite text editor. For most users, the command would be something likenano ~/.bashrc
ornano ~/.zshrc
.Add the following line at the end of the file:
fortune
Save and close the file. Now, every time you open a new terminal session,
fortune
will greet you with a new quote.
Conclusion
The fortune
command is a perfect example of how Linux can make the command line interface both productive and fun. It may not enhance your system's performance or productivity directly, but it certainly can lighten up your mood or offer a moment of pause with a thought-provoking quotation. With just a simple command, who knew that a dose of fun could so easily be integrated into the daily workings of an OS? So, install fortune
today and add a little bit of surprise and joy to your Linux terminal sessions.
Try it out, and who knows? The next fortune
might just be the quote you needed to hear!