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

Sven Luther, Lucy Wayland & Debian's toxic culture
Reprinted with permission from disguised.work
 
Chris Rutter, ARM Ltd IPO, Winchester College & Debian
Reprinted with permission from disguised.work
[Video] Microsoft Got Its Systems Cracked (Breached) Again, This Time by Russia, and It Uses Its Moles in the Press and So-called 'Linux' Foundation to Change the Subject
If they control the narrative (or buy the narrative), they can do anything
Links 19/04/2024: Israel Fires Back at Iran and Many Layoffs in the US
Links for the day
Russell Coker & Debian: September 11 Islamist sympathy
Reprinted with permission from disguised.work
Sven Luther, Thomas Bushnell & Debian's September 11 discussion
Reprinted with permission from disguised.work
G.A.I./Hey Hi (AI) Bubble Bursting With More Mass Layoffs
it's happening already
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Thursday, April 18, 2024
IRC logs for Thursday, April 18, 2024
Coroner's Report: Lucy Wayland & Debian Abuse Culture
Reprinted with permission from disguised.work
Links 18/04/2024: Misuse of COVID Stimulus Money, Governments Buying Your Data
Links for the day
Gemini Links 18/04/2024: GemText Pain and Web 1.0
Links for the day
Gemini Links 18/04/2024: Google Layoffs Again, ByteDance Scandals Return
Links for the day
Gemini Links 18/04/2024: Trying OpenBSD and War on Links Continues
Links for the day
IRC Proceedings: Wednesday, April 17, 2024
IRC logs for Wednesday, April 17, 2024
Over at Tux Machines...
GNU/Linux news for the past day
North America, Home of Microsoft and of Windows, is Moving to GNU/Linux
Can it top 5% by year's end?
[Meme] The Heart of Staff Rep
Rowan heartily grateful
Management-Friendly Staff Representatives at the EPO Voted Out (or Simply Did Not Run Anymore)
The good news is that they're no longer in a position of authority
Microsofters in 'Linux Foundation' Clothing Continue to Shift Security Scrutiny to 'Linux'
Pay closer attention to the latest Microsoft breach and security catastrophes
Links 17/04/2024: Free-Market Policies Wane, China Marks Economic Recovery
Links for the day
Gemini Links 17/04/2024: "Failure Is An Option", Profectus Alpha 0.5 From a Microsofter Trying to Dethrone Gemini
Links for the day
How does unpaid Debian work impact our families?
Reprinted with permission from Daniel Pocock
Microsoft's Windows Falls to All-Time Low and Layoffs Reported by Managers in the Windows Division
One manager probably broke an NDA or two when he spoke about it in social control media
When you give money to Debian, where does it go?
Reprinted with permission from Daniel Pocock
How do teams work in Debian?
Reprinted with permission from Daniel Pocock
Joint Authors & Debian Family Legitimate Interests
Reprinted with permission from Daniel Pocock
Bad faith: Debian logo and theme use authorized
Reprinted with permission from Daniel Pocock
Links 17/04/2024: TikTok Killing Youth, More Layoff Rounds
Links for the day
Jack Wallen Has Been Assigned by ZDNet to Write Fake (Sponsored) 'Reviews'
Wallen is selling out. Shilling for the corporations, not the community.
Links 17/04/2024: SAP, Kwalee, and Take-Two Layoffs
Links for the day
IRC Proceedings: Tuesday, April 16, 2024
IRC logs for Tuesday, April 16, 2024
Over at Tux Machines...
GNU/Linux news for the past day