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

9to5Linux Weekly Roundup: September 20th, 2026
/// 21 Sep 2026, 6:45 am ////// 9to5Linux ///

9to5Linux Roundup September 20th

9to5Linux Weekly Roundup for September 20th, 2026, brings news about GNOME 51, Firefox 156, Thunderbird 156, Fedora 45 Beta, Calibre 9.15, MX Linux 25.3, PipeWire 1.6.9, Clonezilla Live 3.3.3-37, HPLIP 3.26.6, Ubuntu 26.10 Snapshot 4, VirtualBox 7.2.18, new Raspberry Pi OS release, DXVK 3.1.1, and more.

The post 9to5Linux Weekly Roundup: September 20th, 2026 appeared first on 9to5Linux - do not reproduce this article without permission. This RSS feed is intended for readers, not scrapers.

ClickFix Lures Deploy ChainScript RAT Using Polygon to Rotate C2 Infrastructure
/// 21 Sep 2026, 8:39 am ////// The Hacker News ///
Threat actors are leveraging ClickFix-like lures to deliver a previously undocumented remote access trojan (RAT) called ChainScript. "ChainScript has appeared under multiple build names, including ComponentTask33, UpdateDigital, HostShared, and OrchidViolet66, while presenting itself as Spotify, Zoom Workplace, and Microsoft Teams software," Blackpoint Adversary Pursuit Group (APG)
dwproton-11.0-13 brings fixes for Goddess of Victory: NIKKE, Aniimo and more on SteamOS / Linux - GamingOnLinux
/// 21 Sep 2026, 7:43 am ////// Google News ///
dwproton-11.0-13 brings fixes for Goddess of Victory: NIKKE, Aniimo and more on SteamOS / Linux  GamingOnLinux
FOSS Linux Player Piano App
/// 21 Sep 2026, 8:54 am ////// Reddit ///
submitted by /u/sysrpl
[link] [comments]
DistroWatch Weekly, Issue 1191
/// 21 Sep 2026, 12:14 am ////// DISTROWATCH ///
The DistroWatch news feed is brought to you by TUXEDO COMPUTERS. This week in DistroWatch Weekly:
Review: Command line shells
News: Orphaned Void packages, Ubuntu finishes migration from GNU to Rust Coreutils, new CoW filesystem for OpenBSD, new features in GNU Coreutils
Questions and answers: The legacy of filenames on Linux
Released last week: Raspberry Pi OS 2026-09-15, Parted Magic 26.09, Clonezilla....
Kairos – immutable Linux meta-distribution for edge and cloud
/// 21 Sep 2026, 8:58 am ////// Linux Links ///

Kairos is an immutable Linux meta-distribution providing atomic upgrades and lifecycle management for edge, cloud and bare-metal systems.

The post Kairos – immutable Linux meta-distribution for edge and cloud appeared first on LinuxLinks.

Elecrow CrowPanel Advanced HMI Display Review: A Tinkerer's Touchscreen
/// 19 Sep 2026, 2:25 pm ////// ITS FOSS ///
Elecrow CrowPanel

I have been (mostly) happily running Home Assistant in my homelab for a while now. There is a tiny issue, though. While my wife and I can manage most devices through the companion app, kids or guests cannot.

Reaching out for a phone is not always convenient, and of course, I cannot handover my phone to guests. Home Assistant's own Voice Preview device is not a capable device if you are not connected to the cloud.

So when I got my hands on the Elecrow CrowPanel Advanced 10.1", a big ESP32-P4 touchscreen, I got some ideas. I could configure this device to allow access to some connected devices and put it in a common area where anyone in the household could use it.

It's an ESP32 device, and I already tinkered a little with ESPHome on my ZimaBoard so it was kind of a natural fit.

Note that this is a developer board with a screen. It's not an out-of-the-box smart home panel you just take out of the box and mount on your wall. If you enjoy tinkering, building things, you will like the device. If you want something that just works, it's not for you.

📋
Elecrow sent me this device for review. The views expressed are my own.

Hardware specification

Here is a quick look at what this device is packing inside it:

Component Detail
Main SoC ESP32-P4 (dual-core RISC-V)
Wireless ESP32-C6 co-processor (WiFi 6, Bluetooth 5)
Display 10.1" IPS, 1024x600, MIPI-DSI
Touch Capacitive (GT911 controller)
Memory 16MB flash, 32MB PSRAM
Audio Onboard speaker output (dedicated connector) and microphone
Camera Camera connector (add-on)
Expansion Exposed I2C, UART, and GPIO headers
Power USB-C, plus a battery connector
Model DHE04310D (hardware revision V1.1)
Price Around $60

It has interesting hardware, especially since it also offers a camera connector. My package came with a camera as well, not sure if it is included in all the boxes.

Elecrow CrowPanel display in the box

And then you also get the options to connect speakers on their own port. Which means that if you connect a LLM to your Home Assistant, and get a reply in audio format. There is a battery connector in case you want to use the device without direct power connection. The I2C, UART, and GPIO pins are accessible, too.

