Sabtu, 15 November 2025

Better Than Original? 14 Rust-based Alternative CLI Tools to Classic Linux Commands

Better Than Original? 14 Rust-based Alternative CLI Tools to Classic Linux Commands

If you’re like me, you probably grew up with the classic Linux command-line tools such as ls, cat, du. These commands have carried me through countless scripts and late-night debugging sessions.

Here's the thing. While these tools do their job, they can be plain looking and difficult to use for certain tasks.

Take the du command for example. It shows the disk usage on the system but use it without any option, and it is a mess.

Terminals today support color, Unicode icons, live previews, all things our old favorites weren’t designed for. And the Rust revolution has quietly reshaped the command-line landscape. So there is a wave of Rust-based CLI tools that don’t just replicate the traditional ones; they modernize them. They’re fast, (claim to be) memory-safe, polished, and often come with thoughtful UX touches that make daily terminal work noticeably smoother.

I’ve been tinkering with these tools lately, and I thought it’d be fun to share a list of my favorites.

🚧
If you are a sysadmin, managing servers, you should not rely on alternatives. You might not get these fancy new tools on every system and installing them on every Linux server you log in is not feasible. The alternative tools are good when you are using a personal computer and have full control over the development environment.

exa: Alternative to ls

Better Than Original? 14 Rust-based Alternative CLI Tools to Classic Linux Commands

If there’s one tool that convinced me Rust CLI apps were worth exploring, it’s exa. It feels familiar but adds what the original ls has always lacked: sensible colors, icons, and Git awareness.

Highlights:

  • Beautiful color themes
  • Git integration
  • Optional tree view
  • Clearer permissions formatting

Installation:

cargo install exa

Usage:

exa -al --git

You can instantly see which files are new, which are modified, and which are pure chaos.

bat: Alternative to cat

Better Than Original? 14 Rust-based Alternative CLI Tools to Classic Linux Commands

cat is great for quick checks, but reading config files or code in raw plain text gets tedious. bat fixes that with syntax highlighting, Git integration, and line numbers, automatic paging, without losing cat compatibility.

Installation:

cargo install bat

Example Usage:

bat ~/.bashrc

It’s basically cat with a glow-up ✨. When I first used it, I found myself opening random config files just to admire the colors.

dust: Alternative to du

Better Than Original? 14 Rust-based Alternative CLI Tools to Classic Linux Commands

du always dumps a mountain of numbers on your screen. dust turns that into a compact, visual representation of disk usage that you can parse at a glance.

It’s instantly more readable than the old command. The output is clean, easy to parse, and shows relative sizes visually. I swear my hard drive has never looked this friendly. 😎

Install dust:

cargo install du-dust

Usage:

dust

fd: Alternative to find

Better Than Original? 14 Rust-based Alternative CLI Tools to Classic Linux Commands

Remember spending 10 minutes crafting the perfect find command? Yeah… me too. fd makes this easier. It has simple syntax, ignores hidden files by default and it is super-fast.

Install fd:

cargo install fd-find

Example:

fd main.rs
fd fossnews

Its speed and simplicity make find feel outdated. After switching, you’ll rarely look back.

ripgrep (rg): Alternative to grep

Better Than Original? 14 Rust-based Alternative CLI Tools to Classic Linux Commands

Rust-based ripgrep has become a must-have for developers. It’s dramatically faster and gives clear, highlighted search results.

Install ripgrep:

cargo install ripgrep

Example usage:

rg TODO src/

It respects your .gitignore and outputs results with color highlighting. I use it every day for searching TODOs, bug reports.

duf: Alternative to df

Better Than Original? 14 Rust-based Alternative CLI Tools to Classic Linux Commands

df is useful, but let’s be honest: the output looks like something printed from a 90s dot-matrix printer😆. duf fixes that. It takes the same disk-usage information and turns it into a clean, colorful, structured table you can actually understand at a glance.

duf gives you a clean dashboard with grouped filesystems, readable sizes, clear partition labels, and a quick view of what’s healthy vs. what’s nearly full.

Installation:

