Sabtu, 12 September 2026

This Tiny Fingerprint Key Unlocks Linux, Approves SSH and AI Agents

Immurok review

A laptop fingerprint sensor unlocks the laptop and usually stops there. Immurok wants to do quite a bit more than that.

It is a tiny wireless box that can unlock your desktop session, approve a sudo command, authenticate via polkit, log you into a server over SSH, generate TOTP codes for 2FA, and put a physical touch in front of an AI coding agent. And it does all of that with the same finger, over Bluetooth.

The good news is that the core features work. The less good news is that on Linux, getting there was not as simple as touching a sensor. During my testing I ran into bugs, missing prompts, confusing behaviour, and one timing issue that made the initial setup a little challenging. But once things were setup, the device worked smooth and that's what matters, right?

Let's take a detailed look at what Immurok gets right, what still needs work, and whether this little box could earn a place on your desk.

📋
Immurok supplied this unit for review. They had no control over my conclusions. Also note that this is a pre-release unit and the software is changing quickly, so the version that ships to backers is likely to behave differently. Another thing is that this is a usage review, not an independent audit of the hardware, firmware, or cryptography.

I also have a video review of Immurok, if you prefer watching over reading.

What Immurok actually does

At its simplest, Immurok is a wireless fingerprint reader for a desktop or a laptop that does not already have one. But the feature list goes well beyond unlocking a screen.

You can use it to unlock an existing desktop session. Through Linux PAM integration, it can approve sudo and other supported authentication prompts such as polkit. It can generate and store SSH private keys on the device itself, and it can release a TOTP code only after it recognises your fingerprint.

Immurok features

Then there is the more unusual usage: AI-agent approval. The idea is that a coding agent can prepare a privileged command, an SSH operation, or a request for a secret, but it cannot complete the protected action until you physically touch the sensor.

According to Immurok, fingerprint templates and private keys stay on the device. There is no cloud account and no telemetry. Pairing uses P-256 ECDH with HMAC-SHA256, and authentication responses are cryptographically signed.

Those are the company's security claims, and as I said above, this review tests how the device behaves in use rather than auditing that cryptography.

The hardware

The hardware makes a good first impression. Here is what you are getting.

Spec Detail
Processor RISC-V, up to 60 MHz
Connectivity Bluetooth Low Energy
Sensor Capacitive fingerprint, under 500 ms claimed recognition
Dimensions 44 x 44 mm, 14.2 mm thick
Weight ~40 g
Body CNC aluminium
Battery 110 mAh, USB-C charging
Standby draw ~50 µA claimed
Fingerprint slots Up to 5 authentication fingerprints

There are controls at the back for power and for actions such as pairing or confirmation. The silver finish, rounded corners, and proportions make it look like a tiny Mac mini. That is not a complaint and even works well for people in the Apple ecosystem. It is neat enough to sit on a desk without looking like a random security dongle.

Immurok from back

My review box contained only the device. There was not even a USB cable and I am not complaining. The battery life is pretty good, so charge is needed like once a month and type C cable is in every household, I presume.

Immurok unbox

Immurok claims more than a month of normal use per charge. When I started testing, the Linux TUI showed 84% battery on the first run. After roughly a week, it was at 78%, so about 6 percentage points in that period. That looks promising for the month-long claim, but one week is not enough to confirm it, especially since battery-percentage readings are not always perfectly linear.

Installing on Linux means building it yourself

Windows and macOS get graphical applications. On Linux, the version I tested used a Rust daemon, a command-line client, and a terminal user interface. There was no equivalent graphical management app and no easy-to-install binary as well.

On my Ubuntu 26.04, I first installed the required development and runtime packages, then Rust through Rustup. The make check-deps command was helpful here, because it listed the missing components instead of making me discover them one build error at a time.

Immurok linux install instructions
Immurok Linux app needs to be built from source code

Then came the first Rust build, with around 200 crates to download and compile. It kept the CPU busy and produced plenty of warnings, though these were warnings and not compilation failures.

After that, make install was fairly quick. It installed the daemon, the command-line tools, the PAM module, the authentication helper, and the system integration, and the user-level daemon was already running when the install finished.

Immurok Linux app installed

For an experienced Linux user, this is all doable. But for a device that presents itself as a simple replacement for typing passwords, it is too much friction. Before this ships to general users, Linux needs straightforward packages for the supported distributions and a much clearer first-run flow.

Pairing: connected is not the same as paired

The first pairing attempt immediately showed how early the software was.

I powered on the device and tried pairing from the TUI. It said the device was not connected. The CLI told me to press the device button within 30 seconds, but then failed immediately. It did not wait for 30 seconds at all.

Immurok failed initially

What eventually worked was connecting Immurok manually through Ubuntu's Bluetooth settings first. Once the operating system showed it as connected, I went back to the Immurok TUI, pressed p, and then pressed the button on the device. It exchanged keys and reported that pairing had succeeded.

Immurok connection succeeded

So there are two separate states here: connected over Bluetooth, and paired inside Immurok. That distinction may be technically reasonable, but the application never explained the required sequence when I actually needed it.

The product should walk you through this step by step, including the LED state, the operating-system connection, the Immurok pairing action, and the button press.

Enrolling fingerprints

Once the device was connected and paired, enrolling the first fingerprint went more smoothly.

In the TUI, I pressed e, placed my finger on the sensor, lifted it, and repeated. My test firmware asked for 12 captures before it enrolled the finger in slot zero.

