Bonum Certa Men Certa

Links 08/05/2023: Linux 6.4 RC1 Out the Gate, Yocto Project Reaches 4.2



  • GNU/Linux

    • Kernel Space

      • 9to5LinuxLinus Torvalds Announces First Linux Kernel 6.4 Release Candidate

        The two-week merge window for Linux kernel 6.4 is now closed and the first Release Candidate is available to download from the kernel.org website or from Linus Torvalds’ git tree for early adopters, system integrators, and bleeding-edge users who want to get a glimpse of what’s about to be included in the final release.

        Linus Torvalds writes in his announcement post that the Linux 6.4-rc1 patch consists of about 55 percent updated and new drivers, about 20 percent architecture updates, and the rest is the usual random mix of documentation, tooling, networking, filesystem, and core kernel stuff.

      • LWNKernel prepatch 6.4-rc1

        This is just one more back in the long-running shadow-stack story; see this article for some background.

        In the end, 13,044 non-merge changesets were pulled during this merge window.

      • LWNLinux 6.4-rc1
        So here we are, two weeks later, with the merge window over, and -rc1
        tagged and pushed out.
        
        

        Things look pretty normal - the only somewhat unusual thing for me personally was that we had two different pull requests that ended up with me doing my own little series of updates on top.

        So both the ITER_UBUF update from Jens, and the x86 LAM support from Dave Hansen (really Kirill, but I see the pull from Dave) caused me to do some extra x86 user access cleanups.

        The reason I mention that isn't so much "oh, I got to code a bit again", but that this actually caused me to *finally* switch to a more modern default 'git diff' algorithm. The default git diff algorithm is the very traditional one (aka 'Myers algorithm'), and while it works just fine, there's been various heuristics updates to make for nicer diffs by default.

        So I'm now using the 'histogram' algorithm, that takes the "uniqueness" of a line into account when deciding on longest common subsequence, because some of my patches were just an unreadable mess with the plain Myers diff. Not that histogram always helps, but it does often make things more legible.

        Now, this shouldn't really impact anybody else, and I know some people were already using either the patience of histogram algorithms, but I mention it because it does occasionally cause line number differences in the diffstats, and thus affects the pull-request output.

        I'm already used to small differences, but *if* you send me pull requests, this does mean that it might be just slightly easier on me if you follow my lead on picking a diff algorithm, and do

        git config diff.algorithm histogram

        in your kernel tree. Or, if you find that you prefer it over-all, maybe add "--global" there to do it in your main gitconfig to affect all your trees.

        [ Or just edit your .gitconfig files manually, it's actually what I do, but when telling others "you might want to do this", it's simpler to just give the "git config" command line ]

        Anyway, this is absolutely *not* a requirement, and honestly, in 95% of all cases it probably won't even change the diff output at all. But I thought I might just mention it to make people aware (and to maybe minimize the number of pull requests where I go "ok, let's figure out why my end result isn't exactly the same as the one in the PR").

        As to the actual changes in this merge window: the mergelog below gives the high-level view. The diffstat is completely dominated by AMD GPU hardware description files once again, and this time the 'perf' tool has followed suite, and so the other big area ends up being all the perf event JSON file descriptions. Ugh.

        But if you ignore those two "massive, but uninteresting" parts of the changes, everything else looks fairly normal. Lots of development all over, with "that's interesting" mainly depending on the reader. Drivers, architecture updates, filesystems, networking, memory management - there's a bit of everything.

        The one feature that didn't make it was the x86 shadow stack code. That side was probably a bit unlucky, in that it came in as I was looking at x86 issues anyway, and so I looked at it quite a bit, and had enough reservations that I asked for a couple of fairly big re-organizations.

        We'll get to that at a later date, possibly the next release.

        Anyway, please do go test it all out,

        Linus

    • Applications

      • Linux Links6 Best Free and Open Source Subtitle Downloaders

        Asubtitle is a text representation of the dialogue, narration, music, or sound effects in a video file. Subtitles are available in multiple formats.

        Subtitles can literally make the difference between being immersed in a movie or only watching the screen, trying to keep up with developments. Good subtitling does not distract but actually enhances viewing pleasure, and even native speakers can find subtitles useful, not only where the individual is hearing-impaired.

        There is a good range of open source software that lets you download subtitles. This article showcases dedicated subtitle downloaders, but some media players (including VLC and SMPlayer) also let you download subtitles.

        Here are our recommendations summarised in one of our legendary ratings charts.

      • Neowin7-Zip 23.00 Beta

        7-Zip is a open source file archiver with a high compression ratio. The program supports 7z, XZ, BZIP2, GZIP, TAR, ZIP, WIM, ARJ, CAB, CHM, CPIO, CramFS, DEB, DMG, FAT, HFS, ISO, LZH, LZMA, MBR, MSI, NSIS, NTFS, RAR, RPM, SquashFS, UDF, VHD, WIM, XAR, Z. Most of the source code is under the GNU LGPL license. The unRAR code is under a mixed license: GNU LGPL + unRAR restrictions. Check license information here: 7-Zip license.

        You can use 7-Zip on any computer, including a computer in a commercial organization. You don't need to register or pay for 7-Zip.

    • Instructionals/Technical

      • Kushal Das: Fixing missing yubikey trouble on fedora 38

        From the time I updated to Fedora 38, I am having trouble with my Yubikey. If I remove the key, just plugging it back does not help. gpg can not detect it.

      • University of TorontoAdvisory file locks and mandatory file locks are two quite different things

        Advisory file locks are in effect a form of broadcast interprocess communication (IPC) between vaguely cooperating processes. Processes use 'file locking' to broadcast information about what they're doing (such as reading or modifying a file) and what other processes shouldn't do (such as modify or sometimes read the file). Generally there's a simple system to regulate who can broadcast what sort of messages; for example, in Unix you may need to be able to open a file for writing before you can obtain an exclusive lock on it (ie, to broadcast your desire that no one else access the file).

      • LinuxTechiHow to Setup High Availability Apache Cluster on RHEL 9/8
    • Games

    • Desktop Environments/WMs

      • K Desktop Environment/KDE SC/Qt

        • Plasma Sprint 2023 in Augsburg

          After what felt like an eternity we were finally able to come together in Augsburg, Germany for the Plasma Sprint that was originally planned for April of 2020, kindly hosted by TUXEDO Computers in their offices. There were sixteen attendees from six countries and it was great to have three newcomers on board, too.

  • Distributions and Operating Systems

    • [Yocto] Release notes for 4.2 (mickledore)
    • LWNYocto Project 4.2 released

      Version 4.2 of the Yocto Project distribution builder has been released. It features improved Rust support, a number of BitBake enhancements, lots of updated software, and numerous security fixes.

    • Fernando BorrettiNixOS for the Impatient

      NixOS is a Linux distribution configured using Nix. It is declarative, meaning that the entire system state can be defined in a single .nix file; and reproducible, meaning you can have multiple computers set up identically.

  • Free, Libre, and Open Source Software

    • MichaÅ‚ WoźniakMastodon monoculture problem

      Mastodon-the-software is used by far by the most people on fedi. The biggest instance, mastodon.social, is home to over 200.000 active accounts as of this writing. This is roughly 1/10th of the whole Fediverse, on a single instance. Worse, Mastodon-the-software is often identified as the whole social network, obscuring the fact that Fediverse is a much broader system comprised of a much more diverse software.

      This has poor consequences now, and it might have worse consequences later. What also really bothers me is that I have seen some of this before.

    • Libre ArtsLibreArts Weekly recap — 7 May 2023

      Week highlights: Google Summer of Code 2023 project announced, new releases of DreamWorks MoonRay, BlenderBIM, dav1d, new features in FreeCAD and Ardour.

    • Education

      • Rlang5 new books added to Big Book of R

        Thanks to Niels Ohlsen for for helping me add the books, and to Adejumo Ridwan Suleiman and Mokandil for their submissions.

      • The Register UKDEF CON to set thousands of hackers loose on LLMs

        This year's DEF CON AI Village has invited hackers to show up, dive in, and find bugs and biases in large language models (LLMs) built by OpenAI, Google, Anthropic, and others.

        The collaborative event, which AI Village organizers describe as "the largest red teaming exercise ever for any group of AI models," will host "thousands" of people, including "hundreds of students from overlooked institutions and communities," all of whom will be tasked with finding flaws in LLMs that power today's chat bots and generative AI.

    • Licensing / Legal

      • IndiaExplained: What is Open Source Software and its relation to the AI race?

        That said, historically some of the most sophisticated and advanced technologies have been open sourced and that has been a way to develop at a rapid phase. While this is a great collaborative way to develop tech, little has been done to regulate the OSS models, making it equally dangerous if fallen into the wrong hands.

    • Programming/Development

      • ChrisWho Was On The Winning Team?

        However, there’s an easier way to do it by thinking combinatorically33 And this is the reason I wrote this up in the first place: I didn’t expect to be able to use the enumerative combinatorics I learned a few months ago, but thanks to spaced repetition it was still fairly accessible in my brain!: There are \({19 \choose 5}\) ways to select the members of the winning team from all 19 colleagues. There are \({15 \choose 5}\) ways to select the winning team without picking any Peter44 If we restrict the valid candidate pool to only those whose names are not Peter, there are 15 colleagues to choose from.. Thus, the probability that Peter is in the winning team is \[1 - {15 \choose 5} \bigg/ {19 \choose 5} = 74 \%.\]

        It was a fairly good guess!

      • 37signals LLCProgramming types and mindsets

        One of the longest running schisms in programming is that of static vs dynamic typing. I've heard a million arguments from both sides throughout my entire career, but seen very few of them ever convinced anyone of anything. As rationalizations masquerading as reason rarely do in matters of faith. The rider will always justify the way of the elephant.

      • Dr Werner VogelsMonoliths are not dinosaurs

        A great example can be found in two insightful blog posts written by Prime Video’s engineering teams. The first describes how Thursday Night Football live streaming is built around a distributed workflow architecture. The second is a recent post that dives into the architecture of their stream monitoring tool, and how their experience and analysis drove them to implement it as a monolithic architecture. There is no one-size-fits-all. We always urge our engineers to find the best solution, and no particular architectural style is mandated. If you hire the best engineers, you should trust them to make the best decisions.

      • Matt MightHello, Perceptron: An introduction to artificial neural networks

        The purpose of this article is to give programmers without much exposure to machine learning an understanding of the key building block powering generative AI: the artificial neuron.

      • 37signals LLCEscaping creative downturns

        If I'm stuck in a creative downturn, there's usually only one remedy: keep going. That is, accept the downturn, but continue to stare at the computer, waiting for it to pass. While staring at the computer, there's room for menial and managerial tasks put aside during more inspired times. Checking up on things, getting back to people, and reading copious amount of [Internet]. But it's still a creative deadzone.

  • Leftovers