sudo apt install duf

Usage:

duf

procs: Alternative to ps

Better Than Original? 14 Rust-based Alternative CLI Tools to Classic Linux Commands

While ps aux works, it can feel visually overwhelming. procs gives you a more structured, color-coded view of your system processes, letting you quickly see what’s running without the need to launch a full TUI tool like htop.

It’s like a personal dashboard for your processes. I use it every day to keep tabs on what’s running without feeling buried in a wall of text.

Installation:

cargo install procs

Usage:

procs

tldr: Alternative to man

Better Than Original? 14 Rust-based Alternative CLI Tools to Classic Linux Commands

tldr makes navigating manual pages painless by offering clear examples, highlighting essential flags, and keeping things short (no scrolling forever).

Installation:

cargo install tldr

Usage:

tldr tar

Honestly, I wish this existed when I was learning Linux, it's a lifesaver for newbies and veterans alike.

broot: Alternative to tree

Better Than Original? 14 Rust-based Alternative CLI Tools to Classic Linux Commands

If you’ve ever used tree, you know it can quickly becomes overwhelming in large directories. broot upgrades the concept: it lets you navigate directories interactively, collapse or expand folders on the fly, and search as you go.

Installation:

cargo install broot

Usage:

broot

I’ve ditched my old ls -R habit entirely, broot makes exploring directories feel interactive and satisfying, turning a messy filesystem into something you can actually enjoy navigating.

zoxide: Alternative to cd

Better Than Original? 14 Rust-based Alternative CLI Tools to Classic Linux Commands

How many times have you typed cd ../../../../some/long/path? Too many, right? z (or zoxide) solves that by tracking your most visited directories and letting you jump to them with a single command, saving your fingers and making navigation effortless.

Installation:

cargo install zoxide

You also need to initialize it in your shell:

# Bash
eval "$(zoxide init bash)"
# Zsh
eval "$(zoxide init zsh)"
# Fish
zoxide init fish | source

Usage:

z code

It keeps track of your frequently used directories and lets you jump to them instantly.

lsd: Alternative to ls

Better Than Original? 14 Rust-based Alternative CLI Tools to Classic Linux Commands

If you’re tired of the plain, monochrome output of ls, lsd is here to make your directory listings not just readable, but enjoyable. With built-in icons and vibrant colors, it instantly helps you distinguish between files, directories, and executables at a glance.

Installation:

cargo install lsd

You can run it just like a normal ls command:

lsd -la

lsd organizes information clearly and highlights key file attributes, making navigation faster and more intuitive.

bottom: Alternative to top

Better Than Original? 14 Rust-based Alternative CLI Tools to Classic Linux Commands

The classic top command shows system usage, but let’s face it, it can feel like you’re looking at a terminal snapshot from 1995 😆. bottom (or btm) brings a modern, clean, and highly visual experience to monitoring your system. It provides:

  • Color-coded CPU, memory, and disk usage
  • Real-time graphs directly in the terminal
  • An organized layout that’s easy to read and navigate

Installation:

cargo install bottom

You can launch it simply with:

btm

Once you start using bottom, it’s hard to go back. Watching CPU spikes, memory usage, and disk activity while compiling Rust projects feels strangely satisfying. It’s both functional and fun, giving you the insights you need without the clutter of older tools.

hyperfine: Alternative to time and other benchmarking commands

Ever wondered which of your commands is truly the fastest? Stop guessing and start measuring with hyperfine. This Rust-based benchmarking tool makes it effortless to compare commands side by side.

hyperfine runs each command multiple times, calculates averages, and gives you a clear, color-coded comparison of execution times. Beyond simple comparisons, it also supports warm-up runs, statistical analysis, and custom command setups, making it a powerful addition to any developer’s toolkit.

Installation:

cargo install hyperfine

Usage example:

hyperfine "exa -al" "ls -al"

Watching exa obliterate ls in mere milliseconds is oddly satisfying⚡. If you love optimization, efficiency, and a little nerdy satisfaction, hyperfine is your new best friend.

xplr: Alternative to nnn