Immurok fingerprint enrol

The device supports up to 5 normal authentication fingerprints, and when you add more after the first one, an existing authorised finger has to approve the new enrolment. That is a sensible security requirement, but again, it needs to be stated clearly on screen.

The command line interface is finiky at times. At one point, trying to enrol again failed because the fingerprint was already present, and a deletion attempt simply failed without explaining why.

📋
This is a recurring pattern in the CLI tool. The device often knows exactly what it needs from you, but the software does not always tell you.

The bug that stopped sudo from working

With a fingerprint enrolled, I tested sudo apt update. Nothing happened. Touching the sensor did not authenticate me, even though the fingerprint was clearly there.

The problem turned out to be a race in the Linux daemon. When the Bluetooth session began, the daemon immediately asked the device for its status. But a Python notification helper was still starting up its D-Bus connection. On my machine, that helper took about 5.2 seconds to become ready, while the status request timed out after 5 seconds. That tiny difference left the daemon with no device status for the rest of the session, which showed up as NO_STATUS.

Since I had installed Claude for testing the agent specific features of Immurok, I let it handle the issue and it fixed that by increasing the limit to 15 seconds.

After rebuilding and installing the patched version, sudo authentication worked. I ran the command, touched the sensor, and it continued without asking me to type the account password.

Immurok sudo fingerprint

It is a good thing that the code is open enough to inspect and fix. But this was also a basic authentication path failing because one helper started a fraction of a second slower than expected. These things should be fixed before the mass release.

📋
Update: This bug has been fixed by Immurok in a recent update.
Immurok Polkit Authentication

Unlocking Ubuntu, and why fallback matters

With the patched client, Immurok could unlock an Ubuntu session that I had already logged into and then locked. I touched the sensor and the desktop opened.

It did not work at the very first login screen after powering on the computer, though. That is intentional behavior applicable to macOS and Windows too. The user-level service is available for unlocking an existing session, but the initial login still needs the normal account password. This distinction matters, because "screen unlock" can easily sound like "replace your password at every login," and they are not the same thing.

The fallback behaviour was good. When I disabled Bluetooth or disconnected Immurok, sudo and login did not leave me waiting for a fingerprint device that was no longer there. They went straight to the usual password field. That is essential. A convenience device should never turn a temporary Bluetooth glitch or a flat battery into a lockout.

SSH keys are the highlight

SSH is where Immurok starts to become more interesting than an ordinary fingerprint reader.

ssh access via Immurok

It can generate an ECDSA P-256 SSH key on the device. The private key stays there, and you export only the public key to place in the remote server's authorized_keys file.

ECDSA is a practical choice here because it can deliver security comparable to RSA using much smaller keys. That means less storage, less data to transfer, and lower processing overhead, making it suitable for a small battery-powered device.

The first time I generated a key through the CLI (not the TUI), it appeared to just stop. The missing piece of information was that Immurok was waiting for my fingerprint authorization. There was no prompt telling me to touch the sensor, and no useful feedback when I did. I only knew what to try because I had already been digging into the behaviour. Once I touched the sensor, the key was generated.

If an action requires physical authentication, the interface has to say so. The TUI was better here. When I generated another key there, it explicitly told me to touch the sensor to authorise the action, and the key then appeared in the next slot.

I exported the public key, added it to my Raspberry Pi Pironman Max, and enabled Immurok's SSH takeover. This adds the Immurok agent socket as the SSH IdentityAgent, which gives the device-backed keys priority.

When I connected to the Pi, Immurok asked for my fingerprint, I touched the sensor, and the SSH login succeeded.

Importantly, my normal SSH setup was not destroyed. Existing keys on the computer stayed available as a fallback, so when I connected to a server that did not have the Immurok public key, SSH just continued using my existing key.

SSH key fallback with Immurok

That is the right approach. You can introduce Immurok gradually instead of forcing every server to change on day one.

You can delete keys through the TUI after fingerprint approval, or through the CLI, though the CLI again failed to show the required fingerprint instruction during deletion. You can also import an existing private key onto the device, but with two limitations.

Import was only available through the CLI in my tested version, and it accepted only ECDSA P-256 keys. If your existing key is Ed25519, RSA, or another format, you cannot simply move it over to Immurok.

📋
After a firmware update, I can now see a dual-host option in the Linux TUI, which is an important change because earlier notes described this workflow as unfinished. But seeing the option is not the same as testing it. I have not yet confirmed that a second computer can pair successfully, or that the keys already stored on Immurok can then be used from that second host. For now, dual-host support is visible but the full cross-host SSH workflow is unverified.

TOTP just works

Immurok can also hold TOTP secrets, and this was one of the smoother experiences.

I added a GitHub TOTP entry, went into Immurok TUI, and then requested a code. Fetching the code required another fingerprint touch. I entered that code into GitHub, and it worked.

GitHub TOTP with Immurok

This is a simple feature, but a useful one. The TOTP seed is not sitting in a general desktop authenticator, and someone using your unlocked computer still needs your fingerprint before Immurok will release a code. As always, recovery codes still matter. If the device is lost, damaged, discharged, or reset, you need another way into the account.

Putting a fingerprint in front of an AI agent

The most distinctive pitch is using Immurok as a human-in-the-loop control for AI coding agents.

