Tux Machines

Do you waddle the waddle?

Other Sites

LinuxGizmos.com

Qualcomm QCS6490-based 3.5″SBC supports Yocto, Ubuntu, and Windows on Arm

The MIO-5355 is offered with either the QCS6490 or QCS5430 system-on-chip. The QCS6490 variant integrates an octa-core Kryo 670 CPU configuration with Cortex-A78 and Cortex-A55 cores clocked up to 2.7 GHz, while the QCS5430 provides a six-core configuration with lower peak frequencies.

UnifyDrive expands its private NAS lineup with UC450 Pro and UC250

The UC450 Pro is built around Intel’s Core Ultra 5 225H processor, which combines CPU cores with integrated Intel Arc graphics and an onboard NPU via Intel AI Boost. The configuration is described as supporting workloads such as virtualization, media processing, and local AI-assisted tasks.

MultiCM Flasher enables parallel programming of Raspberry Pi Compute Modules

The MultiCM Flasher is designed for programming up to seven Compute Modules in parallel, with support for mixed module generations using a single firmware image.

BentoIO CMX0 IO-Carrier Board adds low-profile platform for Raspberry Pi CM5

The CMX0 supports both Compute Module 5 Lite and eMMC variants, with a microSD card socket provided for Lite modules. Compute Module 4 is not supported.

ESP32-E22 debuts with tri-band Wi-Fi 6E and dual-mode Bluetooth

ESP32-E22 integrates tri-band Wi-Fi 6E support across the 2.4 GHz, 5 GHz, and 6 GHz bands, marking Espressif’s first product to enable operation in the 6 GHz spectrum.

OpenSSH 9.1 released (UPDATED)

posted by Roy Schestowitz on Oct 04, 2022,
updated Oct 05, 2022

OpenSSH 9.1 has just been released. It will be available from the
mirrors listed at https://www.openssh.com/ shortly.