Better Than Original? 14 Rust-based Alternative CLI Tools to Classic Linux Commands

Now, I don't know if I can call nnn a classic Linux tool but I liked xplr so much that I decided to include it here.

xplr takes the idea of a terminal file explorer to the next level. If you loved broot, xplr will blow your mind with these features:

  • Navigate directories using arrow keys or Vim-style bindings
  • Preview files directly inside the terminal
  • Launch commands on files without leaving the app
  • Fully customizable layouts and keybindings for power users

Installation:

cargo install xplr

Usage:

xplr

Wrapping Up

Switching to new commands might feel like extra effort at first, but Rust-based CLI tools are often more than just a trend, they’re fast, modern, and designed to make your workflow enjoyable.

  • They handle colors, syntax highlighting, and Git integration right out of the box.
  • They save keystrokes, reduce frustration, and make complex tasks simpler.
  • They make your terminal feel alive and engaging.

On top of that, using them makes you look extra cool in front of fellow Linux nerds. Trust me, it’s a subtle flex 💪

Start small, maybe install exa and bat first, and gradually expand your toolkit. Soon, your terminal will feel futuristic, your workflow smoother, and your projects easier to manage.



from It's FOSS https://ift.tt/2LcUPfJ
via IFTTT

Jumat, 14 November 2025

Mozilla Unveils Plans for New 'AI Window' Browsing Mode in Firefox, Opens Signups

Mozilla Unveils Plans for New 'AI Window' Browsing Mode in Firefox, Opens Signups

Firefox has been pushing AI features for a while now. Over the past year, they've added AI chatbots in the sidebar, automatic alt text generation, and AI-enhanced tab grouping. It is basically their way of keeping up with Chrome and Edge, both of which have gone all-in on AI.

Of course not everyone is thrilled about AI creeping into their web browsers, and Mozilla (the ones behind Firefox) seems to understand that. Every AI feature in Firefox is opt-in. You can keep using the browser as you always have, or flip on AI tools when you actually need them.

Now, they are taking this approach a step further with something called AI Window.

Firefox AI Window: What's Cooking?

Mozilla Unveils Plans for New 'AI Window' Browsing Mode in Firefox, Opens Signups

Mozilla has announced it's working on AI Window, a new browsing mode that comes with a built-in AI assistant. Think of it as a third option alongside the Classic browsing mode and Private Window mode.

Before you get angry, know that it will be fully optional. Switch to AI Window when you want help, or just ignore it entirely. Try it, hate it, disable it. Mozilla's whole pitch is that you stay in control.

On the transparency front, they are making three commitments:

  • A fully opt-in experience.
  • Features that protect your choice.
  • More transparency around how your data is used.

Why bother with all this, you ask? Mozilla sees AI as part of the web's future and wants to shape it their way. They figure ignoring AI while it reshapes the web doesn't help anyone, so they want to steer it toward user control rather than watch browsers from AI companies (read: Big Tech) lock people in.

Ajit Varma, the Vice President and Head of Product at Firefox, put it like this:

We believe standing still while technology moves forward doesn’t benefit the web or humanity. That’s why we see it as our responsibility to shape how AI integrates into the web — in ways that protect and give people more choice, not less.

The feature isn't live. Mozilla's building it "in the open" and wants feedback to shape how it turns out. If you want early access, there's a waitlist at firefox.com/ai to get updates and first dibs on testing.

Suggested Read 📖

Exploring Firefox Tab Groups: Has Mozilla Redeemed Itself?
Firefox’s Tab Groups help you organize tabs efficiently. But how efficiently? Let me share my experience.
Mozilla Unveils Plans for New 'AI Window' Browsing Mode in Firefox, Opens Signups


from It's FOSS https://ift.tt/UhLCXsc
via IFTTT

Ubuntu's New 15-Year Commitment Targets Long-Lived Enterprise Systems

Ubuntu's New 15-Year Commitment Targets Long-Lived Enterprise Systems