I installed the Immurok plugin for Claude and activated it for the project. Immurok also provides an imk wrapper that can launch a command in agent mode. In one test, the agent tried to connect to my Raspberry Pi over SSH, Immurok requested fingerprint verification, and after I touched the sensor, the agent connected to the Pi.

Immurok-Ai-plugin

The idea is that even if the computer is unlocked, the agent cannot complete a protected wrapped action while you are away from the desk.

But there is an important limitation: this is only a gate if the action actually goes through the gate. Project instructions may tell an agent to use imk, and a plugin may make that tool available, but an ordinary command can still take the normal route if the wrapper is bypassed. My earlier Git push did exactly that, because it was not wrapped.

So this is not automatic enforcement just because a file tells the agent what to do. A serious setup has to arrange for sensitive operations to always run through imk run --agent, or to enforce the protected path at a lower level. Immurok can provide a valuable physical approval mechanism. It cannot secure a workflow that still leaves an unprotected path open right beside it.

📋
My recordings do not include a complete, successful API-secret test. The intended design is to inject a secret only into the approved child process, without placing it in the agent's conversation. That is a good idea, but I am not claiming that part as fully tested here.

Things that could be better

Even with the core features working smoothly after the setup, a few rough edges are worth calling out clearly. None of these are dealbreakers on their own, but together they are the difference between "promising" and "ready."

The TUI and CLI need serious polish

The Linux TUI brings together the dashboard, keys, PAM integration, logs, firmware updates, and settings. It shows connection state and battery percentage, and for most tasks it communicates better than the CLI does.

The CLI version lacks tab completion, which made nested commands harder to discover. Pairing claimed it would wait and then failed. Failed enrolment and deletion did not give useful explanations, and SSH import lived only in the CLI while other actions were easier to follow in the TUI.

Documentation is not optional for a tool like this. Immurok touches PAM, Bluetooth, SSH configuration, private keys, TOTP, etc. The GitHub README has details, but buyers need a stable setup guide, clear in-app prompts.

The log file that never stops growing

There is one smaller issue that gets bigger with time. The daemon continuously writes to ~/.immurok/logs.txt. After about a week, mine had reached roughly 4 MB. After 2 weeks, it is 15 MB.

Immurok log file size issue

At a steady rate, that is closer to 200 MB a year than multiple gigabytes. But the real problem is that the file looks unbounded, and a persistent reconnect loop or a recurring failure could make it grow much faster. The application needs log rotation with a sensible size and retention limit.

On Linux, sending routine logs to the journal would make far more sense than quietly maintaining an ever-growing private text file.

Is Immurok worth it?

After more than a week, I am more than happy to use Immurok as a daily driver. The trouble was mostly at the initial setup stage, and I am way past that now.

I liked the fingerprint reader on my Dell XPS in the past. My present laptop, Asus Zenbook, doesn't have one, so the Immurok fingerprint reader complements it very well.

Immurok fingerprint

The hardware is attractive, compact, and useful, and the core features work well. I used a fingerprint to approve sudo, unlock an existing Ubuntu session, authenticate an SSH connection to a Raspberry Pi, retrieve a working GitHub TOTP code, and approve an agent-run SSH action.

I also like the fallback design. A disconnected device did not block password login, and servers that were not configured for the Immurok key kept working with my existing SSH keys.

The hardware works great and the software on Linux needs upgrade. Source code build should not be forced onto users in 2026. The CLI needs to be better at showing the appropriate feedback message.

I have already seen two firmware updates and there is a software update already on their repo. So, it's just a matter for software updates and the device would become suitable for even the beginners.

So, if you think that the device suits your workflow and it doesn't dent your budget, you can opt for Immurok.

✅ Real, working fingerprint approval for sudo, polkit, SSH, TOTP, and screen unlock
✅ Private keys and fingerprint data stay on the device, with sensible password and key fallback
✅ Compact, well-built aluminium hardware with promising battery life
❎ Linux install means building from source; there is no packaged app yet
❎ The CLI is buggy, TUI is okay. Docs need to be included. Software update should fix the issue.

Getting Immurok fingerprint key

At the time of writing this article, Immurok is still in crowdfunding. It is available through Kickstarter for $59 US, with a stated retail price of $69 and estimated delivery in November 2026.

Please readhe their terms and conditions on shipping, custom fee and return policy.

I tested the pre-release review unit and the software is already changing quickly. The version shipping to backers is still a few months away, so there is time for the Linux experience to improve before customers receive the device. I do hope the installation, pairing, prompts, documentation, and reliability are all much better by November.

For now, I am happy to have Immurok on my desk.



from It's FOSS https://ift.tt/tD79U1v
via IFTTT

Jumat, 11 September 2026

Bottles' Founder Has Managed to Run Microsoft 365 on Linux

ms word running on a linux system via bottles (left), the bottles app logo (right)

Mirko Brombin, the creator of Bottles, has got Microsoft 365 running on Linux. His posts on X showcase an installation that completes on a Windows 10 or 11 Wine prefix, signs in with his existing license, and launches at least one editor.

He achieved this using two things, an unreleased version of Soda and Bottles 67.4. If you remember, Soda is a Wine-based runner that facilitates easy running of Windows games and applications.

On first glance, what he posted might look like a developer-focused log, but these changes are the foundation of what full Microsoft 365 support via Bottles will one day hopefully look like.

The results of his work

microsoft word running on a linux system via bottles
Source: Mirko Brombin