OpenSSH is a 100% complete SSH protocol 2.0 implementation and includes sftp client and server support.
Once again, we would like to thank the OpenSSH community for their continued support of the project, especially those who contributed code or patches, reported bugs, tested snapshots or donated to the project. More information on donations may be found at: https://www.openssh.com/donations.html
Changes since OpenSSH 9.0 =========================
This release is focused on bug fixing.
Security ========
This release contains fixes for three minor memory safety problems. None are believed to be exploitable, but we report most memory safety problems as potential security vulnerabilities out of caution.
* ssh-keyscan(1): fix a one-byte overflow in SSH- banner processing. Reported by Qualys
* ssh-keygen(1): double free() in error path of file hashing step in signing/verify code; GHPR333
* ssh-keysign(8): double-free in error path introduced in openssh-8.9
Potentially-incompatible changes --------------------------------
* The portable OpenSSH project now signs commits and release tags using git's recent SSH signature support. The list of developer signing keys is included in the repository as .git_allowed_signers and is cross-signed using the PGP key that is still used to sign release artifacts: https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/RELEASE_KEY.asc
* ssh(1), sshd(8): SetEnv directives in ssh_config and sshd_config are now first-match-wins to match other directives. Previously if an environment variable was multiply specified the last set value would have been used. bz3438
* ssh-keygen(8): ssh-keygen -A (generate all default host key types) will no longer generate DSA keys, as these are insecure and have not been used by default for some years.
New features ------------
* ssh(1), sshd(8): add a RequiredRSASize directive to set a minimum RSA key length. Keys below this length will be ignored for user authentication and for host authentication in sshd(8).
ssh(1) will terminate a connection if the server offers an RSA key that falls below this limit, as the SSH protocol does not include the ability to retry a failed key exchange.
* sftp-server(8): add a "users-groups-by-id@openssh.com" extension request that allows the client to obtain user/group names that correspond to a set of uids/gids.
* sftp(1): use "users-groups-by-id@openssh.com" sftp-server extension (when available) to fill in user/group names for directory listings.
* sftp-server(8): support the "home-directory" extension request defined in draft-ietf-secsh-filexfer-extensions-00. This overlaps a bit with the existing "expand-path@openssh.com", but some other clients support it.
* ssh-keygen(1), sshd(8): allow certificate validity intervals, sshsig verification times and authorized_keys expiry-time options to accept dates in the UTC time zone in addition to the default of interpreting them in the system time zone. YYYYMMDD and YYMMDDHHMM[SS] dates/times will be interpreted as UTC if suffixed with a 'Z' character.
Also allow certificate validity intervals to be specified in raw seconds-since-epoch as hex value, e.g. -V 0x1234:0x4567890. This is intended for use by regress tests and other tools that call ssh-keygen as part of a CA workflow. bz3468
* sftp(1): allow arguments to the sftp -D option, e.g. sftp -D "/usr/libexec/sftp-server -el debug3"
* ssh-keygen(1): allow the existing -U (use agent) flag to work with "-Y sign" operations, where it will be interpreted to require that the private keys is hosted in an agent; bz3429
Bugfixes --------
* ssh-keygen(1): implement the "verify-required" certificate option. This was already documented when support for user-verified FIDO keys was added, but the ssh-keygen(1) code was missing.
* ssh-agent(1): hook up the restrict_websafe command-line flag; previously the flag was accepted but never actually used.
* sftp(1): improve filename tab completions: never try to complete names to non-existent commands, and better match the completion type (local or remote filename) against the argument position being completed.
* ssh-keygen(1), ssh(1), ssh-agent(1): several fixes to FIDO key handling, especially relating to keys that request user-verification. These should reduce the number of unnecessary PIN prompts for keys that support intrinsic user verification. GHPR302, GHPR329
* ssh-keygen(1): when enrolling a FIDO resident key, check if a credential with matching application and user ID strings already exists and, if so, prompt the user for confirmation before overwriting the credential. GHPR329
* sshd(8): improve logging of errors when opening authorized_keys files. bz2042
* ssh(1): avoid multiplexing operations that could cause SIGPIPE from causing the client to exit early. bz3454
* ssh_config(5), sshd_config(5): clarify that the RekeyLimit directive applies to both transmitted and received data. GHPR328
* ssh-keygen(1): avoid double fclose() in error path.
* sshd(8): log an error if pipe() fails while accepting a connection. bz3447
* ssh(1), ssh-keygen(1): fix possible NULL deref when built without FIDO support. bz3443
* ssh-keyscan(1): add missing *-sk types to ssh-keyscan manpage. GHPR294.
* sshd(8): ensure that authentication passwords are cleared from memory in error paths. GHPR286
* ssh(1), ssh-agent(1): avoid possibility of notifier code executing kill(-1). GHPR286
* ssh_config(5): note that the ProxyJump directive also accepts the same tokens as ProxyCommand. GHPR305.
* scp(1): do not not ftruncate(3) files early when in sftp mode. The previous behaviour of unconditionally truncating the destination file would cause "scp ~/foo localhost:foo" and the reverse "scp localhost:foo ~/foo" to delete all the contents of their destination. bz3431
* ssh-keygen(1): improve error message when 'ssh-keygen -Y sign' is unable to load a private key; bz3429
* sftp(1), scp(1): when performing operations that glob(3) a remote path, ensure that the implicit working directory used to construct that path escapes glob(3) characters. This prevents glob characters from being processed in places they shouldn't, e.g. "cd /tmp/a*/", "get *.txt" should have the get operation treat the path "/tmp/a*" literally and not attempt to expand it.
* ssh(1), sshd(8): be stricter in which characters will be accepted in specifying a mask length; allow only 0-9. GHPR278
* ssh-keygen(1): avoid printing hash algorithm twice when dumping a KRL
* ssh(1), sshd(8): continue running local I/O for open channels during SSH transport rekeying. This should make ~-escapes work in the client (e.g. to exit) if the connection happened to have stalled during a rekey event.
* ssh(1), sshd(8): avoid potential poll() spin during rekeying
* Further hardening for sshbuf internals: disallow "reparenting" a hierarchical sshbuf and zero the entire buffer if reallocation fails. GHPR287
Portability -----------
* ssh(1), ssh-keygen(1), sshd(8): automatically enable the built-in FIDO security key support if libfido2 is found and usable, unless --without-security-key-builtin was requested.
* ssh(1), ssh-keygen(1), sshd(8): many fixes to make the WinHello FIDO device usable on Cygwin. The windows://hello FIDO device will be automatically used by default on this platform unless requested otherwise, or when probing resident FIDO credentials (an operation not currently supported by WinHello).
* Portable OpenSSH: remove workarounds for obsolete and unsupported versions of OpenSSL libcrypto. In particular, this release removes fallback support for OpenSSL that lacks AES-CTR or AES-GCM.
Those AES cipher modes were added to OpenSSL prior to the minimum version currently supported by OpenSSH, so this is not expected to impact any currently supported configurations.
* sshd(8): fix SANDBOX_SECCOMP_FILTER_DEBUG on current Linux/glibc
* All: resync and clean up internal CSPRNG code.
* scp(1), sftp(1), sftp-server(8): avoid linking these programs with unnecessary libraries. They are no longer linked against libz and libcrypto. This may be of benefit to space constrained systems using any of those components in isolation.
* sshd(8): add AUDIT_ARCH_PPC to supported seccomp sandbox architectures.
* configure: remove special casing of crypt(). configure will no longer search for crypt() in libcrypto, as it was removed from there years ago. configure will now only search libc and libcrypt.
* configure: refuse to use OpenSSL 3.0.4 due to potential RCE in its RSA implementation (CVE-2022-2274) on x86_64.
* All: request 1.1x API compatibility for OpenSSL >=3.x; GHPR#322
* ssh(1), ssh-keygen(1), sshd(8): fix a number of missing includes required by the XMSS code on some platforms.
* sshd(8): cache timezone data in capsicum sandbox.
Checksums: ==========
- SHA1 (openssh-9.1.tar.gz) = 3ae2d6a3a695d92778c4c4567dcd6ad481092f6c - SHA256 (openssh-9.1.tar.gz) = QKfVArlcItV+e8V1Th85TL5//5d/AvOUhYOeHMDEGuE=
- SHA1 (openssh-9.1p1.tar.gz) = 15545440268967511d3194ebf20bcd0c7ff3fcc9 - SHA256 (openssh-9.1p1.tar.gz) = GfhQCcfj4jeH8CNvuxV4OSq01L+fjsX+a8HNfov90og=
Please note that the SHA256 signatures are base64 encoded and not hexadecimal (which is the default for most checksum tools). The PGP key used to sign the releases is available from the mirror sites: https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/RELEASE_KEY.asc
Reporting Bugs: ===============
- Please read https://www.openssh.com/report.html Security bugs should be reported directly to openssh@openssh.com