Ubuntu is Canonical's flagship Linux distribution that powers a significant portion of the information technology infrastructure today. It has two major versions: an interim release that comes with nine months of support and a long-term support release that comes with five years of standard support that is extensible via Ubuntu Pro.

If you didn't know, Canonical introduced Ubuntu Pro in 2022 as a subscription service that extends LTS coverage beyond the standard five years. It includes Expanded Security Maintenance (ESM), which provides an additional five years of security patching, bringing the total coverage to 10 years for LTS releases.

Similarly, back in 2024, Canonical launched the Legacy add-on for Ubuntu Pro, which initially provided two additional years of support beyond ESM, bringing total coverage to 12 years.

And now they have announced an expansion that brings 15 years of support for LTS releases.

15 Years of Support Sounds Great

Ubuntu's New 15-Year Commitment Targets Long-Lived Enterprise Systems

The expanded Legacy add-on now offers five additional years of support after the 10-year ESM window ends. This means Ubuntu LTS releases receive:

  • 5 years of standard security maintenance.
  • 5 years of Expanded Security Maintenance.
  • 5 years of Legacy add-on support.

Ubuntu 14.04 LTS, which entered the standard support period in April 2024, will now be maintained until April 2029. This gives it a full 15-year lifecycle from its initial release. The Legacy add-on kicks in after the first 10 years and costs 50% more than the standard Ubuntu Pro subscription.

All future LTS releases, including 16.04, 18.04, 20.04, and beyond, are eligible for the same 15-year coverage when they reach the Legacy phase.

Get Ubuntu Pro (Legacy add-on)

The Legacy add-on becomes available after an LTS release completes 10 years of coverage, and as I mentioned earlier, costs 50% more than the standard Ubuntu Pro subscription.

To activate the Legacy add-on support, Canonical asks users to contact their sales team or reach out to their assigned account manager.

Suggested Read 📖

IBM Joins OpenSearch Software Foundation to Advance AI-Powered Search and RAG
Pledges enterprise-grade enhancements as Premier Member.
Ubuntu's New 15-Year Commitment Targets Long-Lived Enterprise Systems


from It's FOSS https://ift.tt/PIz93tb
via IFTTT

Kamis, 13 November 2025

FFmpeg Calls Google's AI Bug Reports "CVE Slop"

FFmpeg Calls Google's AI Bug Reports "CVE Slop"

FFmpeg maintainers have publicly criticized Google after its AI tool reported a security bug in code for a 1995 video game.

The maintainers called the finding "CVE slop" and questioned whether trillion-dollar corporations should use AI to find security issues in volunteer code without providing fixes.

Unchecked Automation is Not an Answer

So what happened is, Google's AI agent Big Sleep found a bug in FFmpeg's code for decoding LucasArts Smush codec. The issue affected the first 10-20 frames of Rebel Assault II, a game from 1995.

If you didn't know, Big Sleep is Google's AI-powered vulnerability detection tool developed by its Project Zero and DeepMind divisions. It is supposed to find security vulnerabilities in software before attackers can exploit them.

But there's an issue here: under Google's "Reporting Transparency" policy, the tech giant publicly announces it has found a vulnerability within one week of reporting it. A 90-day disclosure clock then starts regardless of whether a patch is available.

You see the problem now? 🤔

FFmpeg developers patched the bug but weren't happy about it. They tweeted in late October that "We take security very seriously but at the same time is it really fair that trillion-dollar corporations run AI to find security issues in people's hobby code? Then expect volunteers to fix."

Beyond that, you have to understand that FFmpeg is an important piece of digital infrastructure that is used in Google Chrome, Firefox, YouTube, VLC, Kodi, and many other platforms.

The project is written almost exclusively by volunteers. Much of the code is in assembly language, which is difficult to work with. This situation basically highlights the ongoing tensions over how corporations use volunteer-maintained open source software that powers their commercial products and expect them to fix any obscure issues that crop up.

Via: The New Stack

Suggested Reads 📖

