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

Our Three Lawsuits Against Microsofters Are About to Become a Lot More Relevant to GNU/Linux
The Master will easily understand why Garrett has been attacking me since 2012
Slop Is Not Intelligence and It Does Not Enhance Productivity
Like voice dictation, which cannot tell the difference between "sheet" and "shit"
 
Microsoft is Trying to "Pull a Nokia" on GNU/Linux as Desktop/Laptop Platform
We all remember that rather well, don't we?
LLM Slopfarms gbhackers.com, "Cyber Press" and CyberSecurityNews Are Drowning Google News (and Shame on Google for Feeding and Facilitating Them)
All are run by the same people
Links 23/07/2025: Droplets GUI Patent Monopoly Challenge, Nokia Leverages Illegal Patent Court Against Rivals
Links for the day
Gemini Links 23/07/2025: Community in Geminispace and Challenges With Old Computers
Links for the day
Links 23/07/2025: Slop Patents Tackled, Slop Copyright Misuses Tackled by Politicians
Links for the day
Links 23/07/2025: Retreating From Transparency on Jeffrey Epstein, We No Longer Have Press Freedom
Links for the day
Gemini Links 23/07/2025: Piano and Food
Links for the day
New and Old
On Ageism in Tech
EPO Crimes Are Spreading to the British Court System
Society is now paying the price for failing to tackle crimes at the EPO
It's Time to Dump SharePoint and Here's What to Use Instead
Nextcloud, ownCloud, Bookstack, MediaWiki, and MediaGoblin
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Tuesday, July 22, 2025
IRC logs for Tuesday, July 22, 2025
Brett Wilson LLP Has Gone Silent
Sometimes silence says more than nothing at all
Slopwatch: LinuxSecurity, Planet Ubuntu, and LinuxTechLab
some slopfarms show no remorse and they don't value their reputation at all
Links 23/07/2025: Book Bans, Storms, and Kangaroo Court for Patents Commits More Unlawful Acts of Overreach
Links for the day
Gemini Links 22/07/2025: Thinkpad and Pinephone
Links for the day
Links 22/07/2025: "Blog Restart" and Microsoft Clobbered by “ToolShell"
Links for the day
Global Warming and Global GAFAM Energy-Wasting
Burn more money (borrowed, loans), then hope the waste will somehow translate into profit?
No Compliance With the European Patent Convention (EPC) at the European Patent Office (EPO)
It's about preventing competition against this autocracy
Blue-Collar Trolls vs White-Collar Trolls
Examples of white-collar trolls
Apple Vision Pro Failed So Badly That Its Sales Are About 2,000 Times Smaller Than iPhone Sales
What's left for Apple to offer other than hype?
To Millions of People "Year of the Linux Desktop" Was Some Time in the 1990s (Bootable GNU/Linux as a Complete Operating System is Over 33 in Age)
In some sense, "year of the Linux desktop" was 33 years ago
Make No Assumptions (or Demands) About the Screen Resolution Used by Other People
There are usability aspects, aside from accessibility aspects
Why Wayland (and XWayland) Won't Solve the Key Problem It Proclaims to be Tackling (the Same Is True for Rust)
The problem isn't Wayland per se but the false promises and efforts to force everybody to move to it whilst insulting or demonising everyone who won't play along
They Don't Tell Us that 'Digitalisation' (Now Sold as "Hey Hi") Just Means Customers Become Unpaid Staff and Are Made Accountable
People are being conditioned to associate technology with something undesirable, at times even unbearable
Diplomatic Immunity Should Not Exist for Anybody
The EPO in its current form gradually 'normalises' the end of European democracy
Brett Wilson LLP Stopped Sending Me Papers When I Showed It had Sent Me Over 5 Kilograms of Legal Papers
A week ago we lodged our third lawsuit
Microsoft Mass Layoffs and Shutdowns Became the New Normal at Microsoft
Microsoft mass layoffs became a topic of everyday media coverage since May
Amazon Web Services (AWS) Has Layoffs and Microsoft Gaming/Entertainment Division Has an Uncertain Future
it's good to see all those horrible things crashing and burning
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Monday, July 21, 2025
IRC logs for Monday, July 21, 2025
FSF "Raised Almost $139,000 During This Summer Campaign"
"Thank you for making a stand against dystopia!"
Gemini Links 22/07/2025: VPS Exploited and Fear of View
Links for the day
LLM Bots vs Techrights
Slows things down a bit
New Publication Sheds Lights on Abuse of Workers at the European Patent Office (EPO)
Put in simple terms, they're killing the Office, harming remaining staff, try to hire rubber-stampers
Links 21/07/2025: Hardware, Health, and Imperialism
Links for the day
Gemini Links 21/07/2025: "When Buying Isn't Owning" and "CMS Special Edition"
Links for the day
Links 21/07/2025: Indie Web and Toxic Politics
Links for the day
[Meme] Microsoft Lawyers Throwing Stones in Glass Houses
threatened me with bankruptcy
Google "AI Overview" is Not AI and Not Overview
do not be misled; what Google does isn't smart, it's just ripping off the sites it already crawled for as long as 27 years
Making the Case to Dump Microsoft and GAFAM for National and Digital Sovereignty
"Sovereignty is difficult"
The Tactics of the Opposition (Microsoft Lunduke): Associate With K00ks, Throw in Vaccines to Muddy the Water
Who stands to gain from this?
Europe's Second-Largest Institution (EPO) and Largest Patent Monopoly Office Needs More Transparency, Not Less Transparency
In the EPO, what good are elections when one candidate literally bribes all the voters?
How Not to Report News About Microsoft
This pattern of misreporting is so widespread that it's hard to believe it's not intentional
Computer Science is Under Attack, They Want Everyone to be a Consumer
If people can no longer acquire Computer Science education and real Computer Science experience, they will not know how to control their own digital destiny or emancipate the very same universities that now control the syllabus and instead of teaching Computer Science encourage the outsourcing of systems
The Best Tools Are the Simplest Tools
There's a hidden message here about the merits of sticking with X
Ofcom Online Safety Group Speaks of Protecting Women Online, Will Brett Wilson LLP Ever Listen?
They've essentially became like the Taliban's "burka police"
Social Control Media Relies on Advertisers, So It'll Always Be Hostile Towards Free Software
Sales, sales, sales
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Sunday, July 20, 2025
IRC logs for Sunday, July 20, 2025
Fragmentation of Data
Life is too short to "hoard" data
In Defence of "Spinning Rust"
Just because something is "old" (or older) doesn't mean it ought to become extinct
Using Free Software to Prepare Legal Documents
LibreOffice is openly complaining about OOXML as an obstacle
Tech and Technology Are Not the Same Anymore
"Are you into tech, Sir?"
Our Articles About SLAPPs Receive Recognition and Interest
This week we shall continue writing about the 3 lawsuits we filed