This is a series highlighting best-of-breed utilities. We cover a wide range of utilities including tools that boost your productivity, help you manage your workflow, and lots more besides. There’s a complete list of the tools in this series at the bottom of each page of this article.
One of the tools we routinely install on a fresh Linux system is exa. It’s a modern replacement for ls. Why the recommendation? Mainly it’s because exa offers more features and better defaults than the venerable ls command. exa uses colours to distinguish file types and metadata. The tool recognizes symlinks, extended attributes, and Git. It’s compact, fast, and a single binary.
Sadly, there hasn’t been a new release of exa since April 2021. Benjamin Sago, the lead developer of exa, hasn’t been contactable for many months, and there doesn’t appear to have been any code contributions to any of his GitHub repositories for more than a year.
If exa had been proprietary software, that would probably have been the end of exa. But exa was published under an open source license. And with open source software, there’s always the possibility that other developers passionate about the software fork the project. And that’s what happened in the guise of eza.
eza is a modern, maintained replacement for ls, built on exa. It has some new features such as hyperlink support. Let’s check out eza.
Installation
eza is tested on Ubuntu 23.10. Before installing any software, it’s good practice to perform an update.
$ sudo apt update
$ sudo apt upgrade
Our test system already has gpg installed. But if it’s not present on your system, issue the command:
$ sudo apt install gpg
We followed eza’s installation instructions.
$ sudo mkdir -p /etc/apt/keyrings
$ wget -qO- https://raw.githubusercontent.com/eza-community/eza/main/deb.asc | sudo gpg --dearmor -o /etc/apt/keyrings/gierens.gpg
echo "deb [signed-by=/etc/apt/keyrings/gierens.gpg] http://deb.gierens.de stable main" | sudo tee /etc/apt/sources.list.d/gierens.list
$ sudo chmod 644 /etc/apt/keyrings/gierens.gpg /etc/apt/sources.list.d/gierens.list
$ sudo apt update
$ sudo apt install eza
Everything proceeded smoothly.
Next page: Page 2 – In Operation
Pages in this article:
Page 1 – Introduction and Installation
Page 2 – In Operation and Summary
Complete list of articles in this series:
Excellent Utilities | |
---|---|
AES Crypt | Encrypt files using the Advanced Encryption Standard |
Ananicy | Shell daemon created to manage processes’ IO and CPU priorities |
broot | Next gen tree explorer and customizable launcher |
Cerebro | Fast application launcher |
cheat.sh | Community driven unified cheat sheet |
CopyQ | Advanced clipboard manager |
croc | Securely transfer files and folders from the command-line |
Deskreen | Live streaming your desktop to a web browser |
duf | Disk usage utility with more polished presentation than the classic df |
eza | A turbo-charged alternative to the venerable ls command |
Extension Manager | Browse, install and manage GNOME Shell Extensions |
fd | Wonderful alternative to the venerable find |
fkill | Kill processes quick and easy |
fontpreview | Quickly search and preview fonts |
horcrux | File splitter with encryption and redundancy |
Kooha | Simple screen recorder |
KOReader | Document viewer for a wide variety of file formats |
Imagine | A simple yet effective image optimization tool |
LanguageTool | Style and grammar checker for 30+ languages |
Liquid Prompt | Adaptive prompt for Bash & Zsh |
lnav | Advanced log file viewer for the small-scale; great for troubleshooting |
lsd | Like exa, lsd is a turbo-charged alternative to ls |
Mark Text | Simple and elegant Markdown editor |
McFly | Navigate through your bash shell history |
mdless | Formatted and highlighted view of Markdown files |
navi | Interactive cheatsheet tool |
noti | Monitors a command or process and triggers a notification |
Nushell | Flexible cross-platform shell with a modern feel |
nvitop | GPU process management for NVIDIA graphics cards |
OCRmyPDF | Add OCR text layer to scanned PDFs |
Oh My Zsh | Framework to manage your Zsh configuration |
Paperwork | Designed to simplify the management of your paperwork |
pastel | Generate, analyze, convert and manipulate colors |
PDF Mix Tool | Perform common editing operations on PDF files |
peco | Simple interactive filtering tool that's remarkably useful |
ripgrep | Recursively search directories for a regex pattern |
Rnote | Sketch and take handwritten notes |
scrcpy | Display and control Android devices |
Sticky | Simulates the traditional “sticky note” style stationery on your desktop |
tldr | Simplified and community-driven man pages |
tmux | A terminal multiplexer that offers a massive boost to your workflow |
Tusk | An unofficial Evernote client with bags of potential |
Ulauncher | Sublime application launcher |
Watson | Track the time spent on projects |
Whoogle Search | Self-hosted and privacy-focused metasearch engine |
Zellij | Terminal workspace with batteries included |
Please – edit/update the link:
> One of the tools we routinely install on a fresh Linux system is exa.
The link is correct and doesn’t need editing/updating. It’s deliberately a link to my review of exa.
exa is abandoned?
exa’s GitHub says the developer is unreachable. It may be the developer has abandoned exa, There is always the possibility he has just taken a complete break and may restart his project. it may be he is not even alive. Who knows.
Given the popularity of exa, there is always the chance that there will be other useful forks of exa besides eza.
Personally, I’m not a big fan of Rust.