Bonum Certa Men Certa

Links 29/05/2022: 4MLinux 39.1, Invalidity of Some US Software Patents



  • GNU/Linux

    • Kernel Space

      • Linux Plumbers Conference: Microconferences at Linux Plumbers Conference: Service Management and systemd

        Linux Plumbers Conference 2022 is pleased to host the Service Management and systemd Microconference.

        The focus of this microconference will be on topics related to the current state of host-level service management and ideas for the future.

        Most of the topics will be aroind the systemd ecosystem as the most widely adoped service manager. The Service Management and systemd microconference also welcomes proposals that are not specific to systemd so we can discover and share new ideas on how to improve service management in general.

      • inttf-kernel – Clear Linux kernel for Fedora 36 users – If Not True Then False

        This is a project I’ve been working on lately. Build Clear Linux kernel for Fedora users. All Clear Linux patches and almost full kernel config are working currently. Only minor changes to get modprobe, hostname, fbdev, etc. working on Fedora. This is currently still at testing stage and not recommend on any production environment(s). Also remember backup all important data!

      • Paul E. McKenneyStupid RCU Tricks: How Read-Intensive is The Kernel's Use of RCU?

        RCU is a specialized synchronization mechanism, and is typically used where there are far more readers (rcu_read_lock(), rcu_read_unlock(), rcu_dereference(), and so on) than there are updaters (synchronize_rcu(), call_rcu(), rcu_assign_pointer(), and so on). But does the Linux kernel really make heavier use of RCU's read-side primitives than of its update-side primitives?

        One way to determine this would be to use something like ftrace to record all the calls to these functions. This works, but trace messages can be lost, especially when applied to frequently invoked functions. Also, dumping out the trace buffer can perturb the syatem. Another approach is to modify the kernel source code to count these function invocations in a cache-friendly manner, then come up with some way to dump this to userspace. This works, but I am lazy. Yet another approach is to ask the tracing folks for advice.

        This last is what I actually did, and because the tracing person I happened to ask happened to be Andrii Nakryiko, I learned quite a bit about BPF in general and the bpftrace command in particular. If you don't happen to have Andrii on hand, you can do quite well with Appendix A and Appendix B of Brendan Gregg's “BPF Performance Tools”. You will of course need to install bpftrace itself, which is reasonably straightforward on many Linux distributions.

      • WCCF TechIntel adds Arc GPU, Rocky Linux, & multi-GPU functionality support to oneVPL 2022.1

        Intel recently updated the oneAPI Video Processing Library, also known as oneVPL, to version 2022.1. The new update changes Intel's focus on VA-API and Media SDK to the current standard of oneAPI acceleration.

    • Applications

      • HackadayAnnotate PDFs On Linux With PDFrankenstein | Hackaday

        On Windows and Mac machines, it’s not too troublesome to add text or drawings (such as signatures) to PDF files, but [Mansour Behabadi] found that on Linux machines, there didn’t seem to be a satisfying way or a simple tool. Being an enterprising hacker, [Mansour] set out to fill that gap, and the way it works under the hood is delightfully hacky, indeed.

        The main thing standing in the way of creating such a tool is that the PDF format is a complex and twisty thing. Making a general-purpose PDF editing tool capable of inserting hyperlinks, notes, images, or drawings isn’t exactly a weekend project. But [Mansour] didn’t let that stop him; he leveraged the fact that tools already exist on Linux that can read and create PDF files, and tied them all together into what was at one point “a horrific patchwork of tools” which inspired the name pdfrankenstein.

      • PulseAudio 16.0 Released with Bluetooth Battery Level Reporting

        PulseAudio 16.0 release brings a handful of changes across its components.

      • LinuxiacPulseAudio 16 Released with Bluetooth Battery Level Reporting Support

        The freedesktop.org project announced the release of the PulseAudio 16.0 sound server with some new features. So let’s take a look at what’s new and enhanced.

        PulseAudio is a general-purpose sound server designed to act as a bridge between your programs and hardware devices that support ALSA or OSS. Furthermore, if Avahi is enabled, it can provide simple network streaming across local devices.

        Although PipeWire has grown in popularity in recent years and is currently the primary choice for a sound server in many Linux distributions, PulseAudio is not yet out of the game and is still evolving. And its most recent release, PulseAudio 16, proves this.

      • Linux Links12 Best Free and Open Source Linux PDF Viewers

         Fortunately, there are some excellent open source alternatives to Adobe Acrobat Reader DC. The software featured in this article offer more than displaying PDF files; many are versatile document viewers.

        Here’s our verdict on the PDF viewers. We only include open source software here.

    • Instructionals/Technical

      • Ubuntu HandbookHow to Enable WebP Image File Support in Ubuntu 22.04 | 20.04

        Got some photo images in .webp file format? Here’s how to open them with system default image viewer (and other GTK apps), and generate image thumbnail in File manager in Ubuntu 22.04 & Ubuntu 20.04

        Webp is an image file format developed by Google. It supports both lossy and lossless compression, as well as animation and alpha transparency. The file format has smaller size while keeping good image quality.

        You may view the WebP images in Linux via many applications, such as Firefox, Chrome and gThumb. But, that’s not enough! Files (aka nautilus file manager) does not show image thumbnail for webp, and image annotation tools may not open and save images in that file format.

        So, this open-source library is present to deal with WebP support for GTK applications.

      • Linux CapableHow to Install/Enable EPEL/EPEL Next on AlmaLinux 9
      • ID RootHow To Change Timezone on Ubuntu 22.04 LTS

        In this tutorial, we will show you how to change the timezone on Ubuntu 22.04 LTS. For those of you who didn’t know, Ubuntu server users, the time zone by default is not set. However, desktop users with an active Internet connection may automatically set up this. Providing correct Timezone information is essential for performing different system-related tasks. Also, when you set up automatic corn jobs that depend upon the Timezone of your system, providing inaccurate information can cause problems.

        This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo‘ to the commands to get root privileges. I will show you the step-by-step change of the timezone on Ubuntu 22.04 (Jammy Jellyfish). You can follow the same instructions for Ubuntu 22.04 and any other Debian-based distribution like Linux Mint, Elementary OS, Pop!_OS, and more as well.

      • Make Use OfHow to Easily Create QR Codes on Linux

        A QR code is a type of barcode that stores information and is read using a digital device, including smartphones. If you've been to convenience stores or cafés, you'd have probably seen QR codes there for receiving payments or sharing Wi-Fi passwords, among other things.

        But that's not all. QR codes have other useful applications in today's world. For instance, you can use QR codes to share access to your home Wi-Fi with guests or to share your contact card.

        Follow along as we explain how to create QR codes on Linux using qrencode.

      • How to setup an Nginx reverse proxy server example

        Most enterprise architectures use a single, reverse proxy server to handle all incoming requests.

        The proxy server then inspects each HTTP request and identifies which backend system, be it an Apache, Tomcat, Express or NodeJS server, should handle the request.

        The reverse proxy then forwards the request to that server, allows the request to be processed, obtains a response from that backend server, and then send the response back to the client.

        That is the function an Nginx server configured as a reverse proxy would serve.

    • Games

    • Desktop Environments/WMs

  • Distributions and Operating Systems

  • Leftovers

    • Defence/Aggression

      • Daniel PocockDaniel Pocock: Surviving a crowd crush at Dublin airport



        On Saturday, Dublin airport officials were in the news promising to resolve the problems at the airport. Yet on Sunday things only got worse, dramatically, airport security and police overwhelmed by a crowd.

        The airport has become so dysfunctional that there are crowds outside on the road, reminiscent of the scenes outside Kabul airport when America abandoned Afghanistan.

    • Monopolies

      • Patents

        • Board of Appeal agrees that the description amendment requirement lacks legal basis (T 1444/20)

          Following the excitement over T 1989/18, there has been a second Board of Appeal decision finding a lack of legal basis for the requirement to amend the description in line with the claims. The decision in T 1444/20 found that it was not necessary for the applicant to delete claim-like clauses and redundant subject matter from the description, given that the claims were clear without need for recourse to the description. The decision in T 1444/20 however, follows a flurry of Board of Appeal decisions that contradicted T 1989/18 and did find legal basis for the requirement to amend the description in Article 84 EPC. Where does this all leave applicants faced with onerous description amendment requests in Examination?

        • LexologyOnerous EPO Guideline for description amendments remain [Ed: The Boards of Appeal are still kangaroo courts in the EPO]

          In January 2022 we reported on decision T 1989/18, published in December 2021, which found there to be no legal basis for refusing an application on…

        • Equitable IP's Optic153 adverse judgment granted

          On May 23, 2022, the PTAB entered adverse judgment with respect to claims 1, 16, 19, 21, and 22 (all challenged claims) of U.S. Patent 6,115,174, owned by Optic153 LLC, an Equitable IP entity, in IPR2021-00932 filed by Unified Patents. After the PTAB instituted trial, Optic153 filed a statutory disclaimer with the USPTO disclaiming the challenged claims. The PTAB treated Optic153's disclaimer as a request for adverse judgment as to the challenged claims and granted the request.

      • Software Patents

        • $3,000 awarded for Gridley IP prior art

          Unified is pleased to announce PATROLL crowdsourcing contest winners, Mani Manikandan and Kartikeya Srivastava, who split a cash prize of $3,000 for their prior art submissions for U.S. Patent 8,676,668. The patent is owned by by Gridley IP LLC, an IP Edge entity. The '668 patent generally relates to mapping population activity by discerning a location, speed, and direction of wireless mobile devices within a geographic region. It has been asserted against Waitr, Route4Me, WorkWave, Instacart, Doordash, NeighborFavor, Cabconnect, Zum Services, HopSkipDrive, SuperShuttle, and Flywheel Software based on their respective delivery and ridesharing services and apps.

        • Lauri Valjakka prior art found, $2,000 awarded

          Unified is pleased to announce PATROLL crowdsourcing contest winner, Ramesh Varadharaj, who was awarded a cash prize of $2,000 for his prior art submission for U.S. Patent 8,495,167. The patent is owned by Lauri Valjakka, an NPE. The '167 patent generally relates to data communication networks and has been asserted against Apple, Google, Sony, Microsoft, Netflix, Cisco, Amazon, and Akamai Technologies.

        • $3,000 for Dynamic IP Deals entity Escapex IP prior art

          The '113 patent relates to generating artist-specified dynamic albums.

        • Mirror Imaging patent likely invalid

          The ‘275 patent is generally related to financial document retrieval and storage systems and has been asserted against Bank of America, Wells Fargo, JP Morgan Chase, Citigroup, Capital One, PNC Bank, BancorpSouth Bank, and others.

        • $12,000 for Atlantic IP Services sub, Ollnova Technologies, prior art

          On May 25, 2022, Unified added 4 new PATROLL contests, with a $3,000 cash prize for each, seeking prior art on the list below. The patents are owned by Ollnova Technologies Limited, an NPE and Atlantic IP Services subsidiary. The contests will all end on September 16, 2022. Please visit PATROLL for more information or click on each link below.

      • Trademarks

        • Precedential No. 14: TTAB Allows Amendment to Applicant's Goods, Dismisses 2(d) Opposition to LUX ENHANCER

          The Board has re-designated as precedential its March 22, 2022 decision denying Opposer Conopco's motion to re-open its discovery and trial periods, granting applicant's motion to narrow its identification of goods, and dismissing this Section 2(d) opposition to registration of LUX ENHANCER for certain hair care products in view of Conopco's registered mark LUX (Stylized) for "soap and body cleansing wash." Conopco, Inc. v. Transom Symphony OpCo, LLC DBA Beauty Quest Group, Opposition No. 91256368 (Redesignated May 23, 2022) [precedential].