Mirko was able to login into the MS 365 app using his credentials and was able to launch MS Word and use it. Of course that's not the only thing he got working; since two-factor authentication passed, the suite detected his license, and OneDrive integration was functional.

The memory footprint of the office suite was less than 500MB, so this should be light on your Linux system.

The build he is currently testing is 2608 (20326.20144), which he says is the last build the installer will offer for Windows 10 and 11. And before you get all hyped up, wanting to try this out on your computer, know that you will have to wait.

Soda 11.0-11 (error 404 for now) has no release yet, and the component catalog that ships with Bottles 67.4 stops at Soda 11.0-10. Even the long-standing community request for a Microsoft Office installer in Bottles is still open.

Suggested Read 📖: Bottles offers hope for running Windows-only software on ARM devices.

Do we need Microsoft 365 on Linux?

Till date, there's not been an official Linux desktop build of Microsoft 365, and seeing how Microsoft currently operates, I don't expect one to appear anytime soon.

What's been achieved here is remarkable. Once fully implemented, this will help draw in people into Linux, as many shudder at the thought of switching to the platform because their preferred office suite doesn't work here.

For context, CodeWeavers sells a paid Wine product, CrossOver, and its database still lists Microsoft Office 365 on Linux as "Installs, Will Not Run," last tested against CrossOver 26.3.0.

Which is why I hope the fix travels further than Bottles. Wine sits beneath every one of these projects, including Soda. So a patch that lands upstream reaches all of them at once, and you would not need a particular runner to get Office working.


💬 If Mirko gets it all working, do you think other projects will start integrating his work?



from It's FOSS https://ift.tt/LbTdh39
via IFTTT

Kamis, 10 September 2026

Linux Kernel is Getting Ready to Purge 55,00 Lines of Old 32-bit Arm Platform Code

a penguin is working on a laptop, and two floating illustrations showing an arm chip and a cross sign are beside it

A few days ago, thirteen patches were sent to the kernel mailing lists that are looking to delete some of the 32-bit Arm platform code that the upcoming Linux 7.3 release cycle has marked as deprecated.

While none of them have been merged yet, Arnd Bergmann, who has been trying to retire this code for years now, has finally made some good progress.

His suggestion is to do these removals in Linux 7.4, which is supposed to land sometime between December 2026 and January 2027, with the CPU support getting dropped a release after that.

The plan has been around for some time; the earlier proposition was removal in 2025 or 2026, after the matching LTS kernel shipped. Arnd opened his July thread by apologizing for letting the earlier attempt remain idle for almost two years.

What he calls cleaning out the deprecated platform code now runs to about 300 patches. This first series removes just the arch/arm/mach-* code and the Kconfig bits that depend on it.

What's going away

These will sound like a collection of 1990s and 2000s hardware that used to be relevant but aren't anymore.

The platforms losing support are the SA1100 boards, the Acorn RiscPC, Footbridge, the legacy PXA board files, and the Orion, Dove, and MV78xx0 boards.

The same series also takes out the OMAP24xx, i.MX31, and no-MMU i.MX chips, LPC18xx and Axxia, along with the STM32F4, F7 and H7 microcontrollers, Versatile MPS2, and AT91 SAMV7.

Of course, this doesn't mean that these boards will suddenly stop working (stating the obvious, I know). Any one of the devices listed above just won't be able to run a mainline kernel from 7.4 or 7.5 onwards since the code that lets them boot is slated for deletion.

Another thing worth knowing is that in the same 7.3 cycle, Linux has gained support for other Arm-powered chips like Apple's M3 Pro, Max, and Ultra, Samsung's Exynos 1580, and Qualcomm's Shikra.

This shows the continuously shifting nature of the kernel, which has to regularly adapt to new hardware while also ditching old support that isn't used by many.

Linus has been here before

If you think about it, Linus Torvalds has been a strong proponent of removing such old code.

Back in 2022, he asked whether it was time for the i486 series of CPUs to be dropped from Linux, seeing that i386 was already gone in 2012. By 2025, Linus was saying that there was no real reason for anybody to waste their time developing for the platform.

So I anticipate that he will accept these removals, unless there are any shortcomings that have gone by unchecked.

Even so, old hardware has its advocates. People and enterprises do keep these machines running, and Arnd has left the window open for anyone who wants to argue against their removal before the drivers go.



from It's FOSS https://ift.tt/XHNV9Ed
via IFTTT

FOSS Weekly #26.37: Swiss Linux Move, Flyline, PPA Guide, Fedora Win Over Windows and More

Let's start with the good news. Switzerland is on track to kick out Microsoft across 3,000 workstations in its Federal Chancellery.

The Firefox Nova redesign lands for everyone in Firefox 157 on September 29, six months after it leaked. The version shipping is noticeably less aggressive than the March mockups.

And we have a robot pitting Fedora against Windows 11 on identical hardware. PhoneBuff ran the same real-world tasks on two Dell XPS 13s, and Fedora won six of eleven tests while Windows took one.

Bottles, the tool that makes running Windows software on Linux easier now has an experimental ARM64 build, delivered through cpak rather than Flatpak for now.

KDE is considering replacing the Gwenview image viewer with Photos, a proposed replacement that would perform better, be mobile-friendly, and offer a bunch of really cool features.

Elon Musk's X Corp sent out a cease-and-desist letter to Nitter, ordering them to shut down. Two weeks later, after legal advice, the project and at least one popular instance are back, with a proper announcement following soon.