📋
I am using Home Assistant everywhere because this is what I am using this device for. However, this Elcrow display can be configured and used in a number of projects. You just have to put your tinkerer hat on.

Setting up the display with Home Assistant

This is where I spent most of my time, and where you should set your expectations.

Out of the box the board runs Elecrow's demo firmware, which shows off the screen but does nothing useful really. But it is still good enough to test the touchscreen and its connectivity. You would at least know that the device is working.

demo firmware on CrowPanel
The demo gives you enough to test its functionality before you build on it

To make it as control panel for the Home Assistant, I flashed it with my own firmware. I went the ESPHome route, since ESPHome talks to Home Assistant over its native API and does not need the Supervisor add-on setup, which matters because I run Home Assistant in a container on Zima OS.

I will be honest, the first flash was not smooth. Getting WiFi up on this board took real work, because the ESP32-P4 has no radio of its own and leans on the ESP32-C6 over an internal SDIO link. On my V1.1 unit, the data line order was reversed compared to the reference configs I was following. Until I sorted that out, the board just kept rebooting. But that's really my fault.

One thing worth mentioning is that the stock demo firmware did not remember my WiFi after a reboot. I had to enter the credentials again. Once I moved to my own ESPHome firmware, it remained connected after reboots. So, if you only ever run the demo, do not expect it to hold settings. Perhaps that's the intentional behavior?

My first test project was really simple. I coded a single button on the screen to work as a switch in Home Assistant for my geyser plug. Tapping it toggled the real device. Also, when I flipped the geyser from the Home Assistant app instead, the button on the screen updated to match. So, things worked as expected.

Elecrow CrowPanel
I am new to LVGL, and thus I tried with a very basic project

Elecrow recommends SquareLine Vision for building the UI visually, which should be easier (more intuitive) than coding in LVGL in Arduino IDE.

📋
The quick test shows that the core promise of the Elecrow CrowPanel works. With ESPHome you can build a touch dashboard that controls real Home Assistant devices and reflects their live state, all running on the board itself with no extra server.

The display in everyday use

Elecrow CrowPanel display

The screen itself is fine. It's not top-notch like an iPad. The best way I can describe it is that it feels like an entry-level tablet.

The 1024x600 IPS panel is bright enough and the viewing angles are okay, but it is not going to impress anyone who has looked at a modern premium phone recently. For a control panel stuck on a wall showing buttons, that is completely acceptable.

Touch response was good in my testing. Taps registered reliably and I did not have to poke twice.

Ports, audio, and the room to grow

The CrowPanel display is meant to be more than just a display.

The two small speakers, when paired with the onboard microphone, can work as a voice satellite for Home Assistant Assist. So you get both a screen and a voice endpoint in one device.

Of course, I am limiting it to Home Assistant but you can have more usage in godowns, factories, and even in homelab setups. Your imagination and creativity can be better than me.

Then there is the battery connector. A battery option gives it more flexibility and portability. It may be a good fit where you need the device to survive during a power cut. I did not test battery life as I did not have a spare battery to connect.

The exposed I2C, UART, and GPIO means you can plug in extra sensors, another microcontroller, or your own hardware off this board. For a DIY audience, that flexibility is worth more than a prettier screen.

Elecrow suggests various scenarios where it could be used

The camera and the AI question

Elecrow also mentions "integrated AI vision capabilities" because it has the scope for an add-on camera. The 2 MP camera is optional but it came in the package. I plugged the camera in and it worked.

CrowPanel AI feature

I have not properly tested the on-device AI feature. The ESP32-C6 is supposed to give edge AI capability to embedded devices. Now this could work with simpler cases like facial recognition for unlocking access, my thinking is that instead of running AI on the display board itself, use it as an interface and let a vision model run on a more capable device.

Is it worth getting?

🚦
Who is it for: Homelab owners and makers who see the setup work as part of the fun.
Who is it NOT for: Anyone who wants to mount a panel on the wall in ten minutes and thinks of using Android style apps to control their set up.

This is a decent offering for DIY makers. From homelab to actual industry usage, this device has potential that can be utilized by your requirements and imagination.

If you already tinker with ESPHome or ESP32 projects and you want a large touchscreen to build a project, this board gives you a lot to work with.

Play with LVGL and you can configure the device as per your need. And you don't even need to know coding. LLMs these days can easily help you generate code you want for your project.

I am repeating myself. This is not a plug-and-play smart home panel. You have to build on it. I started with a working control panel, and I plan on expanding that dashboard well beyond one button.

But if you are not comfortable flashing firmware, writing/generating code, it's not for you.

