• FACEBOOK
  • TWITTER
  • MASTODON
  • GITHUB

GPL(GENERAL PUBLIC LICENSE) FREEDOM 0:
The freedom to run the program as you wish, for any purpose.
FREEDOM 1:
The freedom to study how the program works, and change it so it does your computing as you wish.
FREEDOM 2:
The freedom to redistribute copies so you can help others.
FREEDOM 3:
The freedom to distribute copies of your modified versions to others.

pw3270 – TN3270 emulator
/// 26 Nov 2025, 8:39 am ////// Linux Links ///

pw3270 is a modern, GTK-based, completely free TN3270 emulator.

The post pw3270 – TN3270 emulator appeared first on LinuxLinks.

6 coding myths that refuse to die - How-To Geek
/// 26 Nov 2025, 11:30 am ////// Google News ///
6 coding myths that refuse to die  How-To Geek
NVIDIA Is Interested In Helping Bring Vulkan Video To Chrome
/// 26 Nov 2025, 11:34 am ////// Phoronix ///
NVIDIA engineers are interested in helping Google bring Vulkan Video accelerated GPU video decoding to the Chrome/Chromium web browser...
Free and Open Source Software
/// 26 Nov 2025, 10:17 am ////// Tux Machines ///
This is free and open source software
Heck yeah - the next HELLDIVERS 2 Warbond finally brings a minigun
/// 26 Nov 2025, 11:38 am ////// GamingOnLinux ///
HELLDIVERS 2 is still one of the best online co-op action games around, and we're finally going to be able to get a minigun to really tear through enemies.

.

Read the full article on GamingOnLinux.

Open Source Never Dies: 11 of My Favorite Linux Apps That Refused to Stay Dead
/// 26 Nov 2025, 11:03 am ////// ITS FOSS ///
Open Source Never Dies: 11 of My Favorite Linux Apps That Refused to Stay Dead

One of the greatest things about open-source software is that anyone can pick up where a project left off and bring it back to life, whether it's to continue a legacy, or a spiritual successor that builds on a new foundation.

In this article, I'll share some of the popular Linux apps that got new lives as "New/Next Generation" (-ng) versions of their former selves.

1. iotop-c

Open Source Never Dies: 11 of My Favorite Linux Apps That Refused to Stay Dead
iotop-c gives iotop a refreshed look

You've heard of top and htop, but did you know there's also a tool specifically for monitoring disk I/O? That's what iotop was created to do, but, but it's not seen development activity for some time, and being written in Python, it can get a bit slow (sorry Python lovers).

That's where iotop-c comes in. It's a rewrite of the original iotop in C, of course, and it's not only much faster, but richer in features, and actively maintained.

Installation

Iotop-c is packaged as iotop-c in most distros. You can also check out the GitHub page to grab the source code, star the project, or report bugs.

For Debian/Ubuntu you can run:

sudo apt install iotop-c
💡
Want to learn how to make the most of iotop? Check out this guide to iotop and ntopng on Linux Handbook.

2. vokoscreenNG

Open Source Never Dies: 11 of My Favorite Linux Apps That Refused to Stay Dead
vokoscreen NG makes screenrecording a breeze

vokoscreen NG (vovokscreen Next Generation) is the modernized rewrite of vokoscreen, a popular open-source screen recording app from the previous decade. Where the original version used FFmpeg and was limited to X11 (not because of its backend, to be clear), vokoscreenNG uses Gstreamer and has a fresh Qt interface.

It's also got support for Wayland, which the previous generation lacked.

Installation

You can grab vokoscreenNG from Flathub, or install it most distros directly from your package manager. On Debian/Ubuntu, you can install vokoscreen NG with:

sudo apt install vokoscreen-ng

3. WoeUSB-ng

Open Source Never Dies: 11 of My Favorite Linux Apps That Refused to Stay Dead
WoeUSB-ng makes it easy to create bootable Windows USB drives

WoeUSB-ng is a total rewrite of WoeUSB, an open-source Linux app for creating bootable Windows USB flash drives. It was created by the same developers, but rewritten in Python and given a GUI to make it easier to set Windows installers from Linux.

Ironically, despite an active community, WoeUSB-ng seems abandoned again, as it hasn't been updated in at least two years. For instance, there's an open pull request to add AppImage packaging, and pave the way for others, but the main repository appears stalled. Maybe some day WoeUSB-ng will rise again.