This edition of FOSS Weekly is supported by, Bitwarden.

📣 Event alert

Join Bitwarden for the 7th annual Open Source Security Summit, a free, virtual event bringing together cybersecurity leaders, journalists, and the open source community for conversations on geopolitics, security culture, and protecting critical industries.

Featured speakers include:

- David Sanger, New York Times White House correspondent and author of New Cold Wars and The Perfect Weapon

- Joseph Menn, cybersecurity journalist and author of Cult of the Dead Cow

September 17, 2026 | 8-10 a.m. PDT • 11-1 p.m. EDT • 5-7 p.m. CEST

Register for FREE Here

🧠 What We’re Thinking About

Ikey Doherty, creator of Solus and AerynOS, has come out of retirement triggered by Omarchy's $13+ million funding and DHH's comments about nomadic people. His response is Barney, a Rust-based tool for building Linux distros from source, named after his son.

Despite the resistance and criticism, Omarchy keeps on growing. its userbase Only yesterday, cloud server provider Digital Ocean joined the Omacom foundation with $3 million donation.

The rise of Omarchy can be attributed to two things: built-in AI features and DHH's determination to make it work. Some people may not like either or both, but for now Omarchy is an unstoppable force.

🧮 Linux Tips, Tutorials, and Learnings

There was a time when PPA were the backbone of Ubuntu's app ecosystem. They are not as popular after Snaps, but you will still find software distributed through PPAs. I have written a detailed guide that has all the necessary information on using PPA.

Quick tip: if you often create similar types of documents, you should utilize the template feature in LibreOffice.

You might have never heard of GNU Readline, but it's a library included with your Linux installation that implements Bash's interactive command-line editing and various other features.

And seeing as we are on an open platform like Linux, this too can be customized! Flyline is a Rust-powered Readline replacement that brings intelligent suggestions, fuzzy search, syntax highlighting, and modern completion to Bash.

If that doesn't scratch your itch of trying something new, why not get started with NixOS? It's immutable nature, and package management ought to keep you occupied for a while.

Desktop Linux is mostly neglected by the industry but loved by the community. For the past 14 years, It's FOSS has been helping people use Linux on their personal computers. And we are now facing the existential threat from AI models stealing our content.

If you like what we do and would love to support our work, please become It's FOSS Plus member. It costs $49 a year (less than the cost of a McDonald's burger a month), and you get an ad-free reading experience with the satisfaction of helping the desktop Linux community. And there are also free Linux ebooks.

Join It's FOSS Plus

👷 AI, Homelab and Hardware Corner

FreeCORE is for NAS setups that are still stuck on TrueNAS CORE. While AI is clearly involved in development, you can still check it out.

Jellyfin has done away with its older version naming scheme, jumping straight from 10.11 to 12. The release also brings proper books and comics metadata without needing the Bookshelf plugin, and music recommendations can now pull from ListenBrainz listening data instead of relying on tags alone.

✨ Apps and Projects Highlights

I tested out an app after ages, and Privacy Notes was the one I went with. It's a markdown editor that does many things and even comes with an encrypted vault.

📽️ Videos for You

Angry IP Scanner is an open source tool that I have been using for the past 20+ years.

💡 Quick Handy Tip

In KDE Plasma, the panel uses "Icons-Only Task Manager" to show favorite windows and open windows. Right-click on it and select Configure.

In the behavior tab, set the "Clicking grouped task" option to "Shows large window previews" and apply the settings.

0:00
/0:09

Now, when you click on items with more than one window opened, you can get an overview-style screen that shows the opened windows of only those apps.

🎋 Fun in the FOSSverse

Since Omarchy is everywhere, how about testing your Omarchy knowledge in this quiz?

Yeah, Linux can sometimes be tricky. 🤭

ironic linux friendly meme

🗓️ Tech Trivia: On September 9, 1947, engineers working on Harvard’s Mark II computer discovered a real moth trapped in Relay #70, causing a malfunction. They taped the moth into the logbook, calling it the “first actual case of bug being found.”

🧑‍🤝‍🧑 From the Community: FOSSers are discussing the recent CERN move to opt for Debian instead of a Red Hat for their particle accelerator computers.



from It's FOSS https://ift.tt/R7TCeVA
via IFTTT

Omarchy Linux Quiz

Omarchy has gained so much popularity, and if you are one of the fans, how about you answer a few questions and we see if you really are a true Omarchy lover.

🚧
Some browsers block the JavaScript-based quiz units. Disable your ad blocker to enjoy the quizzes and puzzles.


from It's FOSS https://ift.tt/5ChVS2n
via IFTTT

Rabu, 09 September 2026

Broadcom Kills Public VDDK Access to Tighten its Grip on VMware

vmware by broadcom logo along with a red alert s

Broadcom has taken down the public download pages for the VMware Virtual Disk Development Kit (VDDK). The pages for VDDK 8 and 9, along with the landing page, now return a generic error message.

So far, there has been no formal announcement from Broadcom.

The removal was carried out sometime last month, as people on Reddit and vendor forums started reporting dead links in mid-August. ShapeBlue, an Apache CloudStack services firm, documented the change on August 25. Red Hat followed days later with a support note for its Migration Toolkit for Virtualization.

While existing copies will still be functional, meaning implementations that currently use VDDK will continue working as usual, those who want fresh copies are out of luck.

What's the fuss about?

