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

A Week After a Worldwide Windows Outage Microsoft is 'Bricking' Windows All On Its Own, Cannot Blame Others Anymore
A look back at a week of lousy press coverage, Microsoft deceit, and lessons to be learned
 
Links 26/07/2024: Hamburgerization of Sushi and GNU/Linux Primer
Links for the day
Links 26/07/2024: Tesco Cutbacks and Fake Patent Courts
Links for the day
Links 26/07/2024: Grimy Residue of the 'AI' Bubble and Tensions Around Alaska
Links for the day
Gemini Links 26/07/2024: More Computers and Tilde Hosting
Links for the day
Links 26/07/2024: "AI" Hype Debunked and Elon Musk's "X" Already Spreads Political Disinformation
Links for the day
"Why you boss is insatiably horny for firing you and replacing you with software."
Ask McDonalds how this "AI" nonsense with IBM worked out for them
No Olympics
We really need to focus on real news
Nobody Holds the GNOME Foundation Accountable (Not Even IRS), It's Governed by Lawyers, Not Geeks, and Headed by a Shaman Crank
GNOME is a deeply oppressive institutions that eats its own
[Meme] The 'Modern' Web and 'Linux' Foundation Reinforcing Monopolies and Cementing centralisation
They don't care about the users and issuing a few bytes with random characters costs them next to nothing. It gives them control over billions of human beings.
'Boiling the Frog' or How Online Certificate Status Protocol (OCSP) is Being Abandoned at Short Notice by Let's Encrypt
This isn't a lack of foresight but planned obsolescence
When the LLM Bubble Implodes Completely Microsoft Will be 'Finished'
Excuses like, "it's not ready yet" or "we'll fix it" won't pass muster
"An escalator can never break: it can only become stairs"
The lesson of this story is, if you do evil things, bad things will come your way. So don't do evil things.
When Wikileaks Was Still Primarily a Wiki
less than 14 years ago the international media based its war journalism on what Wikileaks had published
The Free Software Foundation Speaks Out Against Microsoft
the problem is bigger than Microsoft and in the long run - seeing Microsoft's demise - we'll need to emphasise Software Freedom
IRC Proceedings: Thursday, July 25, 2024
IRC logs for Thursday, July 25, 2024
Over at Tux Machines...
GNU/Linux news for the past day
Links 26/07/2024: E-mail on OpenBSD and Emacs Fun
Links for the day
Links 25/07/2024: Talks of Increased Pension Age and Biden Explains Dropping Out
Links for the day
Links 25/07/2024: Paul Watson, Kernel Bug, and Taskwarrior
Links for the day
[Meme] Microsoft's "Dinobabies" Not Amused
a slur that comes from Microsoft's friends at IBM
Flashback: Microsoft Enslaves Black People (Modern Slavery) for Profit, or Even for Losses (Still Sinking in Debt Due to LLMs' Failure)
"Paid Kenyan Workers Less Than $2 Per Hour"
From Lion to Lamb: Microsoft Fell From 100% to 13% in Somalia (Lowest Since 2017)
If even one media outlet told you in 2010 that Microsoft would fall from 100% (of Web requests) to about 1 in 8 Web requests, you'd probably struggle to believe it
Microsoft Windows Became Rare in Antarctica
Antarctica's Web stats still near 0% for Windows
Links 25/07/2024: YouTube's Financial Problem (Even After Mass Layoffs), Journalists Bemoan Bogus YouTube Takedown Demands
Links for the day
Gemini Now 70 Capsules Short of 4,000 and Let's Encrypt Sinks Below 100 (Capsules) as Self-Signed Leaps to 91%
The "gopher with encryption" protocol is getting more widely used and more independent from GAFAM
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Wednesday, July 24, 2024
IRC logs for Wednesday, July 24, 2024
Techrights Statement on YouTube
YouTube is a dying platform
[Video] Julian Assange on the Right to Know
Publishing facts is spun as "espionage" by the US government and "treason" by the Russian government, to give two notable examples
Links 25/07/2024: Tesla's 45% Profit Drop, Humble Games Employees All Laid Off
Links for the day
Gemini Links 25/07/2024: Losing Grip and collapseOS
Links for the day