UPDATE

A couple of reference pages:

Other Recent Tux Machines' Posts

Firefox Nightly is getting easier to install for Linux Fedora and openSUSE users
Linux users can now test the cutting edge of Firefox development much more easily
Turning GNU/Linux Into Windows With Adobe Proprietary Software
via WINE
We've Greatly Benefited From the Growth of GNU/Linux [original]
We recently noticed that many of our pages, the new pages, receive well over 2,000 requests
GNU/Linux Measured at Almost 10% This Year in Nauru, a Pacific Island Settled by Micronesians [original]
Windows is said to have sunk to ~7% "market share"
Linux 6.19 Delays
Linux 6.19 is delayed
Opera GX Gaming Browser is Coming to GNU/Linux and More Takes
Opera and more
 
Slimbook Launches New Slimbook ONE Mini Linux PC, Slimbook Executive Laptop
Linux hardware vendor Slimbook announced today that it has refreshed some of its Linux-powered computers, including the Slimbook ONE mini PC and Slimbook Executive laptop, with more powerful components.
Free, Libre, and Open Source Software Leftovers
Free, Libre, and Open Source Software picks for today
today's leftovers
mostly GNU/Linux picks
Fedora and Red Hat Leftovers (Mostly Buzzwords)
Red Hat for "ai"
Standards/Consortia: Standards Development, XML, Markup, and More
Standards-related leftovers
Programming Leftovers
Development related leftovers
Terminal-Based Applications and GNU/Linux HowTos/Technical Posts
today's howtos
Windows Boosters Try GNU/Linux for Games, Rootkit ('Anti-Cheat') as Barrier, and "Linux Benchmarking Transformed!"
gaming news collated
Android Leftovers
You can publish apps from Manus without Xcode or Android Studio
You came through for free software!
You really came through this winter for free software
What a Linux root user can do - and 8 ways you should absolutely never use it
When I first started using Linux
I don't install apps on my Linux OS anymore, and I love it
I deepened my knowledge of Linux distros by giving an immutable one a try
KDE Plasma could get a VR desktop mode on Linux
A developer has submitted draft code to the KDE team that could turn the Plasma desktop environment into a fully functional 3D VR interface
This is by far the best Linux email client I've used - and I've tested them all
I've used a slew of Linux email clients over the years
I cracked Hyprland at last - thanks to this Arch-based Linux distro
Hyprland is getting tons of coverage within the Linux community
GNU/Linux and Fake Advocacy
today's leftovers
Linux Phone Apps, Weekly GNU-like Mobile Linux Update, and Arduino UNO Q
Open Hardware and more
LibreOffice 26.2 RC2 is available for testing
LibreOffice 26.2 will be released as final at the beginning of February, 2026
Free and Open Source Software, howtos and Installations
This is free and open source software
Games: Obey the Insect God, KLETKA, Immortal Boy, Pandemic Express
gaming picks
Today in Techrights
Some of the latest articles
Security Leftovers
Security patches and breaches for the most part
GNU/Linux and Operating Systems Leftovers
today's leftovers
OpenSUSE Conferences and OpenSUSE on Tackling Y2K38 Epoch
some SUSE picks
"The Breakaway Moment" and "Gaming GPU Benchmarks on Bazzite"
Gaming on Linux and more
Free, Libre, and Open Source Software Leftovers
projects, events, and more
Web Browsers Commentary and Mozilla Firefox Development
Web related news
Devices, Modding, and GNU/Linux on Boards
hardware picks
Red Hat, Fedora, and IBM's Slopfest
Red Hat is slop
PostgreSQL Development in 2025 and PostgreSQL-Related New Releases
PostgreSQL news
Programming Leftovers
Development related picks
Proprietary Windows Bricks Itself, Adds Slop
what a dumpster fire
Applications for GNU/Linux and KDE
software and "aps"
today's howtos
lots for today
Wine 11 Officially Released with NTSync Support, Vulkan H.264 Decoding, and More
Wine 11 has been released today as the latest stable version of this free and open-source compatibility layer for running apps and games developed for Windows systems on Unix-like operating systems.
MX Linux 25.1 Is Out with Dual-Init Support, Debian 13.3 Base, and Linux 6.18 LTS
The MX Linux team announced today the general availability for download of MX Linux 25.1 as the first update in the MX Linux 25 “Infinity” series of this Debian-based distribution featuring Xfce, KDE Plasma, and Fluxbox flavors.
Games: Dandelion Void, KDE Plasma VR, Tile Tactics, and More
7 new stories from GamingOnLinux
This Week in Plasma: dark mode switch and global push-to-talk
This week we closed the door on features for Plasma 6.6
Android Leftovers
Google says it's making Android sideloading "high-friction" to better warn users about potential risks
Nations Grasp the Importance of Software Freedom [original]
For a more meaningful technological transition we ought to emphasise Software Freedom, not focus on brands such as "Linux"
Free and Open Source Software
This is free and open source software
The Harder They Try to Squash GNU/Linux Advocacy, the More Exposure It'll Get [original]
They will always lose because they are on the wrong side of history
GNOME: Digital Wellbeing Contract: Conclusion
That post covered the initial screen time limits feature, which was implemented in the Parental Controls app, Settings and GNOME Shell
Huge Gains for GNU/Linux Thus Far in 2026 [original]
GNU/Linux gained about 0.5% in "share" in the past month alone
It’s Official: Richard Stallman Will Speak at Georgia Tech on January 23 - FOSS Force
This wasn’t the first we’d heard of the event. The first report we saw on this was on Techrights on December 21
Today in Techrights
Some of the latest articles
Instructionals/Technical Articles on Proxmox and Cron Jobs
some more howtos of sorts
Raspberry Pi as a Desktop
2 recent articles
Valnet on Terminal Commands or Programs in GNU/Linux
some more recent articles
Valnet Articles on Switching From Windows to GNU/Linux
4 recent articles
Judy Sanhz on Preparing to Move to GNU/Linux
a pair of new articles from Judy Sanhz
EndeavourOS Ganymede Neo Is Out with Linux Kernel 6.18 LTS and KDE Plasma 6.5.4
The EndeavourOS team announced today the general availability for download of EndeavourOS Ganymede Neo as the latest stable snapshot of this Arch Linux-based distro featuring the KDE Plasma desktop environment.
Linux: The Real Operating System
By now, I’ve had years of experience on different operating systems
Linux distros are now competing on design, and I love it
Linux distributions are breaking the mold and setting new standards for beauty and functionality
Want to try Linux? Just install Ubuntu or Fedora
There are many desktop Linux distributions
I paid $48 for this Linux distro to save 48 hours of work—and it was worth it
Are you confused about why anyone would pay for Linux when it’s supposed to be free
I boosted my old laptop’s life by switching to this power-efficient Linux distro
Revive an old laptop with Linux
Gedit 49.0 Released, This Week in GNOME, and GNOME Foundation Update (by IBM)
GNOME news
Free and Open Source Software, howtos and Installations
This is free and open source software
Stable kernels: Linux 5.15.198, and Linux 5.10.248
I'm announcing the release of the 5.15.198 kernel
Mozilla Now Offers an Official Firefox RPM Package for RPM-Based Linux Distros
Mozilla announces a dedicated RPM package for users of RPM-based distributions who want to install Firefox as a native RPM package.
GNU/Linux Leftovers
mostly GNU/Linux news
Free, Libre, and Open Source Software and Programming Leftovers
FOSS and more
Audiocasts/Shows: LINUX Unplugged, mintCast, and This Week in Linux
3 new episodes
FreeBSD on Old Computers and "Modifying FreeBSD ISO for Dell Servers"
BSD leftovers
Dock for GNOME, Exploitation in GNOME, and Rust-based COSMIC Disappoints
Some GNOME picks
Open Hardware/Modding: Raspberry Pi, ESP32, and More
GNU/Linux hardware and more
today's howtos
Instructionals/Technical picks
Amarok 3.3.2 Brings Improvements to User Interface, Audio Backend, and More
Amarok 3.3.2 has been released today as the second minor update to the latest Amarok 3.3 “Far Above the Clouds” series of this open-source music player application designed for the KDE Plasma desktop environment.
Free Software Definition (FSD) Turns 40 Next Month [original]
the FSD is a more formal document and one which like the GNU Manifesto (turned 40 last year) forms the basis of the movement and the system
Hard to Hide Inconvenient Facts in the Free Software Community [original]
There are many attempts to silence Free software activists and journalists
Not All 'Linux' Sites Are Real [original]
Of course we don't link to such 'Linux' sites
Before Analognowhere There Was Dilbert [original]
Analognowhere isn't always humorous; it deals with a difficult topic
Richard Stallman Talk at Georgia Tech This Week [original]
The message of RMS is more important than ever before
Android Leftovers
You can use an old Android phone as a media server
Your modern Linux desktop is too busy: Why I went back to basics with MATE
Tired of desktop environments (DEs) that keep “improving” things that already worked perfectly
Mageia Harkens Back to the Glory Days of Mandrake Linux
Mageia is a modern distribution with all the modern bells and whistles
New Releases, Gentoo, and GNU/Linux on Mobile
today's leftovers
TUXEDO InfinityBook Max 16 Gen10 Linux Laptop Unveiled with New OLED Display
Linux hardware vendor TUXEDO Computers unveiled today the 10th generation (Gen10) of their TUXEDO InfinityBook Max 16 Linux-powered laptop with newer NVIDIA GPUs, newer Intel CPU, and a new display.
GNOME 50 Alpha Is Now Available for Public Testing as a Wayland-Only Release
GNOME 50 Alpha desktop environment is now available for public testing with X11 session removal, initial support for session save/restore, and many other enhancements.
Best Free and Open Source Software
This is free and open source software
Review: The new Chimera Linux installer
A little over a year ago I wrote a review of Chimera Linux
statCounter Sees GNU/Linux Rising to 6% in North Macedonia [original]
That's a good start for 2026
Mainstream Media Obstructs Adoption of GNU/Linux [original]
Even if 5% of more of the world's computer users adopt Free software (it's a lot higher if one counts people who use Free software on top of MacOS and Windows), the media won't care
Making This Site Faster [original]
his site is simple enough and does not contain JavaScript
Improving the Sites Some More [original]
We wish to make the sites more pleasant to use
'Make Tech Easier' Says GNU/Linux is Great for Desktop/Laptop (But Not for Everybody), Fresh Editor Covered Also
2 recent articles
Today in Techrights
Some of the latest articles