a page not found error for the vddk landing page on broadcom's developer portal

The VDDK is a library that lets backup and migration tools read VMware virtual disks from outside the hypervisor. VMware launched it in 2008 as an easily accessible SDK for customers building disk utilities, and it soon became the backbone of image-level backups and agentless migrations.

Unfortunately, its license makes things complicated. The library cannot be redistributed, so no Linux distribution provides it, and no open source project can bundle it for users. Everyone has to point to Broadcom's download page, and that page is now gone.

Convenient, not for users but for VMware's owner, Broadcom, who has managed to cut off public access to a tool many relied on to move away from the platform.

The ones who are stuck

Microsoft's Azure Migrate documentation is one example of the disarray caused by the silence. It tells admins to download VDDK 8.0 or 9.0 from the Broadcom portal for agentless migration, and the links embedded there point to a page that isn't accessible.

The docs suggest falling back to agent-based migration if VDDK is unreachable.

Red Hat is in the same boat. Its support note reports customers hitting "not found" or "access denied" errors while trying to access the public download links for VDDK, further noting that it cannot host or redistribute the kit.

They are directing their customers to contact Broadcom support while the Red Hat Engineering team hunts for an alternative, long-term path out of this dilemma.

On Reddit, a user, bobdrakken, already did that, and what they received as a response ought to show you where Broadcom stands on this. 👇

Hi ****,

Greetings from Broadcom Customer Care.

To ensure the highest standard of security, reliability, and product features, the Virtual Disk Development Kit (VDDK) is no longer available for use or download.

Broadcom continues to actively maintain a variety of APIs and SDKs to enable authorized technology alliance partners to build backup and recovery software solutions that are validated and authorized to integrate, interoperate, or be compatible with Broadcom products.

For all backup and recovery requirements, customers should rely on such solutions from Broadcom authorized technology alliance partners."

I hope this helps you.

Please get in touch with your Partner for better assistance, since there is no pending action from our end hence this case will be archived now.

I would be glad to assist you if you have additional support requests.

A pattern unfolds

This takedown fits a pattern running since Broadcom closed its $69 billion acquisition of VMware in November 2023. The subscription-only overhaul followed within weeks, ending perpetual licenses and folding standalone products into bundles.

European customers later reported renewal prices climbing massively, enough to draw formal complaints from industry bodies.

It's not entirely been about extracting the maximum out of VMware; Broadcom has thrown in some goodwill along the way too. Workstation Pro and Fusion Pro went free for everyone in November 2024, and a free ESXi build returned in limited form in 2025.

Each move can be defended on its own; licensing overhauls and price changes are normal business; so is tightening download access.

But taken together, these paint a picture that while VMware itself is running just fine, the ones trying to move off VMware need to jump a few more hoops before they can achieve that.

Via: Virtualization Howto



from It's FOSS https://ift.tt/Dtd6BEZ
via IFTTT

5 Linux Distros Bringing AI to Your Desktop

A half natural, half robot penguin is shown sitting in the middle of this picture.

Seeing all the hype surrounding AI in the Linux ecosystem, you might've asked yourself, What makes a Linux distro "AI-focused"? If you go looking for an answer, you will get all kinds of results depending on which project you look at.

One wires an AI agent into first boot, right next to picking a desktop environment. Another keeps every model running air-gapped with no network access.

There's no established approach here; every project is going at it differently. The distros listed below are each building toward their own idea of what an AI-native desktop should look like.

📋
The ordering of this list doesn't mean one is better than the other. That decision lies on you, the reader.

1. Omarchy

omarchy

While Omarchy started off as a simple script to get Hyprland running on a stock Arch install, it has since grown into a full-blown, AI-agent-first Linux distribution with its own foundation and eight-figure funding behind it.

The project markets itself as "the malleable OS for the age of agents," and that framing shows up the moment you boot it for the first time. Setup asks you to pick a default AI agent from a list that spans Claude Code, Codex, Copilot CLI, and several others, then signs you in so it can start working on the system right away.

Once configured, the agent can then help you troubleshoot crashed programs, build out plugins and themes, and put together apps from nothing more than a description of what you want.

And underneath all of that is Arch Linux, so you know you are working on a proven base.

2. Shadowfetch Linux

shadowfetch linux

Shadowfetch Linux is built around something it calls "Mission Control," a system for giving an AI agent a task and then actually checking its work.

Nothing from an agent locks in without your sign-off. Once a task is completed, Shadowfetch lays out everything that happened, what changed, which tests ran, what the output looked like, and waits for you to approve it.

It comes with two modes, "Fire," which keeps the system connected to the internet, handing over tasks to cloud agents. While "Ice" works offline, relying on local files and standard media export tools like FFmpeg instead, though it doesn't run local AI models yet.

This distro also limits what an agent can actually touch with a feature called "Firebreak" which keeps the agent inside a defined boundary where it only ever sees the project it's working on and whatever system files that task calls for.

3. Gnoppix AI Linux

gnoppix ai linux
Source: DistroWatch

Gnoppix AI Linux, or Gnoppix Linux as it used to be known, traces back to 2002, when its founder Andreas Müller built it on Debian 3.0 "Woody." That work got him hired by Canonical as one of Ubuntu's earliest developers.

Anyhow, Gnoppix keeps AI local and off the network by default. Its homepage showcases a Mistral 7B model running locally, with it being "AIR-GAPPED," meaning that the model has no network access.