Open Source Infrastructure is Breaking Down Due to Corporate Freeloading
An unprecedented threat looms over open source.
FFmpeg Calls Google's AI Bug Reports "CVE Slop"
FFmpeg Receives $100K in Funding from India’s FLOSS/fund Initiative
It is one of the world’s most widely used multimedia frameworks today.
FFmpeg Calls Google's AI Bug Reports "CVE Slop"


from It's FOSS https://ift.tt/m3tCi6I
via IFTTT

Nitrux 5.0.0 Released: A 'New Beginning' That's Not for Everyone (By Design)

Nitrux 5.0.0 Released: A 'New Beginning' That's Not for Everyone (By Design)

Nitrux is a Debian-based Linux distribution that has always stood out for its bold design choices. It even made our list of the most beautiful Linux distributions.

Earlier this year, the project made a significant announcement. They discontinued its custom NX Desktop and the underlying KDE Plasma base, prioritizing a Hyprland desktop experience combined with their in-house developed app distribution methods.

Now, the first major release reflecting this redefined approach is finally here.

🆕 Nitrux 5.0.0: What's New?

Nitrux 5.0.0 Released: A 'New Beginning' That's Not for Everyone (By Design)

The release uses OpenRC 0.63 as its init system instead of systemd. This is paired with either Liquorix kernel 6.17.7 or a CachyOS-patched kernel, depending on your hardware, and the desktop experience is Wayland-only. KDE Plasma, KWin, and SDDM are gone.

In their place, you get Hyprland with Waybar for the panel, Crystal Dock for application launching, and greetd as the login manager, and QtGreet as the display manager. Wofi serves as the application launcher, while wlogout handles logout actions.

Nitrux 5.0.0 ships with an immutable root filesystem powered by NX Overlayroot. This provides system stability and rollback capabilities through the Nitrux Update Tool System (nuts).

Plus, there is Nitrux's new approach to software management. NX AppHub and AppBoxes are now the primary methods for installing applications. Flatpak and Distrobox remain available as complementary options.

There are many updated apps and tooling in this release too:

  • Podman 5.6.1
  • Docker 26.1.5
  • Git 2.51.0
  • Python 3.13.7
  • OpenRazer 3.10.3
  • MESA 25.2.3
  • BlueZ 5.84
  • PipeWire 1.4.8

The developers are clear about who Nitrux is for. It is designed for users who see configuration as empowerment, not inconvenience. This isn't a distribution trying to please everyone.

The team put it this way in their announcement:

These are not additions for the sake of novelty, but extensions of the same philosophy—emphasizing that Nitrux targets modern, powerful hardware. Tuned for real machines: a track weapon, not a city commuter—built for those who drive, not spectate.

📥 Download Nitrux 5.0.0

The nitrux-contemporary-cachy-nvopen ISO is designed for NVIDIA hardware. It includes the NVIDIA Open Kernel Module and uses the CachyOS-patched kernel.

The nitrux-contemporary-liquorix-mesa ISO targets AMD and Intel graphics. It ships with the Liquorix kernel and MESA drivers. Both versions are also available through SourceForge.

A fresh installation is strongly recommended for this release. Updates from Nitrux 3.9.1 to 5.0.0 are not supported. Future updates will be delivered through the Nitrux Update Tool System.

Also, virtual machines are not supported natively, as the team removed many VM-specific components. You can learn more in the release notes.

Suggested Read 📖

Here are the Most Beautiful Linux Distributions in 2025
Aesthetically pleasing? Customized out of the box? You get the best of both worlds in this list.
Nitrux 5.0.0 Released: A 'New Beginning' That's Not for Everyone (By Design)


from It's FOSS https://ift.tt/nAotYfJ
via IFTTT

Rabu, 12 November 2025

FOSS Weekly #25.46: sudo-rs Issues, Kaspersky on Linux, Flathub Troubles, Homelab Starter and More Linux Stuff

FOSS Weekly #25.46: sudo-rs Issues, Kaspersky on Linux, Flathub Troubles, Homelab Starter and More Linux Stuff

Here is the news. It's FOSS News (news.itsfoss.com) doesn't exist anymore, at least not as a separate entity. All news articles are now located under the main website: https://itsfoss.com/news/

