I found it cool enough to watch someone, often portrayed as a hacker, use the Linux terminal, especially in the movies. What if I try to become one of the super cool hackers from the Hollywood movies? π
Now that I'm older, I'm no longer fooled by those movie skits π But, I'm still a kid at heart, and I want others to think that I am a secretive hacker when they see me using the terminal.
To pursue that, I started exploring a list of cool Linux terminal tools that I can use for the job.
If I can feel like a hacker with these tools, you can too! Let's give them a try!
1. genact
Do you often feel like all you do in the terminal is run update commands, with nothing impressive to show off? Donβt worryβgenact is here for you!
This little command will fill package download, network and other entries to your terminal. Those watching will think you are compiling some great programs.
You can install this from the Ubuntu Snap store or grab the prebuilt binary for genact from the official GitHub repository as per your CPU architecture.
If you downloaded the binary, open a terminal in the downloaded directory, and give the file execution permission with the following command:
chmod +x ./genact-file-name
The file name will look like genact-1.4.2-x86_64-unknown-linux-gnu
Next, execute it using:
./genact-file-name
2. Cmatrix
Anyone who has seen The Matrix movie cannot forget the iconic effect of characters raining down the screen. With CMatrix, you can recreate this mesmerizing display right in your terminal.
You can install Cmatrix from the official repository of most Linux distributions. For instance, here's the command for Ubuntu-based distributions:
sudo apt install cmatrix
Now, just run it using the command:
cmatrix
For more fun, you can pair it with other fun terminal tools like lolcat, one of the fun ASCII art tools.
3. Hollywood
Hollywood is that command which will make others think that your system has been hacked my someone.
It will burst a huge text and animation effects on your terminal, where regular keyboard entries will do nothing. For a minute, I forgot I had to stop it to continue writing the article, it looked so cool! π
To install hollywood on Ubuntu, use the command:
sudo apt install hollywood
4. TEXTREME
Do you want a text editor that will show all types of fancy animation for character entry and deletion?
Textreme is for you.
This is not a regular text editor, where you will code swiftly, but a cool fancy text editor, that gives a festive party vibe while you write something.
You can grab an executable binary from the official website. And, extract the tar file and double-click on the file to start the editor.
5. No More Secrets
No More secrets will show an encrypt/decrypt effect for everything piped into it. It tries to recreate the famous data decryption effect seen on screen in the 1992 hacker movie Sneakers.
There are no release files for this package. So, you need to compile it from GitHub.
Make sure you have git and essential build tools like make installed. Then use the following commands to proceed:
git clone https://github.com/bartobri/no-more-secrets.git
cd ./no-more-secrets
make nms
make sneakers
sudo make install
This will install two tools, no-more-secrets or nms and sneakers.
Sneakers
Sneakers recreates the movie clip for you. Once the command completes printing encrypted characters, press any key to start the decrypting effect.
No More Secrets
Pipe any text output to this command and see the effect for yourself. If you would rather not press a key to start decryption, use:
cat agatha.txt | nms -a
This will print the contents of the file in encrypted form and then automatically start to decrypt it and show the original content.
You can experiment with it to show different colors as well!
6. Cool Retro Term
Sometimes the feeling of a hacker or a whiz comes from retro tools. This is one of the super cool terminal emulators that helps achieve what we want here.
You can install the Cool Retro Term terminal emulator application on Ubuntu using the command:
sudo apt install cool-retro-term
Next, open the terminal from your Activities Overview or app menu:
Do not forget to right-click on the terminal and explore the settings. There are more effects waiting!
7. gping
Did you ever use the Ping command to check whether you have an active internet connection? Or to check whether a site is up and running?
The ping command is just a text command, where you need to look at the values to get the picture. You can do the same, but have some aesthetically pleasing outputs (graph) using gping
.
Install GPing on Ubuntu using the command:
sudo apt install gping
8. Bpytop
Bpytop is a htop alternative that prints system information neatly. You can use this command to make someone think that you're monitoring super serious aspects of your computer.
To install it, use the command:
sudo apt install bpytop
When it comes to Linux terminal tools, there are endless options from various individual developers.
Here, I have shared the ones that I tried to make myself look like a hacker to anyone who observes me when I use the computer π
You can also choose to explore some terminal emulators or system monitoring tools to have fun with:
π¬ What is your favorite on the list? Do you have some fun tools that I missed listing here? Do share your thoughts in the comments below.