Fun Linux Commands: A Playful Exploration

Mrunal Ugemuge
2 min readSep 17, 2023

Linux is known for its power and versatility, but it can also be a source of amusement with some quirky and fun commands. In this blog, we’ll explore a collection of Linux commands that bring a smile to your face.

1. sl - Steam Locomotive

sl is a whimsical command that simulates a steam locomotive chugging across your terminal screen. To install:

sudo apt-get install sl  # For Debian/Ubuntu
sudo yum install sl # For CentOS/Red Hat

Usage:

sl
sl -a # Show different trains
sl -l # Show a long train

2. cowsay - Talking Cow

cowsay is a fun command that displays a cow that "says" whatever text you input. To install:

sudo apt-get install cowsay  # For Debian/Ubuntu
sudo yum install cowsay # For CentOS/Red Hat

Usage:

cowsay Hello, Linux!
cowsay -f tux I love Linux!

3. nyancat - Nyan Cat Animation

nyancat displays the iconic Nyan Cat animation in your terminal. To install:

sudo apt-get install nyancat  # For Debian/Ubuntu
sudo yum install nyancat # For CentOS/Red Hat

Usage:

nyancat
nyancat -f small # Smaller cat

4. xcowsay - Talking Cow on X Window

Similar to cowsay, but with a graphical twist. It displays a cow that speaks your text within an X Window. To install:

sudo apt-get install xcowsay  # For Debian/Ubuntu
sudo yum install xcowsay # For CentOS/Red Hat

Usage:

xcowsay Hello from X Window!

These fun Linux commands add a touch of whimsy to your terminal sessions. Experiment with them, have fun, and make your Linux experience even more entertaining!

--

--