Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      Sunshine And March Vibes (2025 Wallpapers Edition)

      May 31, 2025

      The Case For Minimal WordPress Setups: A Contrarian View On Theme Frameworks

      May 31, 2025

      How To Fix Largest Contentful Paint Issues With Subpart Analysis

      May 31, 2025

      How To Prevent WordPress SQL Injection Attacks

      May 31, 2025

      How to install SteamOS on ROG Ally and Legion Go Windows gaming handhelds

      May 31, 2025

      Xbox Game Pass just had its strongest content quarter ever, but can we expect this level of quality forever?

      May 31, 2025

      Gaming on a dual-screen laptop? I tried it with Lenovo’s new Yoga Book 9i for 2025 — Here’s what happened

      May 31, 2025

      We got Markdown in Notepad before GTA VI

      May 31, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      Oracle Fusion new Product Management Landing Page and AI (25B)

      May 31, 2025
      Recent

      Oracle Fusion new Product Management Landing Page and AI (25B)

      May 31, 2025

      Filament Is Now Running Natively on Mobile

      May 31, 2025

      How Remix is shaking things up

      May 30, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      How to install SteamOS on ROG Ally and Legion Go Windows gaming handhelds

      May 31, 2025
      Recent

      How to install SteamOS on ROG Ally and Legion Go Windows gaming handhelds

      May 31, 2025

      Xbox Game Pass just had its strongest content quarter ever, but can we expect this level of quality forever?

      May 31, 2025

      Gaming on a dual-screen laptop? I tried it with Lenovo’s new Yoga Book 9i for 2025 — Here’s what happened

      May 31, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Operating Systems»Linux»I Feel Like a Hacker Using These Cool Linux Terminal Tools

    I Feel Like a Hacker Using These Cool Linux Terminal Tools

    January 14, 2025

    I Feel Like a Hacker Using These Cool Linux Terminal Tools

    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!

    💡
    You can use CTRL+C to exit the terminal after running these tools.

    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!



    0:00
    /1:02



    Running genact in a terminalRunning genact in a terminal

    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
    
    genact

    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.



    0:00
    /0:09



    Cmatrix command running in 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
    
    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.

    TEXTREME

    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!

    No More Secrets

    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!

    I Feel Like a Hacker Using These Cool Linux Terminal Tools
    Cool Retro Term Settings
    Cool Retro Term

    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
    


    0:00
    /0:43



    Gping command

    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
    


    0:00
    /0:30



    Bpytop command with options

    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:

    Top 14 Terminal Emulators for Linux (With Extra Features or Amazing Looks)
    Want a terminal that looks cool or has extra features? Here are the best Linux terminal emulators you can get.
    I Feel Like a Hacker Using These Cool Linux Terminal ToolsIt’s FOSSAnkush Das
    I Feel Like a Hacker Using These Cool Linux Terminal Tools

    💬 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.

    Source: Read More

    Facebook Twitter Reddit Email Copy Link
    Previous ArticleRilasciato OpenZFS 2.3: Nuove Funzionalità e Miglioramenti delle Prestazioni
    Next Article Crunchbangplusplus – minimalist Linux distribution

    Related Posts

    News & Updates

    How to install SteamOS on ROG Ally and Legion Go Windows gaming handhelds

    May 31, 2025
    News & Updates

    Xbox Game Pass just had its strongest content quarter ever, but can we expect this level of quality forever?

    May 31, 2025
    Leave A Reply Cancel Reply

    Continue Reading

    Visual Intuitive Physics: Enhancing Understanding Through Visualization

    Development

    Laravel Black Friday Deals

    Development

    Google DeepMind’s latest research at ICML 2023

    Artificial Intelligence

    Smashing Security podcast #378: Julian Assange, inside a DDoS attack, and deepfake traumas

    Development
    Hostinger

    Highlights

    I tested Minitailz’ AI-powered pet tracker, and it solved my biggest pain point as a dog owner

    June 9, 2024

    The Minitailz Health and GPS tracker lets you monitor your dog’s location along with health…

    Continuous Threat Exposure Management (CTEM): Key Insights for CISOs

    June 24, 2024

    Exploring the Frontiers of Artificial Intelligence: A Comprehensive Analysis of Reinforcement Learning, Generative Adversarial Networks, and Ethical Implications in Modern AI Systems

    May 24, 2024

    An RGB monitor stand sounds outrageous, but it’s transformed my desk for the better

    February 11, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.