I merged the two portals into one. Now, you just have to log into one portal to enjoy your membership benefits. I hope it simplifies things for you, specially if you are a Plus member.

Let's see what else you get in this edition of FOSS Weekly:

  • A new ODF document standard release.
  • Open source alternative to Help Scout.
  • YouTube clamping down on tech YouTubers.
  • Fixing thumbnail issues in Fedora 43
  • Ubuntu's Rust transition hitting yet another hurdle.
  • And other Linux news, tips, and, of course, memes!
  • This edition of FOSS Weekly is supported by Internxt.
SPONSORED
FOSS Weekly #25.46: sudo-rs Issues, Kaspersky on Linux, Flathub Troubles, Homelab Starter and More Linux Stuff

You cannot ignore the importance of cloud storage these days, especially when it is encrypted. Internxt is offering 1 TB of lifetime, encrypted cloud storage for a single payment. Make it part of your 3-2-1 backup strategy and use it for dumping data. At least, that's what I use it for.

Get Internxt Lifetime Cloud Storage

📰 Linux and Open Source News

Big Tech being Big Tech. A creator claimed that his videos about bypassing Windows 11's mandatory online account were removed by YouTube.

YouTube Goes Bonkers, Removes Windows 11 Bypass Tutorials, Claims ‘Risk of Physical Harm’
When will these Big Tech platforms learn?
FOSS Weekly #25.46: sudo-rs Issues, Kaspersky on Linux, Flathub Troubles, Homelab Starter and More Linux Stuff

🧠 What We’re Thinking About

Could GNOME Office be a thing? Roland has some convincing points:

It’s Time to Bring Back GNOME Office (Hope You Remember It)
Those who used GNOME 2 in the 2000’s would remember the now forgotten GNOME Office. I think it’s time to revive that project.
FOSS Weekly #25.46: sudo-rs Issues, Kaspersky on Linux, Flathub Troubles, Homelab Starter and More Linux Stuff

On a side note, I found out that Flathub is ranking on Google for NSFW keywords.

What a Shame! FlatHub is Ranking on Google for Po*nHub Downloads
And it’s not Google’s fault this time.
FOSS Weekly #25.46: sudo-rs Issues, Kaspersky on Linux, Flathub Troubles, Homelab Starter and More Linux Stuff

🧮 Linux Tips, Tutorials, and Learnings

You can fix that annoying issue of GNOME Files not showing image thumbnails on Fedora, btw.

Fixing Image Thumbnails Not Showing Up in GNOME Files on Fedora Linux
Tiny problem but not good for the image of Fedora Linux, pun intended.
FOSS Weekly #25.46: sudo-rs Issues, Kaspersky on Linux, Flathub Troubles, Homelab Starter and More Linux Stuff

Theena suggests some ways to reclaim your data privacy. Switching to a private email service like Proton is one of the recommendations.

If you are absolutely new to the Linux commands, we have a hands-on series to help you out.

Linux Command Tutorials for Absolute Beginners
Never used Linux commands before? No worries. This tutorial series is for absolute beginners to the Linux terminal.
FOSS Weekly #25.46: sudo-rs Issues, Kaspersky on Linux, Flathub Troubles, Homelab Starter and More Linux Stuff

👷 AI, Homelab and Hardware Corner

Ownership of digital content is an illusion, until you take matters into your own hands. Our self-hosting starter pack should be a good starting point.

The Self-Hosting Starter Pack: 5 Simple Tools I Recommend To Get Started With Your Homelab
Self-hosting isn’t rocket science—if I can do it, so can you!
FOSS Weekly #25.46: sudo-rs Issues, Kaspersky on Linux, Flathub Troubles, Homelab Starter and More Linux Stuff

🛍️ Linux eBook bundle

FOSS Weekly #25.46: sudo-rs Issues, Kaspersky on Linux, Flathub Troubles, Homelab Starter and More Linux Stuff

This curated library (partner link) of courses includes Supercomputers for Linux SysAdmins, CompTIA Linux+ Certification Companion, Using and Administering Linux: Volumes 1–2, and more. Plus, your purchase supports the Room to Read initiative!