🚧
WoeUSB was popular in 2010s. Then it was abandoned and WoeUSB-ng took its place. From what I see, WoeUSB-ng's development has stagnated as well. Until we see a WoeUSB-ng++ or WoeUSB-GenZ, we have Ventoy to make bootable Windows USB on Linux.

Installation

If you're on Arch (or, if you use Arch on your distro of choice via Distrobox), you can install WoeUSB-ng with:

yay -S woeusb-ng

4. eSpeak NG

Open Source Never Dies: 11 of My Favorite Linux Apps That Refused to Stay Dead
The Screen Reader in GNOME uses eSpeak NG at the backend

eSpeak NG is speech synthesizer with support for over a hundred languages. Its a true fork that builds on the preexisting eSpeak engine, adding more languages and new features while possessing a cleaner codebase and remaining fully compatible with the original.

This means eSpeak NG serves as a drop-in replacement for the original.

Installation

eSpeak NG is included with most distros as their text-to-speech engine. You can also install espeak-ng from your package manager of choice, for example:

sudo apt install espeak-ng

Will install it on Debian/Ubuntu (if you don't already have it).

5. stress-ng

Open Source Never Dies: 11 of My Favorite Linux Apps That Refused to Stay Dead
The safest move with stress-ng (unless you know what you're doing)

stress-ng (stress next generation) is an app designed to do exactly what its name suggests, but for a good cause. It generates system load to stress-test both hardware and software subsystems to uncover bugs and limitations. Let me stress, no pun intended, it is not meant for casual use.

As you might guess, stress-ng is the remake of stress, the original app. After stress was abandoned, stress-ng became the standard, adding new features and methods for a broader range of systems.

Installation

You can install stress-ng from your distro's package manager. For Debian/Ubuntu, the command would be:

sudo apt install stress-ng
⚠️
Warning: stress-ng is not a toy and can genuinely cause your system to overheat or become unresponsive. It should only be used by professionals, in controlled conditions.

6. aircrack-ng

Open Source Never Dies: 11 of My Favorite Linux Apps That Refused to Stay Dead
aircrack-ng is a great pen-test tool

aircrack-ng is a total remake and expansion of aircrack, an app used for professional security auditing of WiFi networks by attempting to "crack" their passwords (hence the name). The original aircrack was a WEP/WPA recovery tool from the early 2000s.

Designed when WPA2 was new, it lacked the coverage and hardware support needed for the modern era. By contrast, aircrack-ng is a full suite, with broader hardware support, various attack types, automation features, and more.

Installation

You can get aircrack-ng on most distros through the package manager. It's included with many security focused distros, like Kali, Parrot, and BlackArch.

To install aircrack-ng on Debian/Ubuntu, you can run:

sudo apt install aircrack-ng

7. tomboy-ng:

Open Source Never Dies: 11 of My Favorite Linux Apps That Refused to Stay Dead
Tomboy-ng keeps the note nostalgia alive

Tomboy-ng is a total rewrite of Tomboy, which was once the standard notes tool on the GNOME desktop, and shipped with several distros, including Ubuntu. Tomboy was written in C#, and required Mono, which was too heavy in the days of CD and DVDs.

For this reason, Tomboy was dropped from Ubuntu, and its C# dependency raised issues for some. Later, the legacy Tomboy codebase was abandoned, and Tomboy-ng, written in Pascal, took its place.

Installation

You can install Tomboy-ng on most distros by from the default repositories. On Debian/Ubuntu, you can run:

sudo apt install tomboy-ng

8. radiotray-ng:

Open Source Never Dies: 11 of My Favorite Linux Apps That Refused to Stay Dead
Radiotray-ng lets you listen to online radios easily

Radiotray-ng is a complete rewrite of Radiotray, a minimalist Python/GTK2 app for playing online radio stations right from the system tray. This rewrite use C++ and Glib/Gtkmm, and is not only more stable, but less prone to breakage from GTK updates.

Radiotray-ng brings better codec handling, lower resource usage, more stable stream reconnection and uses JSON for saving its configuration (as opposed to XML).

Installation

Radiotray-ng is packaged for Fedora and can be installed directly with:

sudo dnf install radiotray-ng

For Ubuntu users, .deb packages are typically provided with each release.

9. GoldenDict-ng

Open Source Never Dies: 11 of My Favorite Linux Apps That Refused to Stay Dead
GoldenDict-ng is way more than a basic dictionary app

GoldenDict-ng is a true fork of GoldenDict, an popular open-source dictionary and translation app. GoldenDict-ng maintains the original's support for multiple dictionary formats (StarDict, Babylon, Webster, and more), audio pronunciations, web lookups, and scan-to-translate functionality.

On top of these, it brings an updated interface based on Qt 6, various bug fixes, better multimedia support, and improved dictionary rendering. It also adds other niceties like dark mode, better scanning behavior, and more robust indexing, making it suitable for dictionary power users.

Installation

Goldendict-ng is available on Flathub, for those who'd prefer to use a Flatpak. You can also install it from most distro repos. Debian/Ubuntu users can run:

sudo apt install goldendict-ng

10. ntopng

Open Source Never Dies: 11 of My Favorite Linux Apps That Refused to Stay Dead
ntopng gives a bird's eye view of your network activity

ntop-ng is the next-generation rewrite of ntop, a powerful real-time network traffic analyzer. The original ntop was already groundbreaking, and ntopng brings a new architecture, modern web UI, deep packet inspection, powerful metrics and flow analysis, and real-time bandwidth monitoring.

It also adds Lua scripting, network flow export, and integration with PF_RING for high-performance environments.

Installation

ntop-ng is packaged for most distros. On Debian/Ubuntu systems you can run:

# Install ntop-ng
sudo apt install ntop-ng
💡
Note: You can learn how to put ntop-ng to good use by following this tutorial.

11. Shutter: revived, not replaced

Open Source Never Dies: 11 of My Favorite Linux Apps That Refused to Stay Dead
Shutter's back like it never left

Shutter is popular Linux screenshot app with a slew of useful features that served countless users for many years. It was abandoned for some time, not working on modern distros, nor supporting Wayland. Despite apps like Flameshot and Gradia arising in its absence, Shutter still held a special place for many.

Fortunately, Shutter has been revived and even has initial support for Wayland. It's actively maintained by a community of enthusiastic users and contributors.

Where to get it:

Shutter is packaged for most popular distros, so you can grab it right from your package manager. On Debian/Ubuntu, you can run the following to install it:

sudo apt install shutter

Conclusion

Open-source projects are rarely ever truly dead: the right person or community can bring them back to life. From humble desktop apps, to critical system utilities, open-source finds new ways to preserve old ideas.

If you rely on any of these apps, consider contributing or making a donation. After all, it's we, the community, who keep open-source alive.

Typesetter - Editor for Typst (alternative to LaTeX)
/// 26 Nov 2025, 9:22 am ////// Reddit ///
submitted by /u/FryBoyter
[link] [comments]
Chrome Extension Caught Injecting Hidden Solana Transfer Fees Into Raydium Swaps
/// 26 Nov 2025, 11:10 am ////// The Hacker News ///
Cybersecurity researchers have discovered a new malicious extension on the Chrome Web Store that's capable of injecting a stealthy Solana transfer into a swap transaction and transferring the funds to an attacker-controlled cryptocurrency wallet. The extension, named Crypto Copilot, was first published by a user named "sjclark76" on May 7, 2024. The developer describes the browser add-on as
Hundreds of free software supporters tuned in for FSF40 hackathon
/// 25 Nov 2025, 9:05 pm ////// FSF Blog ///
General Availability of AlmaLinux OS 10.1 Stable!
/// 24 Nov 2025, 12:00 am ////// Blog on AlmaLinux ///

AlmaLinux OS 10.1 Stable Now Available

Hello Community! The AlmaLinux OS Foundation is announcing the general availability of AlmaLinux OS 10.1 codenamed “Heliotrope Lion”!

Installation ISOs are available on the mirrors now for all architectures:

  • Intel/AMD (x86_64)
  • Intel/AMD (x86_64_v2)
  • ARM64 (aarch64)
  • IBM PowerPC (ppc64le)
  • IBM Z (s390x)

Torrents are available as well at:

  • Intel/AMD (x86_64)
  • Intel/AMD (x86_64_v2)
  • ARM64 (aarch64)
  • IBM PowerPC (ppc64le)
  • IBM Z (s390x)

ISOs, Live Images, Cloud and Containers

AlmaLinux also offers a variety of Cloud, Container and Live Images. The builds for these get kicked off as soon as the public repository is ready.

Distribution Release: ROSA 13.1
/// 25 Nov 2025, 10:59 am ////// DISTROWATCH ///
The DistroWatch news feed is brought to you by TUXEDO COMPUTERS. NTC IT ROSA has announced the release of ROSA 13.1, an updated version of the Russian company's general-purpose Linux distribution for desktops (with GNOME or KDE Plasma) and servers, originally forked from Mandriva Linux. This release comes with a large number of bug fixes reported in ROSA 13.0....
Fedora-Based Ultramarine 43 Is Now Available with Pinebook Pro Support
/// 25 Nov 2025, 10:33 am ////// 9to5Linux ///

Ultramarine 43

Ultramarine 43 Linux distribution is now available for download based on Fedora Linux 43 and featuring Pinebook Pro support. Here’s what else is new!

The post Fedora-Based Ultramarine 43 Is Now Available with Pinebook Pro Support appeared first on 9to5Linux - do not reproduce this article without permission. This RSS feed is intended for readers, not scrapers.

Rocky Linux 10.1 Available Now
/// 25 Nov 2025, 12:00 am ////// Rocky Linux News ///

We are pleased to announce the general availability of Rocky Linux 10.1. Updated installation media, container, cloud, development board, and live images are available from the Rocky Linux Downloads webpage. Please consult the release notes published within Rocky Linux Documentation for important information, such as known issues and a more detailed explanation of changes in this version.

Notable New Features and Changes

Soft Reboots

Systemd soft-reboot enables userspace-only reboots, permitting rapid patching in many scenarios. Documentation is available in the systemd-soft-reboot.service manual page. Please review the documentation and note the limitations before using soft reboots in production environments.

Post-Quantum Cryptography

Furthering the post-quantum cryptography progress made in Enterprise Linux 10.0, Rocky Linux 10.1 now prioritizes post-quantum over classical algorithms in OpenSSL and enables post-quantum algorithms in more libraries and policies including GnuTLS.

XFS Enhancements

You can now scrub mounted XFS filesystems with xfs_scrub and shrink XFS filesystems with xfs_growfs in some scenarios.

Upgraded Software

Dynamic programming languages, web, and database servers:

  • .NET 10
  • Node.js 24
  • OpenJDK 25
  • Valkey 8

Compiler toolsets:

  • GCC 15
  • Go Toolset 1.24
  • LLVM Toolset 20
  • Rust Toolset 1.88

Special Interest Group Notes and Changes

SIG/AltArch

  • Rocky Linux 10.1 VisionFive2 images will not be published until issues in the riscv64 6.12.0-124.8.1 kernel build have been fixed.

Testing

Like every Rocky Linux release, Rocky Linux 10.1 has undergone thorough testing for accuracy and stability. The Rocky Linux testing process encompasses both manual and automated checks across a diverse range of environments and configurations. We have validated this release for two weeks before approving it for general availability. Testing artifacts, discussions, and the release checklist can be found in the Rocky Release (v10.1) Playbook.

To participate in this testing process for future releases, join the ~Testing channel on the Rocky Linux Mattermost. We can’t wait to meet you!

Upgrade and Conversion Process

You may upgrade from Rocky Linux 10.0 to Rocky Linux 10.1 on the CLI by running sudo dnf -y upgrade or via desktop tools like GNOME Software or KDE Discover.

Rocky Linux does not support upgrades between major releases. To move from 8.x or 9.x to Rocky Linux 10.1, a fresh install of the operating system is recommended.

Users from other Enterprise Linux 10 based distributions may convert their installations to Rocky Linux 10 using the migrate2rocky utilities.

Known Issues

  • RISC-V Kernel 6.12.0-124.8.1 - We observed issues with the kernel 6.12.0-124.8.1 on some RISC-V systems during our testing. RISC-V is currently a Rocky Linux secondary architecture, thus the issues are not considered release-blocking. RISC-V users are advised not to upgrade the kernel yet except for development and testing purposes. Users may upgrade with dnf upgrade --exclude='kernel*' --exclude='kmod*' to temporarily avoid upgrading the kernel.

See the Rocky Linux 10.1 Release Notes for a more complete list and explanation of known issues.

Acknowledgements

We extend deepest thanks to the Rocky Linux project volunteers and leaders for their commitment to making this release possible through compiling, testing, and documenting this release. Our gratitude extends to our sponsors and partners for continuing to ensure we have the necessary resources for this task.

Special recognition to these contributors for their work on this release:

  • Alan Marshall (@alangm)
  • Alexey Melezhik (@melezhik)
  • Alexia Stein (@alexia)
  • Bob Robison
  • Brian Clemens (@brian)
  • Bryan (@codedude)
  • Chris Short (@chrisshort)
  • Chris Stackpole (@stack)
  • David Gomez (@dgomez)
  • Fredrik Nystrom (@nscfreny)
  • Joey Brinkman (@j0ey)
  • Gabriel Graves (@nebraskacoder)
  • Louis Abel (@label)
  • Lukas Magauer (lumarel)
  • Michael Young (@elguero)
  • Mustafa Gezen (@mustafa)
  • Nathan B (@kemotaha)
  • Neil Hanlon (@neil)
  • Ondřej Nedomlel (@p4nda)
  • Pablo Greco (@pgreco)
  • Sam Thornton (@sthornton)
  • Seongeun Hwang (@hw5e)
  • Sherif Nagy (@sherif)
  • Skip Grube (@skip77)
  • Stephen Simpson (@ssimpson)
  • Steven Spencer (@sspencerwire)
  • Taylor Goodwill (@tgo)
  • Trevor Cooper (@tcooper)
  • Wale Soyinka (@wale)

Finally, we appreciate our Enterprise Linux ecosystem—especially the upstream development work of Fedora Linux, the curation work in CentOS Stream, and the many projects and their developers that together comprise Enterprise Linux.

780,000 Windows Users Downloaded Linux Distro Zorin OS in the Last 5 Weeks
/// 22 Nov 2025, 5:34 pm ////// Slashdot ///
In October Zorin OS claimed it had 100,000 downloads in a little over two days in the days following Microsoft's end of support for Windows 10. And one month later, Zorin OS developers now claim that 780,000 people downloaded it from a Windows computer in the space of a month, according to the tech news site XDA Developers. In a post on the Zorin blog, the developers of the operating system Zorin OS 18 announced that they've managed to accrue one million downloads of the operating system in a single month [since its launch on October 14]. While this is plenty impressive by itself, the developers go on to reveal that, out of that million, 78% of the downloads came from a Windows machine. That means that at least 780,000 people on Windows gave Zorin OS 18 a download... [I]t's easy to see why: the developers put a heavy emphasis on making their system the perfect home for ex-Windows users.

Read more of this story at Slashdot.

Pomolin 1.1.10
/// 25 Nov 2025, 9:37 pm ////// Softpedia ///
Stay focused and productive with the help of this super sleek yet very simplistic Pomodoro timer app
How to Monitor Linux User Activity with psacct and acct Tools
/// 26 Nov 2025, 4:31 am ////// Tecmint ///
The post How to Monitor Linux User Activity with psacct and acct Tools first appeared on Tecmint: Linux Howtos, Tutorials & Guides .

When you’re managing a Linux server, especially one with multiple users, you need visibility into what’s happening on your system,

The post How to Monitor Linux User Activity with psacct and acct Tools first appeared on Tecmint: Linux Howtos, Tutorials & Guides.
Legal
[Privacy Statement]
[Terms Of Service]
[ Licenses]
[ Citation]
[ What Is Copyleft ]
Impact
[Social Benefit Award ]
[Advancement of Free Software Award]
[Open Source Organizations]
[Userspace Mission]
Resources
[Linux Founation Event List]
[EdX - Free Online Courses]
[Free Computer EBooks]
[Supported Hardware]

Design by [Daniel Yount] ::: Powered By [WordPress] ::: Encrypted By [LetsEncrypt]

 L O A D I N G 
General Contact Email

    [md-form]

    [md-text label="Your Name"]

    [/md-text]

    [md-text label="Your Email"]

    [/md-text]

    ENTER "QUESTION:" IN MESSAGE OR IT WONT BE SENT.
    [md-textarea label="Message"]

    [/md-textarea]

    [md-submit]

    [/md-submit]

    [/md-form]