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

Microsoft-Connected Sites Trying to Shift Attention Away From Microsoft's Megebreach Only Days Before Important If Not Unprecedented Grilling by the US Government?
Why does the mainstream media not entertain the possibility a lot of these talking points are directed out of Redmond?
[Video] 'Late Stage Capitalism': Microsoft as an Elaborate Ponzi Scheme (Faking 'Demand' While Portraying the Fraud as an Act of Generosity and Demanding Bailouts)
Being able to express or explain the facts isn't easy because of the buzzwords
Microsoft ("a Dying Megacorporation that Does Not Create") and IBM: An Era of Dying Giants With Leadership Deficits and Corporate Bailouts (Subsidies From Taxpayers)
Microsoft seems to be resorting to lots of bribes and chasing of bailouts (i.e. money from taxpayers worldwide)
 
Links 18/05/2024: Deterioration of the Net, North Korean IT Workers in the US
Links for the day
Windows in Lebanon: Down to 12%?
latest from statCounter
Links 18/05/2024: Caledonia Emergency Powers, "UK Prosecutor's Office Went Too Far in the Assange Case"
Links for the day
US Patent and Trademark Office Sends Out a Warning to People Who Do Not Use Microsoft's Proprietary Formats
They're punishing people who wish to use open formats
Links 18/05/2024: Fury in Microsoft Over Studio Shutdowns, More Gaming Layoffs
Links for the day
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Friday, May 17, 2024
IRC logs for Friday, May 17, 2024
Links 18/05/2024: KOReader, Benben v0.5.0 Progress Update, and More
Links for the day
[Meme] UEFI 'Secure' Boot Boiling Frog
UEFI 'Secure' Boot: You can just ignore it. You can just turn it off. You can hack on it as a workaround. Just use Windows dammit!
The Market Wants to Delete Windows and Install GNU/Linux, UEFI 'Secure' Boot Must Go!
To be very clear, this has nothing to do with security and those who insist that it is have absolutely no credentials
In the United States Of America the Estimated Share of Google Search Grew After Microsoft's Chatbot Hype (Which Coincided With Mass Layoffs at Bing)
Microsoft's chatbot hype started in late 2022
Techrights Will Categorically Object to Any Attempts to Deny Its Right to Publish Informative, Factual Material
we'll continue to publish about 20 pages per day while challenging censorship attempts
Links 17/05/2024: Microsoft Masks Layoffs With Return-to-office (RTO) Mandates, More YouTube Censorship
Links for the day
YouTube Progresses to the Next Level
YouTube is a ticking time bomb
Journalists and Human Rights Groups Back Julian Assange Ahead of Monday's Likely Very Final Decision
From the past 24 hours...
[Meme] George Washington and the Bill of Rights
Centuries have passed since the days of George Washington, but the principles are still the same
Daniel Pocock: "I've Gone to Some Lengths to Demonstrate How Corporate Bad Actors Have Used Amateur-hour Codes of Conduct to Push Volunteers Into Modern Slavery"
"As David explains, the Codes of Conduct should work the other way around to regulate the poor behavior of corporations who have been far too close to the Debian Suicide Cluster."
Video of Richard Stallman's Talk From Four Weeks Ago
2-hour video of Richard Stallman speaking less than a month ago
statCounter Says Twitter/X Share in Russia Fell From 23% to 2.3% in 3 Years
it seems like YouTube gained a lot
Journalist Who Won Awards for His Coverage of the Julian Assange Ordeals Excluded and Denied Access to Final Hearing
One can speculate about the true reason/s
Richard Stallman's Talk, Scheduled for Two Days Ago, Was Not Canceled But Really Delayed
American in Paris
3 More Weeks for Daniel Pocock's Campaign to Win a Seat in European Parliament Elections
Friday 3 weeks from now is polling day
Microsoft Should Have Been Fined and Sanctioned Over UEFI 'Lockout' (Locking GNU/Linux Out of New PCs)
Why did that not happen?
Gemini Links 16/05/2024: Microsoft Masks Layoffs With Return-to-office (RTO) Mandates, Cash Issues
Links for the day
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Thursday, May 16, 2024
IRC logs for Thursday, May 16, 2024
Ex-Red Hat CEO Paul Cormier Did Not Retire, He Just Left IBM/Red Hat a Month Ago (Ahead of Layoff Speculations)
Rather than retire he took a similar position at another company
Linux.com Made Its First 'Article' in Over and Month, It Was 10 Words in Total, and It's Not About Linux
play some 'webapp' and maybe get some digital 'certificate' for a meme like 'clown computing'
[Meme] Never Appease the Occupiers
Freedom requires truth. Free speech emancipates.
Thorny Issues, Violent Response
They say protests (or strikes) that do not disrupt anything are simply not effective. The same can be said about reporting.
GNU/Linux in Malaysia: From 0.2 Percent to 6+ Percent
That's like 30-fold increase in relative share
Liberty in Liberia? Windows Falls Below 10% and Below iOS
This is clearly a problem for Microsoft
Techrights Congratulates Raspberry Pi (With Caution and Reservations)
Raspberry Pi will "make or break" based on the decisions made in its boardroom
OSI Makes a Killing for Bill Gates and Microsoft (Plagiarism and GPL Violations Whitewashed and Openwashed)
meme and more
The FSF Ought to Protest Against UEFI 'Secure Boot' (Like It Used To)
libreplanet-discuss stuff
People Who Defend Richard Stallman's Right to Deliver Talks About His Work Are Subjected to Online Abuse and Censorship
Stallman video removed
GNU/Linux Grows in Denmark, But Much of That is ChromeOS, Which Means No Freedom
Google never designs operating systems with freedom in mind
Links 16/05/2024: Vehicles Lasting Fewer Years, Habitat Fragmentation Concerns
Links for the day
GNU/Linux Reaches 6.5% in Canada (Including ChromeOS), Based on statCounter
Not many news sites are left to cover this, let alone advocate for GNU/Linux
Links 16/05/2024: Orangutans as Political Props, VMware Calls Proprietary 'Free'
Links for the day
The Only Thing the So-called 'Hey Hi Revolution' Gave Microsoft is More Debt
Microsoft bailouts
TechTarget (and Computer Weekly et al): We Target 'Audiences' to Sell Your Products (Using Fake Articles and Surveillance)
It is a deeply rogue industry that's killing legitimate journalism by drowning out the signal (real journalism) with sponsored fodder
FUD Alert: 2024 is Not 2011 and Ebury is Not "Linux"
We've seen Microsofers (actual Microsoft employees) putting in a lot of effort to shift the heat to Linux
Links 15/05/2024: XBox Trouble, Slovakia PM Shot 5 Times
Links for the day
Windows in Times of Conflict
In pictures
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Wednesday, May 15, 2024
IRC logs for Wednesday, May 15, 2024