Explore CrowPanel Advanced HMI Display
Android Leftovers
/// 21 Sep 2026, 7:22 am ////// Tux Machines ///
Android 17 QPR1 changes some Pixel status bar icons
GNU Boot joins FSF fiscal sponsorship program
/// 14 Sep 2026, 9:55 pm ////// FSF News ///
BOSTON, Massachusetts, USA (Monday, September 14, 2026), — The Free Software Foundation (FSF) announced today that GNU Boot is its latest fiscally sponsored project. GNU Boot is a libre, ethical replacement for the nonfree BIOS or UEFI, which is software found in virtually all personal computers in the world today.
15 Practical pwd Examples in Linux You Should Know
/// 11 Sep 2026, 6:51 am ////// Tecmint ///
The post 15 Practical pwd Examples in Linux You Should Know first appeared on Tecmint: Linux Howtos, Tutorials & Guides .

pwd looks like one of the simplest Linux commands, but there are a few details worth knowing once symlinks and

The post 15 Practical pwd Examples in Linux You Should Know first appeared on Tecmint: Linux Howtos, Tutorials & Guides.
CoreOS 45 Test Week
/// 16 Sep 2026, 8:00 am ////// Fedora Magazine ///

The Fedora CoreOS and QA teams are gearing up for Fedora 45, and we need your help! We are organizing a Fedora CoreOS Test Week starting on September 21, 2026.

This event is a great opportunity for the community to test Fedora CoreOS (FCOS) based on Fedora 45 content before it officially reaches the testing and stable streams. By participating, you help us ensure a smooth and reliable experience for all users.

How does a Test Week work?

A Test Week is an event where anyone can help verify that the upcoming release works as expected. If you’ve been looking for a way to get started with Fedora contribution, this is the perfect entry point.

To participate, you simply need to:

  • Download the Fedora CoreOS test images.
  • Follow the step-by-step test cases provided.
  • Report whether the tests passed or failed on your hardware or VM.

The Wiki Page is your primary source of information for this event. It contains information on what to download (and from where), what and how to test, who you can contact if necessary, and where to report any bugs you may find. Once you have completed your tests, please log your results there!

Your contribution, big or small, makes a huge difference. Let’s work together to make Fedora CoreOS 45 a great release. Happy testing!

It’s Time to Test Fedora 45 Beta
/// 17 Sep 2026, 2:20 pm ////// Linux Magazine ///

Fedora 45 beta has been released with updated Gnome, KDE Plasma, and kernel.

Developer Abandons 'PS5 Linux' Project After Sony Patches AI-Discovered Exploit
/// 19 Sep 2026, 10:05 pm ////// Slashdot ///
"In April this year, we saw Andy Nguyen turning the PS5 into a Linux-powered gaming PC," writes the blog It's FOSS. It ran Steam games and emulators using the PS5's on-board hardware. But this week Andy announced he's "stopping all my work on PS5 Linux" and "stepping away from the PS5 scene." stopping work on porting the project to the PS5 Pro, which would've shipped sometime in 2027. Andy Nguyen: After pouring my heart and months of my life into it, including plans to finish PS5 Pro support and release in 2027, it's all down the sink. The scene used to be a group of highly talented researchers, but now it is just a bunch of noobs using LLMs and writing hacks they don't even understand. Slop kiddies found the only hypervisor bug left, which I had also found a while ago, and decided to report to Sony. I asked them to at least wait for GTA 6 to come out so that people would have the opportunity to legally purchase the game and also enjoy Linux. They agreed to wait, but not a day passed and they decided to waste it instead. Or, as It's FOSS tells it: Running Linux on a PlayStation console is possible because the PS5 Linux project was able to find a way past the hypervisor using exploits Sony had already patched, covering firmware 3.00 through 7.61. .. [The bug's discoverer writes it was] found with what he calls his "trusty ai clanker machine" and no help from anyone else. He had even agreed to Andy's request to not disclose the findings. Unexpectedly, a third person, still unnamed, found the same bug using AI a few hours later. Anticipating that there would be more people finding the same bug, [he] decided to post the flaw on HackerOne. The project's GitHub page and all the related repositories are still there. Nothing has been archived as of today, and if you wanted to, you could start contributing to the PS5 Linux project by taking over any pending work or cooking up new improvements... The PS5 Pro support Andy was building never reached the repository, so you would have to start from scratch... While Andy's departure is a blow to the plan for supporting newer PS5 firmware and the PS5 Pro, other contributors have shown that they can deliver work on the loader without him, and I am hopeful more will follow.

Read more of this story at Slashdot.

Oozing with deadly sludge, reclaim the world in the roguelike survival city builder Toxic Frontier
/// 21 Sep 2026, 8:34 am ////// GamingOnLinux ///
Toxic Frontier was announced at the PC Gaming Show Tokyo Direct, bringing some interesting ideas for fans of turn-based roguelike city-builders.

Read the full article on GamingOnLinux.

How to Setup Kubernetes Ingress Controller using Traefik
/// 17 Aug 2026, 1:07 am ////// Linuxtech ///
In this guide, we will show you how to setup Kubernetes Ingress Controller using Traefik, configure both simple and advanced […]
Join us, we're hiring!
/// 16 Sep 2026, 9:06 pm ////// FSF Blog ///
We are looking for two new colleagues — come and make a global impact!
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]