Recent Techrights' Posts

Microsoft FakeHub: Identity Theft in Microsoft GitHub (Microsoft Won't Bother Addressing It; It Gives a False Impression of Adoption by GNU/Linux Veterans)
This is the same company that kept intact deleted accounts and counted them as if they're live and active (to hide the gradual abandonment and demise of the "hub")
Microsoft Tries to Force People Into Vista 11 by Stopping Vista 10 Patching, Herding Them Into TPMdom
It's backfiring
CyberShow Blog Upgraded, RSS Feed Added
CyberShow Blog has just had somewhat of a facelift
[Meme] The Microsoft Syndrome
Typical Microsoftism
 
Last Day of 2024 Was Spent by Brittany Day Publishing Only Fake 'Articles' (LLM Slop) About "Linux", Joined by Serial Slopper Brian Fagioli
Not even a holiday was enough to stop Day from "spamming" the Web with fake 'articles' (LLM slop) about "Linux"
Gemini Links 01/01/2025: Looking Back at 2024 and Happy 2025
Links for the day
Addendum: What the Software Freedom Law Center (SFLC) Really Is
Not serum free light chains (SFLC)
Sitting on a Mountain of Money (Almost 8 Million Dollars) is "Pro Bono"
Does the general public realise what SFC is?
Software Freedom Conservancy Inc (SFC) Lost Revenue and Also Got Rid of "Senior Director of Diversity and Inclusion" (Sage A Sharp, Formerly Known as Sarah Sharp, Who Ran an Ill-Spirited Campaign Against Linus Torvalds, Theodore Tso, and Other Prominent Linux Developers)
Not much needs to be said; a little needs to be shown (from an authoritative source, the IRS)
In Operating Systems, Google Was the Biggest Winner in 2024
Nevertheless, 10% of the managers are to be laid off shortly (after a leak led to confirmation by the CEO)
FSF-EEE (Colonial Splinter Group Based in Germany) Promotes Microsoft
New and misleading
Did GAFAM or IBM 'Downgrade' Pensions to 'Insurance' (Which Can be Denied)?
'Insurance' does not mean what it may sound like
Gemini Protocol Continued to Grow in 2024
it's no longer hosted from home
GNU/Linux Gained About 0.5% Last Year, According to StatCounter
2024 ended with "proper" GNU/Linux at +0.4%, ChromeOS at +0.1% (based on statCounter/StatCounter)
Geoffrey Knauth, FSF President and Treasurer, Comments on the FSF Raising Over $300,000
Now almost $304,000
Links 01/01/2025: Whistleblowers Shunned, EU/Germany Blasts Twitter (X, MElon) Interference
Links for the day
Mother of OpenAI Whistleblower Says Her Son Was Murdered (He Accused OpenAI of Copyright Violations at a Massive Scale, OpenAI is Running Out of Money That It Borrowed)
"Mother of OpenAI Whistleblower Alleges He Was Murdered, Says There Were Signs of Struggle"
Housekeeping and Productivity
The less we tinker with those things (system administration tasks), the more we can write and curate links
The Engineering Side in 2024: A Look Back, Taking Stock
uptime was somewhere around 99.95%
Dr. Andy Farnell Nominates Gromit the Dog "as an Unlikely Hacker Hero."
The world needs more decent engineers
The Free Software Foundation's (FSF) Holiday Fund-Raising Campaign Reaches About $303,000
in some parts of the US it's still 2024
Gemini Links 01/01/2025: Reflecting on 2024 and FSMs
Links for the day
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Tuesday, December 31, 2024
IRC logs for Tuesday, December 31, 2024
Links 31/12/2024: Another Jeju Air Plane Has Severe Landing Gear Issue (Cannot Blame Birds Anymore), Turku Quits Twitter/X
Links for the day
2025 Coming. "Lawsuits are temporary. Glory is forever. Go public."
another promising year for us
Free Software Foundation (FSF) Raises about $50,000 After Saying We Should Put Pressure on Microsoft, Might Exceed $300,000 in Total Before 2025 (Boston Time)
FSF fund-raiser now at 292k US dollars. Spectacular growth, rising at a pace of about $20k per day!
Brittany Day Unleashes Microsoft Propaganda About Linux, Likely Generated by Microsoft LLM to Strategically Googlebomb a Topic
Yes, it's definitely LLM slop
Gemini Links 31/12/2024: Default Apps 2024 and Google News RSS Woes
Links for the day
Links 31/12/2024: 'Open'AI Has Run Out of Money Again, Venezuela Fines TikTok, Germany Warns X/Twitter Over Election Interference, Google Search Takedowns Out of Control
Links for the day
Gemini Links 31/12/2024: Google's Evil and VF-1 1.0.0 is Out
Links for the day
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Monday, December 30, 2024
IRC logs for Monday, December 30, 2024
Links 30/12/2024: Arrest Warrant for South Korean President Yoon, Experts Contest 'Bird Strike' Narrative for Crash Blame
Links for the day
[Meme] Systemd-Max
Why is everything - even aviation - getting so much worse?
Links 30/12/2024: Bad Year, Sxmo/PostmarketOs, and Gemlog/Tinylog
Links for the day
Just a hobby, it won't be big and professional like GNU. It'll be controlled by Microsoft due to administrative neglect.
Get well soon, Linux
Free Software Foundation (FSF) Raised About 20,000 Dollars Today
FSF funds now near 275k dollars. Growing VERY fast today.
Massive Gains for GNU/Linux in Australia This Year
Windows lost clout and Android was the biggest gainer
New IRS Filing Shows That the Most Dominant Company in the Linux Foundation is Microsoft
The 'Linux' Foundation devotes only about 2% of its budget to Linux (skeleton crew). It invests a lot more money in the Ponzi scheme of Microsoft and Scam Altman.
[Meme] Who's the Linux Boss?
Bill Gates is a lot more interesting anyway
In 2024, Under Linux Foundation Management, Linux.com Produced and Published Only 5 Articles
Remember when Linux.com had 3-4 original articles per day?
Trying to Informally Police or at Least Report LLM Slop About "Linux" (and Several Related Topics)
Do they deserve public humiliation/condemnation? Yes, as that might be the only way to nip this in the bud
Links 30/12/2024: Fentanylware (TikTok) Concerns and Aftermath of Cut Cables
Links for the day
A Free Software Foundation (FSF) Led by Dr. Richard Stallman Can Still Raise a Lot of Money
Give people more time (e.g. until end of January) and maybe hit the target
Is Microsoft's Plundering of Africa Coming to an End?
Microsoft had many layoffs in Africa this year
Microsoft Windows Down From 23% to 20% This Year in Asia (Android Up From 54% to Almost 60%)
Less and less of Windows, more of the Linux-powered Android
15 Years Ago Mozilla Firefox Had Over 50% of the Slovakian Market, Now Google's Chrome Has Over 70%
Peaked at 72.4% earlier this year
Remembering When Photography Meant Realistic Captures of Reality, Not "Hey Hi" (AI) and 'Instagrammed' (Filtered, Manipulated)
Fake pictures predate the "hey hi" hype; Instagram in particular was full of these
Good Gains for Android for GNU/Linux in New Zealand This Year
Notice that GNU/Linux rose to its highest point (this month)
2024 a Record Year for Android (Almost 50% "Market Share"), Which is Now Bigger in Europe Than Microsoft Windows
a look at Europe
Apple's Main Stronghold (North America) at Risk From GNU/Linux
Apple had several rounds of layoffs in the US this year
Wishing for a Wikileaks Renaissance in 2025
as a site that facilitates whistleblowers, hosting large leaks
statCounter: Microsoft Windows Down a Percent This Year in South America, GNU/Linux Up to 3.2%
Microsoft down, freedom up
[Meme] Getting Banned From Social Control Media 2 Days or Two Weeks Before Leaving Office
Seems like interference using dinners with an insurrectionist
The Threat of Googlebombing and LLMs
There are many Carters, but search engines and LLMs lack the "logic" (or common sense) to tell the difference
Social Control Media (Not Just TikTok) is a "Modern Challenge" to Democracy
Society is worse off with Social Control Networks
Jimmy Carter on Globalisation of "Tech"
Carter's legacy in the area of science (and technology)
IBM's Bad Leadership is a Threat to GNU/Linux
We worry that since Red Hat controls so much of the GNU/Linux stack difficulties at IBM will result in divestment
The True Importance of Diversification
Monopoly or monoculture breed fragility
Putting Some Eggs in the Geminispace Basket
Do not bet on the future of the Web
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Sunday, December 29, 2024
IRC logs for Sunday, December 29, 2024
Gemini Links 30/12/2024: Countdown to New Year, Tinylogging, and LLM Hype
Links for the day