Close Menu
Money MechanicsMoney Mechanics
    What's Hot

    Pershing Square IPO: Should You Buy the PSUS IPO?

    March 22, 2026

    How Long Will This Rally in Gold and Silver Take?

    March 22, 2026

    Today’s Homebuyers Save $150 a Month By Choosing an Adjustable-Rate Mortgage

    March 22, 2026
    Facebook X (Twitter) Instagram
    Trending
    • Pershing Square IPO: Should You Buy the PSUS IPO?
    • How Long Will This Rally in Gold and Silver Take?
    • Today’s Homebuyers Save $150 a Month By Choosing an Adjustable-Rate Mortgage
    • After getting hit by multiple data breaches, I gave DeleteMe a try – here’s how it’s paid off
    • 4 Smart Ways to Use Your Tax Return for Financial Planning
    • A Market Crash Isn’t Your Biggest Retirement Risk — This Is
    • Retiring in the Next 12 Months? Answer These 3 Questions
    • I’m Ready to Retire in Europe Now. My Wife Thinks It’s Too Risky. Who’s Right?
    Facebook X (Twitter) Instagram
    Money MechanicsMoney Mechanics
    • Home
    • Markets
      • Stocks
      • Crypto
      • Bonds
      • Commodities
    • Economy
      • Fed & Rates
      • Housing & Jobs
      • Inflation
    • Earnings
      • Banks
      • Energy
      • Healthcare
      • IPOs
      • Tech
    • Investing
      • ETFs
      • Long-Term
      • Options
    • Finance
      • Budgeting
      • Credit & Debt
      • Real Estate
      • Retirement
      • Taxes
    • Opinion
    • Guides
    • Tools
    • Resources
    Money MechanicsMoney Mechanics
    Home»Earnings & Companie»Tech»5 Linux file managers to try when your GUI just won’t do – they’re all free
    Tech

    5 Linux file managers to try when your GUI just won’t do – they’re all free

    Money MechanicsBy Money MechanicsJanuary 20, 2026No Comments5 Mins Read
    Facebook Twitter LinkedIn Telegram Pinterest Tumblr Reddit WhatsApp Email
    5 Linux file managers to try when your GUI just won’t do – they’re all free
    Share
    Facebook Twitter LinkedIn Pinterest Email


    gettyimages-1695460326

    porcorex/ iStock / Getty Images Plus

    Follow ZDNET: Add us as a preferred source on Google.


    ZDNET’s key takeaways

    • Sometimes, in Linux, you just need the terminal.
    • You can even manage files within the terminal.
    • These five apps are free and easy to use.

    Sometimes, a GUI just won’t do. 

    For example, I might be logged into a remote Linux server, and I need an easier way to manage files than the usual commands. Or, I might already be in a terminal window on a local machine and figure I might as well stay there.

    Or, maybe I just prefer the command line.

    There are plenty of reasons why you might want to adopt a terminal-based file manager on Linux. No, they aren’t as convenient as a GUI, but when they are necessary, they are great to have around.

    Also: Finally, a Linux laptop with a brilliant display and performance that rivals my MacBook

    But which ones should you consider? When you dive down that rabbit hole, you’ll find there are plenty. For me, however, only a handful bubble to the top, and here they are.

    1. Midnight Commander

    Midnight Commander.

    Midnight Command is as old-school as you can get.

    Jack Wallen/ZDNET

    Midnight Commander has been around for a long time. In fact, this file manager was there when I first started using Linux. Midnight Command (otherwise known as MC) is the most well-known terminal-based file manager for Linux and is about as close as you’ll get to using a terminal-based file manager under the guise of a GUI.

    MC is powerful. In fact, it’s just as powerful as a GUI file manager, and even includes mouse integration, which means you can open menus and navigate through directories with a click of the mouse. The one thing you can’t do with the mouse is open files. However, MC does include built-in support for your text editor of choice (such as nano).

    Also: 10 things I always do immediately after installing Linux – and why

    MC includes features such as dual-pane viewing, basic file operations (such as copy, move, rename, and delete), batch renaming, FTP support, customizations, unicode support, remote access (via SSH), and more. 

    You can install MC from your distribution’s standard repositories with commands like:

    • Ubuntu/Debian-based distributions – sudo apt-get install mc -y.
    • Fedora-based distributions – sudo dnf install mc -y.
    • Arch-based distributions – sudo pacman -S mc.

    2. Yazi

    Yazi file manager.

    My buddy Bigen is on my shoulder.

    Jack Wallen/ZDNET

    I kind of prefer Yazi to MC, mostly because it honors system themes and doesn’t bog me down with too many features. Yazi is written in Rust, which makes it blazingly fast (especially when running on a desktop that is also written in Rust, such as COSMIC).  

    One of the best features of Yazi is that it includes image preview support. The only caveat to the image preview support is that it’s only supported in specific terminals, such as Ghostty, iTerm2, Konsole, Tabby, Bobcat, and a few others. If you use a different terminal, it’ll fall back to either the X11 or Wayland protocol, and the image previews will be pixellated and useless.

    Yazi also includes built-in code highlighting, image decoding, and a plug-in system to extend the feature set.

    Also: The first 5 Linux commands every new user should learn

    Yazi can be installed with Flatpak using the command:

    flatpak install yazi

    4. Ranger Console File Manager

    Ranger file manager.

    Ranger has a great interface for those who like the terminal.

    Jack Wallen/ZDNET

    Ranger has a Vim-like interface and uses a three-column design, which is great for navigating directories and viewing files. Ranger can preview text files, images, PDFs, and videos.

    OK, the video preview is a bit misleading, as what Ranger actually does is open a video view (w3m). The same thing holds true for image previews. What this means is that if you’re connected to a remote machine, you won’t be able to view those files. 

    Like most terminal-based file managers, you navigate the directories using your keyboard arrow keys. When you land on a text file, Ranger automatically opens a third column for preview. Hit Enter on your keyboard, and Ranger will open the file in your default text editor.

    Also: 10 Linux keyboard shortcuts I depend on for maximum efficiency

    Ranger can be installed with one of the following commands:

    • Debian/Ubuntu-based distributions – sudo apt-get install ranger -y
    • Fedora-base distributions – sudo dnf install ranger -y
    • Arch-based distribution – sudo pacman -S ranger

    5. Nnn

    Nnn file manager.

    It’s simple, but Nnn is fast and easy.

    Jack Wallen/ZDNET

    If you’re a minimalist, you’ll love Nnn because it’s about as minimal as you can get. When you open the file manager, you get a single-column listing of the current working directory. That minimalism means you only have to use your keyboard’s arrow keys to interact with the file manager and then open a file with the Enter key. Nnn has little in the way of bells and whistles, but it serves the purpose quite well. You can also copy or move files by selecting them (using the space bar) and then use the p key to copy and v key to move them. 

    If you’re unsure of how to interact with Nnn, just hit the ? key on your keyboard to bring up the help file, where you’ll find Nnn actually does offer plenty of other features, such as filters, file stats, rename, archive, bookmarks, and more.

    Another nice thing about Nnn is that it’s fast. 

    You can install Nnn from the standard repositories with commands like:

    • Ubuntu/Debian-based distributions – sudo apt-get install nnn -y
    • Fedora-based distributions – sudo dnf install nnn -y
    • Arch-based distributions – sudo pacman -S nnn





    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Telegram Email
    Previous ArticleThe $50 Loss That Ended Buffett’s Betting Habit
    Next Article Home Sellers Outnumber Buyers By a Record Margin
    Money Mechanics
    • Website

    Related Posts

    After getting hit by multiple data breaches, I gave DeleteMe a try – here’s how it’s paid off

    March 22, 2026

    Are AI tokens the new signing bonus or just a cost of doing business?

    March 22, 2026

    4 tips for building better AI agents that your business can trust

    March 21, 2026
    Add A Comment
    Leave A Reply Cancel Reply

    Top Posts

    Pershing Square IPO: Should You Buy the PSUS IPO?

    March 22, 2026

    How Long Will This Rally in Gold and Silver Take?

    March 22, 2026

    Today’s Homebuyers Save $150 a Month By Choosing an Adjustable-Rate Mortgage

    March 22, 2026

    After getting hit by multiple data breaches, I gave DeleteMe a try – here’s how it’s paid off

    March 22, 2026

    Subscribe to Updates

    Please enable JavaScript in your browser to complete this form.
    Loading

    At Money Mechanics, we believe money shouldn’t be confusing. It should be empowering. Whether you’re buried in debt, cautious about investing, or simply overwhelmed by financial jargon—we’re here to guide you every step of the way.

    Facebook X (Twitter) Instagram Pinterest YouTube
    Links
    • About Us
    • Contact Us
    • Disclaimer
    • Privacy Policy
    • Terms and Conditions
    Resources
    • Breaking News
    • Economy & Policy
    • Finance Tools
    • Fintech & Apps
    • Guides & How-To
    Get Informed

    Subscribe to Updates

    Please enable JavaScript in your browser to complete this form.
    Loading
    Copyright© 2025 TheMoneyMechanics All Rights Reserved.
    • Breaking News
    • Economy & Policy
    • Finance Tools
    • Fintech & Apps
    • Guides & How-To

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