Recent Techrights' Posts

Microsoft Uses LLM Slop to Defraud (or Rob) Shareholders
Microsoft is basically defrauding its shareholders by LLM slop
 
Why the Microsoft People Who Started SLAPPs Against Techrights Could Very Well be Sent Back to Prison
White-collar crime is also a crime
The Company Run by Former (and Last Proper) Red Hat CEO, Promoting Microsoft Mono, Faces Shock as Senior Partner Jailed for 33 Sexual Offenses Including Pedophilia
"As reported by The Oxford Mail in April 2025, the offenses include rape, sexual assault, engaging in non-penetrative activity with a child, and more."
Microsoft Lost 29% of Windows Users, Based on Microsoft, Now Come Massive Layoffs
Microsoft collapse is today
Slopwatch: Google Serves to People Linux Slop and Linux FUD (Made by Bots)
"Slopwatch" finds it difficult to ignore Google's role in encouraging LLM slop
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Tuesday, July 01, 2025
IRC logs for Tuesday, July 01, 2025
"Wayland People" Behave Like the Googles and Microsofts of This World
Published yesterday by Igor Ljubuncic
Gemini Links 02/07/2025: Arch Linux and Fulfillment in Gemini
Links for the day
Links 01/07/2025: "Independence Day in Taiwan", Bounties on Software Patents
Links for the day
What Happens When Your Law Firm is Preoccupied With Harassing and Trying to Extort a Humble Couple in Manchester, Even on Behalf of Violent Microsoft Staff From Another Continent
It's good to see that law firms which operate in bad faith are perishing
Lawyer X, Law Firm X and Elon Musk's X: scandals linked by Old Xaverian
Reprinted with permission from Daniel Pocock
Gemini Links 01/07/2025: Distraction-Free Writing and Hytale Mismanagement
Links for the day
Links 01/07/2025: "Beauty of Blogging" and "Etiquette of Collapse"
Links for the day
The Web is a Dead End
We need to adopt alternatives
When Words Lose Their Intended Meaning
examples of words that, at least in the technical spheres, don't mean what they sound like
People Who Disagree With You on Technical Matters May or May Not Agree With You on Political Things (But Usually They Do)
What bothers me a great deal is seeing left-leaning people accusing other left-leaning people of being "nazis"
"Too Much Choice" and "Too Many Programming Languages"
What IBM and its apologists aim for was attempted in the 1930s and it failed
Microsoft Lost 400,000,000 Windows Users, According to Microsoft
more people adopt smaller computers and many people replace Windows with GNU/Linux, as they don't really need a new computer
The "Davos Effect": Tarnishing the Reputation of Places Not by Overtourism But by Oligarch Infestation
The last Venice needs is an affiliation with Venetian oligarchs
Half a Year Gone, What's to Come Next
In the second half of 2025 we expect to be done with the Microsoft SLAPPs
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Monday, June 30, 2025
IRC logs for Monday, June 30, 2025
People at the Very Top of Microsoft Know How Bad Things Really Are
There's no product that can replace the former profitability of Windows licensing and stuff that went on top of Windows
Gemini Links 01/07/2025: Mid Year and a Tour of Old Languages
Links for the day
EPO Presentation Bemoans Misuse of Slop in Decision-Making on Patents and in Classification (Which is Likely Illegal Too)
We habitually mention failed use cases of LLMs on the Web
Mass Layoffs at Microsoft Confirmed, "XBox Hardware Is Dead"
It's possible that over 20% of the staff will be laid off
Links 30/06/2025: Kyrgyzstan vs Media Freedom, Dalai Lama Succession
Links for the day
Gemini Links 30/06/2025: Backend Programs in Gemini and Dynamic Content Without The Scripting
Links for the day
Links 30/06/2025: Zuckerberg’s Tax-Evading Scheme Harms Kids, US Copyright Office Lacks Leadership
Links for the day
Microsoft Isn't Laying Off Tens of Thousands to 'Invest' in Slop ('Hey Hi'), It's Laying Off Tens of Thousands Because It's Running Out of Money (and Willing Lenders)
the layoffs are a sign of the business failing, not "hey hi" (whatever that is) replacing staff
Intel Lays Off 20% of Its Workforce, Microsoft is Doing the Same This Year
Like a yoyo, whatever goes up will come back down
Microsoft XBox Layoffs: Almost 2,000 Layoffs Became "Over 2,000"? (Over 20% of the Staff)
over 20% of staff will be let go, not counting staff that leaves voluntarily
GNU/Linux Rises to New Highs in Angola, Africa in General is Abandoning Windows
Western media barely covers Microsoft layoffs in Africa, but in recent years Microsoft culled the workforce and even shut down entire operations
Summer Plans in Techrights and Elsewhere
massive layoffs at Microsoft
Destination Geminispace (in the Age of LLM Slop and Slop Images That Infest the Web and Social Control Media)
Geminispace isn't vast, but at least it is - on average - a lot "cleaner"
GNU/Linux Growing in Sierra Leone This Year
Based on what statCounter is seeing, this year there are more and more people there who adopt GNU/Linux
Serial Sloppers Gonna Slop
More sites out there ought to call out the cheaters
Quartz (qz.com) is Spam and a Slopfarm
It used to be OK. Then they fired the staff.
Links 30/06/2025: US Economic Woes, Extreme Heat
Links for the day
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Sunday, June 29, 2025
IRC logs for Sunday, June 29, 2025
Gemini Links 30/06/2025: "The AI Hype" and New AuraGem Ask
Links for the day