Bonum Certa Men Certa

Links 27/07/2023: Zorin OS 16.3 Released and Beta of Krita 5.2.0



  • GNU/Linux

    • HackadaySelectric Typewriter Goes From Trash Can To Linux Terminal | Hackaday

      If there’s only lesson to be learned from [alnwlsn]’s conversion of an IBM Selectric typewriter into a serial terminal for Linux, it’s that we’ve been hanging around the wrong garbage cans. Because that’s where he found the donor machine for this project, and it wasn’t even the first one he’s come across in the trash. The best we’ve ever done is a nasty old microwave.

      For being a dumpster find, the Selectric II was actually in pretty decent shape. The first couple of minutes of the video after the break show not only the minimal repairs needed to get the typewriter back on its feet, but also a whirlwind tour of the remarkably complex mechanisms that turn keypresses into characters on the page. As it turns out, knowing how the mechanical linkages work is the secret behind converting the Selectric into a teletype, entirely within the original enclosure and with as few modifications to the existing mechanism as possible.

    • Kernel Space

      • LWNA Q&A about the realtime patches

        In a session at the 2023 Real Time Linux Summit, Thomas Gleixner answered questions about the realtime feature of the kernel, its status, and the Real-Time Linux project's plans for the future. The talk was billed as a "Q&A about PREEMPT_RT" with a caveat: "anything except printk() and documentation". As might be guessed, the first two questions were on just those topics, but there were plenty of other questions (and answers) too. The summit was held in conjunction with the inaugural Embedded Open Source Summit in Prague, Czechia at the end of June.

      • LWNDebian looks forward to 2038

        The time_t rollover is still over 14 years away, so solving it might not appear to be an urgent problem. The fact that it does not affect most 64-bit systems may also encourage complacency. But there are affected 32-bit systems on the market now, and some of them are likely to still be operating in 2038; that is especially true of embedded systems, which might prove harder to fix as the date approaches. It would be far better if these systems were prepared for 2038 at deployment time; that means solving the problem as quickly as possible.

        Work has been underway in the kernel for some years, and it is mostly free of year-2038 problems at this point. The GNU C Library (glibc) has also seen a considerable amount of work to allow it to handle both 32-bit and 64-bit time_t values, depending on how a program has been compiled. So the core of a Linux system is ready, but there is a lot more than that to the problem.

      • LWNThe proper time to split struct page

        The page structure sits at the core of the kernel's memory-management subsystem; one such structure exists for every page of installed RAM. This structure is increasingly seen as a problem, though, and phasing it out is one of the many side projects associated with the folio conversion. One step in that direction is currently meeting some pushback from memory-management developers, though, who think that some of these changes are coming too soon.

        The purpose of struct page is to allow the kernel to keep track of the status of each page — how it is being used, its position in a least-recently-used list, how many references to it exist, and more. The information needed varies considerably depending on how a given page is being used; a page of user-space anonymous memory is managed differently from, say, memory used for a kernel-space DMA buffer. Since page structures must be kept as small as possible — there are millions of them in a modern system, so every byte hurts — data must be stored as efficiently as possible. As a result, struct page is declared as a maze of nested unions, allowing the data fields for each usage type to be overlaid.

      • LWNStabilizing per-VMA locking

        The kernel-development process routinely absorbs large changes to fundamental subsystems and still produces stable releases every nine or ten weeks. On occasion, though, the development community's luck runs out. The per-VMA locking work that went into the 6.4 release is a case in point; it looked like a well-tested change that improved page-fault scalability. There turned out to be a few demons hiding in that code, though, that made life difficult for early adopters of the 6.4 kernel.

        The mmap_lock controls access to a process's address space. If a process has a lot of things going on at the same time — a large number of threads, for example — contention for the mmap_lock can become a serious performance problem. Handling page faults, which can involve changing page-table entries or expanding a virtual memory area (VMA), has traditionally required the mmap_lock, meaning that many threads generating page faults concurrently can slow a process down.

        Developers have been working for years to address this problem, often pursuing one form or another of speculative page-fault handling, where the work is done without the protection of the lock. If contention occurred during the handling of a fault, the kernel would drop the work it had done before making it visible and start over. This work never got to the point of being merged, though. Eventually, Suren Baghdasaryan's per-VMA locking work was merged instead. Since a page fault happens within a specific VMA, handling it should really only require serialized access to that one VMA rather than to the entire address space. Per-VMA locking is, thus, a finer-grained version of mmap_lock that allows for more parallelism in the execution of specific tasks.

      • LWNExtensible scheduler class rejected

        The extensible scheduler class enables the creation of CPU schedulers in BPF. After the fourth version of this series was greeted with relative silence, Tejun Heo asked about the status of this work...

      • LWNLinux 6.4.7
        All users of the 6.4 kernel series must upgrade.
        
        

        The updated 6.4.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-6.4.y and can be browsed at the normal kernel.org git web browser: https://git.kernel.org/?p=linux/kernel/git/stable/linux-s...

        thanks,

        greg k-h
      • LWNLinux 6.1.42
      • LWNLinux 5.15.123
      • LWNLinux 5.10.188
      • LWNLinux 5.4.251
    • Graphics Stack

      • It's FOSSWhat is Compiz in Linux

        Today, we hear of people "distro hopping." Some of us may be guilty of it. It's hard to resist, trying out that new Linux distro with the new features. Even I am not immune, and I have a couple of laptops that I routinely try a new OS (or older if I'm feeling nostalgic) on.

        There was a time though, when distro hopping wasn't common as there were fewer distros in the beginning days of Linux. What many of us early users did instead was to play around with different window managers.

        Compiz was one of those window managers, released in 2006. It is one of the oldest compositing window managers for the X Window System and it was quite advanced for its day. Window managers aren't as popular as they once were, but Compiz is still maintained, still has remarkable performance and a large number of features.

    • Instructionals/Technical

      • LinuxTechiHow to Install GitLab on Ubuntu 22.04 | 20.04
      • TecMintHow to Install Odoo Community Edition in Ubuntu

        Odoo is a full-featured, extensible open-source ERP (Enterprise€ Resource€ Planning) software built using Python and PostgreSQL database for data storage.

        It is a suite of open-source business applications, that consists of multiple apps under various categories such as website, sales, finances, operations, manufacturing, human resource (HR), communication, marketing, and customization tools.

      • TecMint5 Ways to Empty or Delete a Large File Content in Linux

        Occasionally, while dealing with files in a Linux terminal, you may want to clear the content of a file without necessarily opening it using any Linux command line editors. How can this be achieved?

        In this article, we will go through several different ways of emptying file content with the help of some useful commands.

      • TecMintHow to Resolve “Temporary failure in name resolution” Issue

        Sometimes when you try to ping a website, update a system or perform any task that requires an active internet connection, you may get the error message ‘temporary failure in name resolution’ on your terminal.

        For example, when you try to ping a website, you might bump into the error shown...

      • TecMint12 Tcpdump Commands – A Network Sniffer Tool

        In our previous article, we have seen 20 Netstat Commands (netstat now replaced by ss command) to monitor or manage a Linux network.

        This is another ongoing series of packet sniffer tools called tcpdump. Here, we are going to show you how to install tcpdump and then we discuss and cover some useful commands with their practical examples.

      • TecMintHow to Connect Odoo with ONLYOFFICE Docs on Ubuntu

        Odoo is an open-source business platform that comes with a vast set of productivity apps allowing you to deal with what an average company needs — sales, CRM, electronic commerce, project management, human resources, accounting, inventory, marketing, etc.

        The built-in Odoo marketplace makes it possible to create a highly customizable platform that can be easily adapted to any business by installing the required apps. The choice is so extensive that exploring all the available integration options might take a lot of time.

      • MediumYour First Linux Box!

        If you work in IT, you may have been lucky enough to take home some hardware your company was going to donate, or recycle. Whether its a few small form factor workstations or a giant enterprise grade server, they can be a great tool for learning on your own. A similar situation is what started my homelab. My previous boss was going through his garage, and was getting rid of boxes and boxes of old IT equipment. He asked if I wanted to pick through it all before he donated it. I did exactly that, and came out with a bunch of cool stuff. One of those items was an old Lenovo workstation running Windows 7. As you know, Windows 7 is pretty old. Released in 2009, and support ended in 2020. Not something we want on our network , even if its going to be used for internal use. That leaves us 2 options:

      • Make Use OfHow to List Installed Packages on Linux

        Before installing a new package, you need to check if it’s already installed on your system. Additionally, if you are shifting to a new system, having a list of all the installed packages can save you significant time and effort. It can also facilitate you in identifying unwanted packages that you want to remove to free up some space.

        Here's how to list all installed packages on various Linux distributions including Ubuntu, Debian, CentOS, Arch Linux, and openSUSE.

      • ZDNet What is a Linux bash script and how do you create one?

        Bash scripts have been around since the humble beginnings of Linux. But what are they and how do you create your first one? Find the answers to those questions here.

      • Make Use OfHow to Patch Linux Server PwnKit Vulnerability CVE-2021-4034

        The security of Linux servers is of paramount importance in today's digital environment where cyber threats are constantly evolving. One such critical vulnerability requiring immediate action is the PwnKit vulnerability, identified as CVE-2021-4034.

        Let's examine the nature of this vulnerability, its potential impact on Linux servers, and most importantly, ways to effectively patch and secure your Linux server against this threat.

      • Make Use OfHow to Fix the "hash sum mismatch" Error When Updating Kali Linux

        It’s important to keep your system packages up-to-date because you can quickly upgrade your PC’s software and enjoy all the latest features and fixes. If you’ve encountered an error like “hash sum mismatch” on Linux, this routine task can quickly become frustrating.

    • Games

    • Desktop Environments/WMs

      • K Desktop Environment/KDE SC/Qt

        • LinuxiacPlasma 6 Development Update: Unveiling Features Removals
          The KDE development team is gearing up for an exciting milestone as they prepare to unveil the highly anticipated Plasma 6 desktop environment. As the successor to the widely acclaimed Plasma 5, the latest iteration promises to bring a host of new enhancements and optimizations to the KDE ecosystem.

          However, with progress often comes change, and to refine the user experience and streamline performance, KDE developers have announced their decision to remove certain features from Plasma 6.

        • Nate GrahamWhat we plan to remove in Plasma 6

          Icons on the desktop!

          The minimize button!

          Visible Panels and docks!

          Just kidding, don’t have a heart attack. Well actually there are some things… just not those! The full list can be found at https://community.kde.org/Plasma/Plasma_6#Removals, and it’s public; we’re not hiding anything! Today I wanted today provide a bit of context and explain the why, since it may not be obvious how it makes sense to remove things. So let’s go through the list...

        • KritaFirst Beta for Krita 5.2.0 Released

          Krita 5.2.0 is a major new release, and the first of the Krita 5.2 series of releases. Especially internally, there have been huge changes and improvements. While there are a lot of important user-visible changes that will make artists’ workflow smoother, most work has been inside Krita, preparing Krita for the future.

          The release notes will give you all the details, but here are some highlights...

      • GNOME Desktop/GTK

        • DebugPointDiscover What's Hot in GNOME 45: Feature Highlights

          GNOME is a free and open-source desktop environment for Linux and Unix-like operating systems. It is one of the most popular desktop environments in the world and is used by millions of people via mainstream Linux distributions such as Ubuntu and Fedora alike.

          The GNOME 45 release is expected to be a major update with many new features and improvements.

          Let's take a look at the new improvements.

        • GNOMEGNOME: Sysprof 45

          Unfortunately I couldn’t be at GUADEC this year, but that wont stop me from demoing new things!

          I’ve been doing a lot of work on Sysprof now that we have semi-reliable frame unwinding on Fedora, Silverblue and GNOME OS. When I have tolling that works on the OS it makes it a lot easier to build profilers and make them useful.

          Additionally, we’re at a good point in GTK 4 where you can do really powerful things if you design your data models correctly. So this cycle I’ve spent time redesigning how we record and process our captured data.

  • Distributions and Operating Systems

    • New Releases

      • IPFire Official BlogIPFire 2.27 - Core Update 177 is available for testing

        The next update for IPFire is available for testing! It contains more hardening features for modern processors and a large number of security fixes in third-party packages.

        This update comes with extended hardening for the kernel by using Indirect Branch Tracking wherever possible. This will prevent hackers to hijack functions calls and jump into injected code. This feature is currently only supported on Intel processors.

        In the near future, we will extend this feature to the user-space and more processor types.

      • 9to5LinuxZorin OS 16.3 Released with New Upgrade Utility, Zorin Connect Improvements

        Zorin OS 16.3 is here nine months after Zorin OS 16.2 and includes all the latest updates from the upstream Ubuntu repositories to provide those who want to deploy the latest Zorin OS 16 series on new computers with an updated live/installation media with top-notch hardware support and the most recent security patches.

        Apart from shipping with all the latest updates from the Ubuntu 22.04 LTS repositories, as well as an updated software selection that includes the latest and greatest LibreOffice 7.5 open-source office suite series, the Zorin OS 16.3 release comes with a cool new feature out of the box, Zorin OS Upgrader.

    • Fedora Family / IBM

      • University of TorontoThere's more than one reason that people used (or use) CentOS

        The news of the time interval is that Red Hat has stopped making Red Hat Enterprise Linux source code generally available, although just as with the switch to 'CentOS Stream' from CentOS their article doesn't put it that way. This created difficulties for at least two CentOS replacement distributions, forcing AlmaLinux to change what they are. I don't have much to say on this specific topic, but it has sparked a series of exchanges about, for example, the history of RHEL rebuilds (via). As it happens, I have some views on why people would want to use a free 'clone' (rebuild) of RHEL, as CentOS was before it became CentOS Stream, partly based on personal experience.

        Here are some major reasons people could want or need CentOS, at least back in the era of CentOS, before CentOS Stream became your only option from RHEL 8 onward: [...]

      • SlashdotRHEL Response Discussed by SFC Conference's Panel - Including a New Enterprise Linux Standard

        "Red Hat themselves did not reply to our repeated requests to join us on this panel... SUSE was also invited but let us know they were unable to send someone on short notice to Portland for the panel."

        One interesting audience question for the panel came from Karsten Wade, a one-time Red Hat senior community architect who left Red Hat in April after 21 years, but said he was "responsible for bringing the CentOS team onboard to Red Hat." Wade argued that CentOS "was always doing a clean rebuild from source RPMS of their own..." So "isn't all of this thunder doing Red Hat's job for them, of trying to get everyone to say, 'This thing is not the equivalent to RHEL.'"

        In response Jeremy Alison made a good point. "None of us here are the arbiters of whether it's good enough of a rebuild of Red Hat Linux. The customers are the arbiters." But this led to an audience member asking a very forward-looking question: what are the chances the community could adopt a new (and open) enterprise Linux standard that distributions could follow. AlmaLinux's Vasquez replied, "Chances are real high... I think everyone sees that as the obvious answer. I think that's the obvious next step. I'll leave it at that." And Oracle's Wright added "to the extent that the market asks us to standardize? We're all responsive."

    • Debian Family

      • Sparky GNU/LinuxSparky 7.0.1

        There is an update of Sparky ISO images of the stable line 7.0.1 out there.

        This is a minor update, it mainly fixed an issue of the live config, which did not let you launch password reqiured application without password in live session, such as: Calamares, APTus, GParted, Gufw, etc.

        Now, the apps don’t need a password to be launched in live session (excluding MinimalGUI i686).

        As usually, all packages have been upgraded from Debian and Sparky stable repos, as of June 26, 2023, so all updates of Debian 12.1 are included.

        No reinstallation is required if you have Sparky 7 installed, simply keep Sparky up to date. The new iso images only fix the live session issue.

    • Devices/Embedded

      • Beta NewsStarTech.com launches 4-Slot PCIe Expansion Chassis for Windows, Linux, and macOS [Ed: Classic marketing webspam from Brian Fagioli, pretending it's something about "Linux". It's agnostic. It's SPAM.]
      • Linux GizmosSolidRun Unveils 1st Fanless AMD Phoenix Zen 4 PC – Bedrock R7000 Edge AI

        SolidRun revealed today two fanless PCs built around the 8-core AMD Ryzen 7040 Series CPUs along with up to three Hailo-8 AI accelerators to provide 78 TOPS AI performance. The Bedrock R7000 Edge AI has been designed to operate in diverse commercial and industrial applications including robotics, agriculture, transportation, etc. € 

      • HackadayRunning A Modern Graphics Card In A 33 MHz PCI Slot

        If you ever looked at a PCI to PCIe x16 adapter and wondered what’d happen if you were to stick a modern PCIe GPU in it, the answer apparently is ‘it works’ according to an attempt by [Circuit Rewind]. As long as you accept needing to supply external power with even a low-end GT 1030 card – as the PCI slot cannot provide enough power – and being limited to a single PCIe lane. This latter point isn’t so much of an issue as a single PCIe lane offers more bandwidth than the (shared) PCI bus anyway.

    • Open Hardware/Modding

      • STHDebian Adds RISC-V as an Official Architecture

        A really great one came out on the Debian mailing list this week. RISC-V is becoming a first-class citizen on Debian. RISC-V has now been accepted as an official architecture. This is huge news for the RISC-V community.

      • ArduinoA snore-no-more device designed to help those with sleep apnea

        Although many boards have microphones and can run sound recognition machine learning models, the Nicla Voice contains a Syntiant NDP120 Neural Decision Processor that is specifically designed to accelerate deep learning workloads while also decreasing the amount of power needed to do so. Apart from the board, Kumar added an Adafruit DRV2605L haptic motor driver and haptic motor as a way to wake up the user without disturbing others nearby.

      • Frank DelporteReading the temperature, humidity, and pressure from a BME280 Sensor with Java, Pi4J, I2C, SPI, and JBang

        To make it as easy as possible to get started with Java on the Raspberry Pi to interact with electronic components, I started a new section on the Pi4J website with JBang examples.

        In this tutorial, I want to show you how you can read the temperature, humidity, and pressure from a BME280 Sensor.

      • Gilles ChehadeBuilding my own guitar, part 4

        Came back from vacation, started working on the neck but realised I really needed more tools. Luckily, I could get some that weren’t too expensive.

      • HackadayA Nifty 3D Printed RC Car

        Once upon a time, a remote controlled (RC) car was something you’d buy at Radio Shack or your local hobby store. These days, you can print your own, complete with suspension, right at home, as this project from [Logan57] demonstrates.

    • Mobile Systems/Mobile Applications

  • Free, Libre, and Open Source Software

    • Web Browsers/Web Servers

      • [Old] マリウスGemini is Solutionism at its Worst

        While I don’t care too much about ideas and projects that I believe to be dead ends or maybe even doomed to fail eventually, a recent interaction on Superhighway84 got me to write down a few thoughts on why I believe Project Gemini is a really bad idea.

      • [Old] The Small Web Browser, an inclusive proposal

        Therefore, in an attempt to make an inclusive solution (rather than exclusive, as Marius thought of Gemini), I suggest a new browser, namely the Small Web Browser, with the following design requirements: [...]

      • Daniel Stenbergcurl 8.2.1

        Welcome. Due to some annoying regressions in the previous release we think we owned it to everyone to do a quick patch follow-up.

      • APNICHSTS preload adoption and challenges

        HTTP Strict Transport Security (HSTS) is a way to signal to a web client that valid HTTPS certificates must be used when connecting to a domain. There are two main benefits to HSTS.

        First, it prevents a user from connecting over an unencrypted HTTP connection. Unencrypted HTTP leaks data to the network and is vulnerable to manipulation in man-in-the-middle attacks.

        Second, it prevents a user from connecting if the server presents an untrusted TLS certificate. Users aren’t great at deciding if a warning message about an untrusted TLS certificate is a security concern or just a misconfiguration. They don’t have the knowledge or tools to decide, and they may inadvertently allow an attack to proceed by clicking through the warning.

      • APNICUpdate QUIC timers once per RTT

        In a previous post, I observed that the classic way to compute round-trip time (RTT) statistics and retransmission timers does not work well. When acknowledgements are too frequent, the correlation between successive RTT measurements causes the smoothed RTT estimate to track closely the last values, and the RTT variations to be widely underestimated.

        This imprecision impacts both the effectiveness of loss recovery and the implementation of delay-based congestion algorithms like BBR. I think this can be fixed by updating the variables just ‘once per RTT’. In this post, I first describe the once per RTT update algorithm, then report on promising measurements using the simulations in the Picoquic test suite.

      • Mozilla

        • TorNew Alpha Release: Tor Browser 13.0a1 (Windows, macOS, Linux)

          Tor Browser 13.0a1 is now available from the Tor Browser download page and also from our distribution directory.

          This release updates Firefox to 115.2.0esr, including bug fixes, stability improvements and important security updates. This is a Desktop platform only release (Windows, macOS, and Linux), but Android should be available in the coming weeks.

    • Education

      • [Repeat] KlaraOur 2023 Recommended Summer Reads 2023: FreeBSD and Linux

        We previously discussed in our webinar The Case for OS Diversity and Independence the great deal of value, security, and flexibility to be gained from using a diversity of operating systems. To help make implementation such diversity possible, Klara has produced a set of articles that discuss the differences between Linux and FreeBSD across various subsystems. These articles aim to act as a sort of Rosetta Stone, helping experienced administrators and developers turn their skills with one of the operating systems into knowledge of the other. With summer upon us, now is a great time to read through this series and learn how you can take maximum advantage of OS diversity.

      • Jakub SteinerGUADEC

        GUADEC 2023 is underway in Riga. It’s great to see people face to face after a long time. Kicked off the first day with an ADHD trip of a talk. Rather than putting links in my slides, where nobody has the chance of actually follow, I’ve assembled them here. Enjoy!

    • Openness/Sharing/Collaboration

      • Open Access/Content

        • NetzpolitikShutdowns don’t stop during the weekends

          The Internet does not forget? The opposite is the case. Huge mountains of data are lost on the internet every day. That’s why the Archive Team scours the vastness of the WWW and rescues data from extinction – around the clock and on a voluntary basis.

    • Programming/Development

      • RlangReproducible data science with Nix

        This is the first of a (hopefully) series of posts about Nix. Disclaimer: I’m a
        super beginner with Nix. So this series of blog posts is more akin to notes that
        I’m taking while learning than a super detailed tutorial. So if you’re a Nix

      • Alex EwerlöfFallback

        Fallback is a risk mitigation strategy for reducing the negative impact of failures in a cost-effective manner.

        Where failover uses the same type of solution to achieve the same outcome, fallback uses a different type of solution to maintain the essential system functionality.

      • Chris HannahWhat Sort of Programmer Am I Now?

        Hopefully, at the end of this year of experimentation, I’ll be a bit closer to figuring out what I want to do professionally. Do I want to really focus on something new like Python or Go? Do I want to lean into Java more? Or possibly do I even try and stay working on as many technologies as I can?

      • Haki BenitaWhen Good Correlation is Not Enough: How outliers can trick the optimizer into the wrong plan

        Choosing to use a block range index (BRIN) to query a field with high correlation is a no-brainer for the optimizer. The small size of the index and the field's correlation makes BRIN an ideal choice. However, a recent event taught us that correlation can be misleading. Under some easily reproducible circumstances, a BRIN index can result in significantly slower execution even when the indexed field has very high correlation.

      • Rust

        • LWNRust for embedded

          The advantages of the Rust programming language are generally well-known; memory safety is a feature that has attracted a lot of developer attention over the last few years. At the inaugural Embedded Open Source Summit (EOSS), which is an umbrella event for numerous embedded-related conferences, Martin Mosler presented on using Rust for an embedded project. In the talk, he showed how easy it is to get up and running with a Rust-based application on a RISC-V-based development board.

          Mosler works for Zühlke Engineering in Switzerland; both he and his company see the potential of Rust for new development, particularly for embedded projects. That is why the company supports his community work on Rust, including holding Rust meet-ups and traveling to Prague to attend EOSS and give the talk. He is building up Rust knowledge within the company so that it is available for new projects as they arise.



Recent Techrights' Posts

Why Techrights Cannot be Vilified (and Instead It Gets SLAPPed Repeatedly by Microsoft People)
Attack dogs are all "bark"; because they have no actual "bite"
Links 25/06/2025: Elon Musk’s Lawyers Caught Lying, WhatsApp Faces More Bans
Links for the day
Wayland Pushers Lose the Argument, Use LLM Slop and Chatbots to Make Up Arguments for IBM
Another new low and low blow
What is "MATA"?
Think of it as GAFAM or "Meta"
WebProNews is a Slopfarm
Please avoid linking to WebProNews
Another "Told You So!": XBox Mass Layoffs at Microsoft (Many Recent Reports Were Chaff and Spin), Many Other Divisions Affected
With mass layoffs at Microsoft the world would be much better
 
The 'Case' of the Serial Strangler From Microsoft is a Lot of Copypasta (Maybe Also LLM Slop) From the Matthew Garrett 'Case'
5RB deserves to know and the matter shall be properly reported in due course (when the time is right)
Austrian GNU/Linux Usage Up to About 5% as More of Europe Abandons Microsoft
Since inauguration day the Austrian people have adopted more and more of GNU/Linux
Why the "Wayland People" and "Rust People" Will Lose Hearts and Minds (Same Reasons)
Wayland pushers are fast becoming like "Rust People"
5,600 Pages/Articles Per Year
So far this year we've kept all the promises
BetaNews Beginning to Show What Its True Goals Are
The 'new' BetaNews won't be about journalism. It's trying to sell things.
Microsoft Has Lost "The War"
We'll soon see the 9th or 10th wave of Microsoft layoffs in 2025 alone
Slopwatch: A Wreck and a Dreck, "Flooding the Zone With Dreck" or Flooding the Web With Junk
"Slopwatch" continues today because we have many new examples
Links 25/06/2025: Thwarting More Software Patents, Overlap Grows Between EPO Corruption and Illegal Kangaroo Patent Courts in EU
Links for the day
Brian Fagioli Created Another Slopfarm Targeting "Linux" After BetaNews Became a Slopfarm of Phantom Accounts and Pseudonyms
Mr. Fagioli even had slop about a dead Torvalds (hypothetical) as clickbait
Wayland is Perfect, Nobody Can Escape Its Perfection! (Or Not)
Do not form on opinion on Wayland based on politics
Moral Duty for "Linux Sites" to Speak Out Against LLM Slop
My wife has long complained about "Linux bloggers" keeping quiet and thus passive about a growing problem: slop
In Recent Hours Google News Promoted at Least 3 Slopfarms That Relayed Linux Foundation Propaganda Made by Bots or LLM "Bullshit Generators" (as Dr. Stallman Dubbed Them)
Google is circling down the drain and Google News too is hopeless
Linux Journal is a Slopfarm, It's Experimenting With LLM 'Authors'
Is Slashdot next?
Microsoft LinkedIn is Dying and Many More Layoffs Are on the Way
LinkedIn is just a failed acquisition of Microsoft. It causes losses and debt.
Gemini Links 25/06/2025: Combinatorial Music and Self Hosting
Links for the day
Richard Stallman Coming Back to Europe This Autumn to Give More Talks
His last talk in Europe attracted about 400-450 people
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Tuesday, June 24, 2025
IRC logs for Tuesday, June 24, 2025
Social Control Media, Technology & Catholicism: Synod on Synodality review and feedback
Reprinted with permission from Daniel Pocock
How Many More Women Will Managers at Microsoft Strangle and Tell to Kill Themselves (or Try to Kill)?
The world needs to know what happened
The New BetaNews: 7 New 'Articles', All of Them LLM Slop
BetaNews is basically defunct. Nobody writes there anymore.
statCounter Estimates Only 1 in 300 Iranians Would Use Microsoft for Search
Iranians don't quite trust Microsoft
Gemini Links 24/06/2025: ftpd on FreeBSD and Online Small Web Magazine
Links for the day
Google News Does Great Harm by Promoting Slopfarms as Legitimate News Sites
Slopfarms are sites which are 100% LLM slop
Links 24/06/2025: Trouble at "Open" "AI" and ‘Siarhei is Free’
Links for the day
Gemini Links 24/06/2025: Stimulants and Subscription Costs for DRM
Links for the day
When the Microsoft Aggressors Rely on Several Law Firms ('Attack Dogs', 'Guns for Hire'), Not Just One, Lawyering Up Against Techrights (Acting on Behalf of Americans Against UK Publishers)
From serving customers at some restaurant he has moved on to bullying people with demand letters
Links 24/06/2025: OpenAI [sic] May Soon Die (Too Much Debt) and Social Control Media Accused of Being Misinformation/Disinformation/Propaganda Amplifier
Links for the day
Nirbheek Chauhan in Planet GNOME Explains Why Wayland Pushers Are Losing
"A strange game. The only winning move is not to play."
Polygamy, from Catholic Synod on Synodality to Social Control Media & Debian CyberPolygamy
Reprinted with permission from Daniel Pocock
Only a Third of or 1 in 3 Web-Connected Devices is a Desktop or Laptop, According to statCounter
we can expect Android to widen its lead
The Days Are Getting Shorter, the First Half of 2025 is Almost Over
We're gratified to see significant increase in traffic and also positive feedback on the work we do
Turning GNU/Linux Into a Political Football
X (not the site) is Free software
X Server Still Works for Many People
A lot of people will grow suspicious of Wayland boosters/pushers if they persist and insist on using these tactics
Exactly a Week Ago "BetaNews Staff" Said "Betanews Is Growing Alongside You". Since Then Every Article (All by "Camila Nogueira") Has Been LLM Slop.
BetaNews is basically a slopfarm
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Monday, June 23, 2025
IRC logs for Monday, June 23, 2025
The "Tarzan Effect" in Compilers and Software
What happens when you forcibly make things 'work', either by hacks or by disregarding warnings (like those that compilers tend to issue)?
Gemini Links 23/06/2025: Mass Tourism, Hair Love, and Google Gemini as a Googlebomb
Links for the day
Law Firm Burgess Mee Does Not Fully Deny Participating in Abusive Litigation for Serial Strangler From Microsoft
I am not unfamiliar with these tactics
The Modus Operandi of Wayland Pushers: Make It Political
do what I say or you're a nazi...
Links 23/06/2025: RFE/RL Contributor Vladyslav Yesypenko Released, Recording Industry Cutbacks
Links for the day
Brett Wilson LLP Solicitors (M): Over 99.9% of Our E-mail is Self-Marketing, We Send You 3.5MB E-mails for Less Than 1KB of Text
Why would tech people entrust legal matters to such people?
Peter Moon's (Computerworld) Interview With Richard Stallman
Stallman: If you want freedom don't follow Linus Torvalds
At What Point Does Outsourcing Constitute Malpractice?
Brett Wilson LLP's new staff page is misleading
United Arab Emirates (UAE) Sailing to GNU/Linux, According to statCounter
countries in that region will quickly learn the price of neglecting digital sovereignty
From Do Your Own Research to Do Your Own Search
The Web is full of garbage; search engines amplify this garbage
More People Moving to Geminispace?
at age 6+ Gemini Protocol seems to have gained some maturity and it seems like more people use it
Permutation in LLMs Does, Inevitably, Change Meanings and Therefore LLMs Cannot Properly Rephrase or Summarise Texts
LLMs lack actual grasp or comprehension of what they spew out
Links 23/06/2025: Many Security Breaches, Population Declines
Links for the day
Gemini Links 23/06/2025: "America at the Crossroads" and OpenWRT Surgery
Links for the day
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Sunday, June 22, 2025
IRC logs for Sunday, June 22, 2025
Pure Dove
Different means different, and sometimes those who "deviate" from "the norm" have a point
Censorship is a Sign of Weakness Which Invites More Censorship Attempts
revolutionaries don't succumb to pressure from bullies
Why It's Unlikely That LLM Slop Will Dominate the Web in the Long Run
Slopfarms will eventually perish (they have no actual value) and "survivors" on the Web will be sites that never depended on search engines and social control media
GNU/Linux in Argentina Now Measured Near 5%
Like in central Europe, they must be seeing an increasingly hostile US
BetaNews is Fake News, Composed by LLM Slop
nothing in BetaNews is written by humans anymore