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

[Meme] Smart Alec Poettering
How many Microsofters can the Debian Project withstand?
Getting Rid of Microsoft Does Not Go Far Enough
Microsoft already has many problems. One day Microsoft won't exist anymore. But that does not guarantee users' freedom.
Alyssa Rosenzweig's LibrePlanet Talk About Freeing the Apple GPU
Alyssa Rosenzweig is the graphics witch behind the reverse-engineered drivers for the Apple GPU. She previously led Panfrost, the free drivers for Arm Mali GPUs powering devices like the Pinebook Pro. She graduated in 2023 with a Computer Science degree from the University of Toronto and now writes free software full-time.
Links 30/06/2024: LLMs Under Fire and Dictatorship of the Old
Links for the day
[Meme] Walking Outside the Guardrails of the Walled Gardens Built by Monopolies
So-called "advertiser-unfriendly" material was never a problem for Wikileaks
This War Crime Footage, Nothing Political Per Se, Is What They Made Julian Assange Plead Guilty To (War Criminals Not Convicted, Only Those Who Expose Them)
Wikileaks' Julian Assange: Exposing the US Military Crimes
20 Years Passed, Let's Go Even Faster Now
We are hoping to bring more original stories
 
Not Just Slow News But Also Late News (Julian Assange Landing in Thailand)
Why did AP take so long (nearly a week) to release these?
Eko K. A. Owen, New Outreach and Communications Coordinator for the FSF
Nice to see many new additions to the FSF's team
Microsoft Has Slaves and Enablers, Not Partners
Obligatory meme too
Windows in Åland Islands: From 100% to Less Than Half
Åland Islands lost the sense of urgency to move to GNU/Linux
Tobias Platen Covered Freedom-To-Play Games in LibrePlanet 2024
Freedom-To-Play games using Taler
[Meme] Opening a 'Webapp' With 'Only' 4 GB of RAM
Until 2020 none of my PCs ever had more than 2 GB of RAM
Destination 'Five Percent'
We reckon GNU/Linux can break the 5% barrier some time by the end of this year, even without counting Chromebooks
A Crisis of Online Journalism
Almost a week ago a journalist was forced to plead guilty for an act of journalism
Germany One of Many Countries Where Microsoft's Bing Lost Market Share After All That LLM Nonsense (Bing Chat and Further Rebrands/Renames)
openai.com traffic plunged 60% last month
Microsoft’s Latest Antitrust Scrutiny
4 new stories
Microsoft Layoffs, Mass Plagiarism, and More
outrage included
GNU/Linux Climbed 0.25% This Month (in statCounter)
Around midday on Tuesday we'll start seeing preliminary data for July
Ilya Gulko Introduces Pollyanna
"Pollyanna is a web framework that makes it easy to create your own libre social space, such as a social network or blog."
'FSFE': Underage Labour, GAFAM Fronting, and Identity Theft to Undermine the FSF's Current Fundraiser
looking to raise funds at the same time as the FSF
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Saturday, June 29, 2024
IRC logs for Saturday, June 29, 2024
Links 29/06/2024: Astronauts at Risk, Ukraine Updates
Links for the day
Fedora and Red Hat Leftovers
mostly redhat.com
Microsoft is Now Googlebombing or Spamming 'Open Source' and 'Linux' to Promote Proprietary Surveillance, Azure
Notice the title and the image, what's being promoted etc.
Seychelles: GNU/Linux Doing OK
Seychelles cannot be considered poor
Gemini Protocol Isn't Even Remotely "Dead"
"Lupa knows of 505,000 (half a million!) working Gemini URLs at present, up from about 425,000 this time last year"
About 10 New Free Software Foundation (FSF) Members Per Day
The total changed from 46 to 47 while typing the article
Vista 11 Adoption Unusually Low in Germany and It's Going Down, Not Up
This is not happening only in Germany
Kevin Korte on Computers Being Allowed to Make Decisions Based on Cryptic Algorithms and Proprietary/Secret Data
It uses buzzwords where none are needed
[Meme] Garbage In, Garbage Out (linuxsecurity.com)
It is neither Linux nor security, just chatbot-generated slop
Microsoft-Invaded CISA Spreads Anti-Free Software FUD (as If Proprietary Software Has No Memory Safety Issues), Brittany Day Uses Chatbots to Amplify and Permutate the Microsoft FUD
linuxsecurity.com became an anti-Linux spam site
Microsoft Laying Off Staff in an Act of Retaliation and Union-Busting
retaliatory layoffs at Microsoft
Gemini Links 29/06/2024: Content Drowning in 'Goo' and LLM Slop
Links for the day
Windows Lost Almost 92% Market Share in Egypt
From over 99% to just over 7%
In Ecuador, GNU/Linux Adoption Surged From Under 1% to Over 4% in About 3 Years
Not even counting Chromebooks
LibrePlanet: Cultivating Backups (of Recordings)
an appeal to recover some of these talks
Microsoft/Windows Machines Are Turned Off (or Windows Deleted/Decommissioned) in Web Servers, as the "Market Share" Collapse Continues
Taking full history into account, this is a decrease of over 90% in some cases
Corwin Brust Hosting Freedom: A Behind-the-scenes Tour With the GNU Savannah Hackers
"the "smiling faces" behind it."
Android at 90% or More in Chad
Windows below 2%
David Wilson: Cultivating a Welcoming Free Software Community That Lasts
"a feeling of shared ownership for all users."
Julian Assange Might Continue Wikileaks, But Certainly Not Yet (Recovery Time Needed)
And probably at a symbolic capacity only
Bringing in 12 Santas and Taking 13 Out (Old Interview With Julian Assange)
Julian Assange's life inside the Ecuadorian embassy
Neil Plotnick on GNU/Linux in the High School Classroom
uploaded to the LibrePlanet instance of MediaGoblin
Asia Appears to be Fastest to Adopt GNU/Linux
the home of a considerable majority of the world's population
Alexandre Oliva's LibrePlanet 2024 Talk About "Software Enshittification"
in spite of technical difficulties encountered while recording
What They Used to Do With Mono They Now Do With Systemd (Lower and Deeper Down Than Userspace)
Now we have a project started primarily by Red Hat (and managed by Microsoft GitHub, which is proprietary) being managed by Microsoft and primarily serving Microsoft and IBM
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Friday, June 28, 2024
IRC logs for Friday, June 28, 2024
Links 28/06/2024: Kangaroo Courts and Patents Spam, EFF Still Fighting for CPC's TikTok (a Digital Weapon)
Links for the day
Links 28/06/2024: Overton window and Polarization
Links for the day
[Meme] In 50 Years...
Microsoft's Vista 11 will take 50 years to be fully adopted
Only About 1 in 8 Russian Windows Users is Using Vista 11
it looks like over the past 12 months Vista 11 hardly grew and it remains very low at around 12% of Windows usage in Russia
Links 28/06/2024: More Attacks on the Press, More Censorship in Russia
Links for the day
Gemini Links 28/06/2024: Christmas Prematurely, Self-hosting
Links for the day
IBM: So Long, Suckers. Your Free OS is Now Proprietary. Pay IBM or Else.
almost exactly a year after turning RHEL into proprietary software
Vista 11 is Doomed and Despite Lack of Adoption Microsoft Already Speaks of Vapourware ("12")
"Microsoft has pulled a Windows 11 update after users reported boot loops and startup failures."
ChromeOS Reaches Highest Share in Years at the World's Most Populous Nation, Windows Now at All-Time Low of 13%
We're talking about India today
[Video] "It Is Incredible That Julian Assange Survives"
There was a positive and mutual relationship between Wikileaks and Dr Jill Stein
Never Assume That Because the Law Exists the Powerful Will Follow the Law
Who's going to hold them accountable now?
Nearly a Month Has Passed and Nobody at the Debian Project Even Attempted to Explain What Seems Like Back-dooring of Debian (and Hundreds of Distros That Are Debian-Derived)
I can cynically guess that only matters when a user with a Chinese name does it
[Video] Julian Assange Explains Wikileaks' Logistics
predating indefinite detention
IBM Was Never the "Good Guy", Just a Self-Serving and Opportunistic Money- and Power-Hungry Monopolist, Living Off of Taxpayers' Money (Government Contracts)
The Nazi Party of Germany was its second-biggest client at one point and now it's looking to profit from the work of slaves
"I Hated Working at IBM. They Were the Most Unfriendly People."
Don't forget what Watson the son did to a poor woman on a plane
State of the News (and Depletion of Journalism Online, Not Just Offline)
Newspapers are not coming back and the Web is not coming back either
GNU/Linux Consolidates in North America
Android rising a lot this year, too
[Meme] More Monopolies Granted While Patent Examiners Die (Overworking for Less Compensation)
Work more; Get less
Staff Union of the EPO (SUEPO) is Taking the New Pension Scheme (NPS) to an International Tribunal (ILOAT)
SUEPO wants more EPO staff to participate in collective action
Stella Assange and the Legal Team Speak to the Media a Day After WikiLeaks Founder Julian Assange Arrives in Australia
Published yesterday by a number of mainstream publishers
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Thursday, June 27, 2024
IRC logs for Thursday, June 27, 2024
RIP Daniel Bristot de Oliveira, Red Hat death
Reprinted with permission from Daniel Pocock