That same privacy-focused approach carries through the rest of the OS, with no telemetry, a built-in encrypted messenger, a VPN, and a search tool that strips identifying details before a query goes anywhere.

There's also a space for testing and fine-tuning models like Mistral, Llama, and Qwen on Gnoppix's own servers without needing the hardware to run them yourself, and the project itself is Debian-based.

Official material describes the project being run out of Panama with an AI lab in Japan, and there are many pricing tiers for this one, so choose the one that suits your use case.

4. MakuluLinux

makululinux ai os

MakuluLinux comes with Electra, an AI assistant you control from a floating bar at the top of the screen. Type what you want in plain English, and it figures out whether that means chatting, writing code, drafting an article, or running a system command.

Electra isn't locked to MakuluLinux either. It installs on Ubuntu, Debian, Arch, Fedora, and a few other distros too; MakuluLinux just ships it by default. The developers say that they built and operate the AI backend instead of wrapping someone else's API, and there's no key needed to use it.

If you lose your internet connection, it switches to a local model automatically and can even remember past conversations.

Though the company's pages don't agree on how many models are actually available. The number ranges from the low seventies to over ninety, depending on which page you check.

5. Deepin

deepin

This distro can be regarded as one of the early adopters of AI in a Linux distro, while most of this list only started moving in this direction over the past year. deepin weaves its AI layer, called UOS AI, directly into the browser, mail client, and system-wide search instead of keeping it in a separate app.

That search piece, branded "Grand Search", is the most visible desktop-focused part of it, and deepin's most recent stable release, 25.2.1, pushed it further with something called Intelligent Search.

Instead of remembering an exact filename, you can type a phrase like "financial spreadsheets modified yesterday" or "videos larger than 1 GB," and the system parses that into filters for time, file type, location, and size on its own.

Honarable Mention

ubuntu 26.10 dev branch

Ubuntu isn't trying to be an AI-native distro yet, but it's taking the first step toward being one. Ubuntu 26.10, which is scheduled for an October release, is going to feature its first AI-powered feature.

Myna is a dictation tool that runs entirely on the machine itself, triggered via a keyboard shortcut, dropping transcribed text into whatever you were typing into without needing an internet connection.

This comes after Canonical's VP of Engineering, Jon Seager, revealed their plan for splitting AI work across Ubuntu into two categories earlier this year.

Thanks to Joey Sneddon of OMG! Ubuntu, we now know that local speech models for Myna will ship as separate, removable snaps matched to your hardware, some built for NVIDIA GPUs specifically, others CPU-only, with broader language support planned for later.

If you aren't a big fan of AI in your Linux distro, then I recommend going through ZDNet's roundup of the distros that plan to stay that way. There are six of them: AerynOS, MX Linux, Debian, Arch Linux, Slackware, and Void Linux.



from It's FOSS https://ift.tt/AI1LS8w
via IFTTT

Privacy Notes: Markdown Editor With Built-in Encrypted Vault

There is no dearth of note taking apps for Linux. There are tools like Obsidian that are local first, tools like Joplin that are both local and cloud but not encrypted. There are also collaborative tools like Etherpad that put encrypted notes on a remote server.

And then I come across a new tool this week called Privacy Notes. It mixes several things at once and tries to be the "one note app to rule them all". It is Markdown-first with WYSIWYG editor, vault for storing passwords, ssh keys etc, journal and more.

Privacy Notes

Privacy Notes

The idea of Privacy Notes is to give you an application that is primarily aimed at keeping your most important documents safe on their server by providing client side encryption.

This means that the notes and files are encrypted on your device first and then they get uploaded to Privacy Notes's servers. Privacy Notes website mentions that their servers are hosted in Switzerland.

This is zero knowledge encryption which means you have to save your key or phrase somewhere safe because if you lose that, not even Privacy Notes can give the data back as everything is encrypted.

Privacy Notes is developed by Lifetime Labs and they have the motto to provide software but NOT as a service.

In that regard, Lifetime Labs offers a lifetime price for Privacy Notes. You get 500 MB of encrypted storage for $48 (early adapter price, and it rises to $89 later). If you want more storage, extra storage is self-serve from $4.80/GB per year.

Note that server storage is a recurring cost, unlike desktop software. That's why extra storage has a recurring subscription fee.

Privacy Notes apps are open source and the source code is available on their GitHub repository. This includes the web, desktop and mobile clients and even their encryption and threat model.

More than just plain note taking

While the name suggests it is another Markdown based editor focused on privacy, it does offer a few things different than most other editors in this category. Let me share them with you.

Store your passwords and keys in vault

Privacy Notes has the option to add sensitive information in a predefined template and in its own dedicated section in the sidebar.

Vault feature in Privacy Notes

This is a feature password managers like Bitwarden and Proton Pass offer. Merging it in the notes is a good move, especially when the idea is to have secret, encrypted notes. Login passwords, credit card information, SSH/GPG keys are the common secrets people store.

Save your cards in Privacy Notes

You can also generate and save new Ed25519 SSH keys and passwords in the app. I think it can also store TOTO 2FA keys.

You can also import your passwords from your browser or other password managers:

Import passwords in Privacy Notes
Import passwords in Privacy Notes
📋
Privacy Notes encourages users to verify that the data is actually encrypted before it leaves your device. This puts trust in your zero-knowledge encryption claim.

Tasks

Privacy Notes also has tasks