✨ Project Highlights

Don't let its name fool you. Calcurse is a powerhouse of a tool that can be your go-to for any calendar management needs (like a boon, almost).

Command Your Calendar: Inside the Minimalist Linux Productivity Tool Calcurse
A classic way to stay organized in the Linux terminal with a classic CLI tool.
FOSS Weekly #25.46: sudo-rs Issues, Kaspersky on Linux, Flathub Troubles, Homelab Starter and More Linux Stuff

Help Scout is known for abrupt pricing changes; why not switch to a platform that actually cares?

Tired of Help Scout Pulling the Rug from Under You? Try This Free, Open Source Alternative
Discover how FreeScout lets you run your own help desk without vendor lock-in or surprise price hikes.
FOSS Weekly #25.46: sudo-rs Issues, Kaspersky on Linux, Flathub Troubles, Homelab Starter and More Linux Stuff

📽️ Videos I Am Creating for You

The latest video shows my recommendations for Kitty terminal configuration changes.

Linux is the most used operating system in the world. but on servers. Linux on desktop is often ignored. That's why It's FOSS made it a mission to write helpful tutorials and guides to help use Linux on their personal computer.

We do it all for free. No venture capitalist funds us. But you know who does? Readers like you. Yes, we are an independent, reader supported publication helping Linux users worldwide with timely news coverage, in-depth guides and tutorials.

If you believe in our work, please support us by getting a Plus membership. It costs just $3 a month or $99 for a lifetime subscription.

Join It's FOSS Plus

💡 Quick Handy Tip

In the Konsole terminal emulator, you can use the right-click context menu to open any folder with a specific tool. For example, if you are inside a directory, right-click and select the "Open Folder With" option.

From the list, select an application. So, for instance, if Dolphin is selected, the location will be opened in the file manager. If Kate is selected, that location is opened in the editor.

Other than that, if you enable the "Underline Files" option in Configure Konsole →Profiles → Edit Profile → Mouse → Miscellaneous, you can even right-click and open files in GUI tools right from the terminal.

🎋 Fun in the FOSSverse

Can you get all the answers to this Linux distro logo quiz?

Guess the Distro from its Logo
There is a logo and four distro names. Guess which one it belongs to. It’s that simple.
FOSS Weekly #25.46: sudo-rs Issues, Kaspersky on Linux, Flathub Troubles, Homelab Starter and More Linux Stuff

🤣 Meme of the Week: Such words can hurt the soul, you know. 😵

FOSS Weekly #25.46: sudo-rs Issues, Kaspersky on Linux, Flathub Troubles, Homelab Starter and More Linux Stuff

🗓️ Tech Trivia: On November 9, 2004, Mozilla Firefox 1.0 was released, introducing a faster, safer web-browsing experience with features like tabbed browsing and popup blocking, marking a major challenge to Microsoft’s Internet Explorer dominance.

🧑‍🤝‍🧑 From the Community: One of the developers of antiX Linux has announced that the first beta release of antiX 25 is now live!

antiX 25 Beta 1 Available for Public Testing
antiX-25-full-beta1available for public testing November 5, 2025 by anticapitalista Here is the first beta iso of antiX-25 (64bit). Bullet point notes for now. based on Debian 13 ‘trixie’ 4 modern systemd-free init systems – runit (default), s6-rc, s6-66 and dinit new default look usual ‘antiX magic’ you should be able to boot live in the non-default init and it should then become the default after install. Please note that user intervention will be required more than previous versions o…
FOSS Weekly #25.46: sudo-rs Issues, Kaspersky on Linux, Flathub Troubles, Homelab Starter and More Linux Stuff

❤️ With love

Please share it with your Linux-using friends and encourage them to subscribe (hint: it's here).

Share the articles in Linux Subreddits and community forums.

Follow us on Google News and stay updated in your News feed.

Opt for It's FOSS Plus membership and support us 🙏

Enjoy FOSS 😄



from It's FOSS https://ift.tt/RAiS8yV
via IFTTT