Since the idea is to provide a full-featured note apps, there are also tasks here. Now, there is no Kanban-styled task board here. Tasks are just regular notes but if you click to create a new task, it starts with a checklist. You can still add text and other markdown formatting in the tasks.

You can add checklists in regular notes as well but when you go into the Tasks view, it shows all the notes that have any kind of checklist in it.

I think the idea to give a separate view for all to-dos in one place. Which is a good thing as to-do list may get buried in the pile of notes.

More note types

Privacy Notes note types

There are two more note types. Bookmarks and Journals. Both are evident from their names.

Bookmarks type of notes are for saving bookmarks. It's okay to have such a feature, but to me, the place of a bookmark is in a browser or in a dedicated bookmark manager.

It would have been better to have a quick note field in the bookmarks to quickly know or search what the bookmark is about.

PrivacyNotes also has bookmarks

And there are journals. Logseq and some other personal knowledge base tools have the concept of journal entries. Which is like having a personal diary.

Each new note in the journal automatically gets the day and date as its name. You can create a new journal note the same day only when you rename the existing entry of the day.

Privacy Notes Journal feature

You can also upload images, audio and any other file type via the Files option. This is good. Important documents can also be in image format. Like, I could save my passport and other official IDs in image format.

Privacy Notes file uploads

Since all the files are client side encrypted, this is better than keeping them in Google or One Drive where the images may be used to train AI (we don't know that for sure).

💡
Wiki style links are supported in Privacy Notes. This means if you move from a tool like Obsidian, your links will be preserved.

Burn after reading

Privacy Notes allows you to share links to your encrypted files. Anyone with the link can view the file but here is the twist. It can be viewed only once. The link self-destructs after is opened once.

Share and burn after reading

This burn after reading reminds me of both Victorian era love letters and Ethan Hunt in Mission Impossible.

Local markdown files

Privacy Notes desktop application allows you to view and edit local markdown files. If you have personal knowledge base built on Markdown (like Obsidian) or have GitHub repo, you can use it inside Privacy Notes. It edits the files in place, keeps subfolders, and converts nothing.

Keep in mind that these files stay on your systems locally and they are not encrypted. You can choose to add them to the encrypted , though. This way, the notes will be encrypted first and then saved on to your Privacy Notes account in the cloud.

Local markdown files can be added to remote encrypted storage

I like this idea. If you have only 50 MB of the free encrypted cloud storage or 500 MB of lifetime Pro version, you cannot dump all your notes in it. You can be selective and only upload the notes and documents that need to be in the (encrypted) cloud.

But do note that the standard features you saw above—like bookmarks, journals, vaults, etc.—are not stored locally. So you cannot create new passwords or ssh keys using the vault template and store it locally, it gets encrypted and gets stored on the server and gets counted in your storage quota.

Local markdown notes remain local. They don't get the fancy templates. But you can use the editor that works great for markdown files.

You can also mix and match. Store only the most important, sensitive data in the encrypted cloud, while regular files can be synced to a Git repo.

Also, you can export your notes any time.

📋
The free version of the app doesn't allow creating folders in the encrypted section of the app. You will see the pop up to upgrade to Pro if you click on the folder option.

Should you use Privacy Notes?

Privacy Notes is a mix of local plus (encrypted) cloud storage. Now, Linux servers are suggested to follow the classic 3-2-1 backup strategy.

We are not dealing with servers here but personally, I keep multiple backups of my data. Some are in my homelab and some stay in the cloud.

My scanned IDs, warranty papers, insurance documents, and other such important data live in the cloud. They used to be in email 15 years ago.

Privacy Notes can be part of the multiple backup strategy. Since it is especially for notes you cannot use it for dumping GBs of images but you can try using it for storing important documents, notes, passwords, SSH key, 2FA recovery codes etc. The client-side encryption adds a layer of trust.

🚧
Zero knowledge encryption is a double-edged sword. If you forget the recovery phrase, you will lose access to the docs stored in the cloud. That's why I suggest keeping more than one backups.

The free account gives you 50 MB of encrypted storage. Which should be enough for you to try it and also keep on using it if you have limited needs.

The Pro version will give you 500 MB of storage for a single payment of $48. It's a lifetime subscription, something I prefer over a recurring subscription.

The Pro version allows you to use the synced notes on multiple devices (free plan syncs only 2 devices) and keeps upto 20 revisions of a file. You do benefits for the amount you are paying.

📋
Privacy Notes allows importing from Obsidian, Standard Notes, Evernote, Apple Notes, Bitwarden and a number of other note taking apps and password managers. Mostly, you have to export the files from their respective tools and then you import them in Privacy Notes.

Getting Privacy Notes

If you want to take the feel of Privacy Notes, there is a web-based demo here. That gives you an idea of what the tool is like.

And then, when you decide to use it, you have apps available for Linux, Windows, macOS, iOS and Android.

For Linux users, Privacy Notes is available in AppImage and .deb format for for x86_64 and ARM64 platforms so even SBCs like Raspberry Pi are covered here. Every release is signed and carries a SHA-256 checksum on GitHub.

If you are using Android, you can get the app in APK format from Zapstore or Obtanium, platforms that verifies developer signature. Pure APK can be downloaded from the website, too. Google Play store integration is in works.

You can download the apps from the download section of their website:

Or, check out the source code from their GitHub repo.



from It's FOSS https://ift.tt/aHhmxNd
via IFTTT