<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~files/feed-premium.xsl"?>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedpress="https://feed.press/xmlns" xmlns:podcast="https://podcastindex.org/namespace/1.0" version="2.0">
  <channel>
    <feedpress:locale>en</feedpress:locale>
    <feedpress:newsletterId>itsfoss</feedpress:newsletterId>
    <atom:link rel="hub" href="https://feedpress.superfeedr.com/"/>
    <title>It's FOSS</title>
    <description>Making You a Better Linux User</description>
    <link>https://itsfoss.com/</link>
    <image>
      <url>https://itsfoss.com/content/images/2025/11/android-chrome-512x512.png</url>
      <title><![CDATA[It's FOSS]]></title>
      <link>https://itsfoss.com/</link>
    </image>
    <generator>Ghost </generator>
    <lastBuildDate>Sat, 11 Jul 2026 16:23:51 +0530</lastBuildDate>
    <atom:link href="https://feed.itsfoss.com/" rel="self" type="application/rss+xml"/>
    <ttl>60</ttl>
    <item>
      <title><![CDATA[ELM11-Feather Is a Feather-Compatible Board That Speaks Lua Natively]]></title>
      <description><![CDATA[It&#x27;s an FPGA-based board that lets you program the application, driver, and hardware layers in Lua, C, and VHDL/SystemVerilog, and it starts at $29.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17376435/elm11-feather-announcement</link>
      <guid isPermaLink="false">6a4e010c8181fe0001a596df</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Abhishek Prakash]]></dc:creator>
      <pubDate>Sat, 11 Jul 2026 08:41:56 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/07/elm-11-feather.webp" medium="image">
        <media:description type="plain">ELM11-Feather board</media:description>
      </media:content>
      <content:encoded><![CDATA[
<p>Most microcontroller boards on the market today rely on Python, usually in the form of <a href="https://micropython.org/">MicroPython</a> or <a href="https://circuitpython.org/">CircuitPython</a>. If you've ever wanted something leaner without giving up that no-compile, REPL-driven workflow, <a href="https://www.lua.org/">Lua</a> is the option worth considering.</p><p>But then most microcontroller boards are not built for Lua even if you can run Lua on them.</p><p>That's the gap BrisbaneSilicon, a small Brisbane-based semiconductor outfit, is trying to fill with <a href="https://brisbanesilicon.com.au/docs/ELM11_Datasheet.pdf">ELM11-Feather</a>. It is a <a href="https://learn.adafruit.com/adafruit-feather/overview">Feather-compatible</a> board that runs Lua natively.</p><p>Actually, it's Feather-form-factor follow-up to the company's original <a href="https://brisbanesilicon.com.au/elm11/">ELM11</a>, and the <a href="https://www.crowdsupply.com/brisbanesilicon/elm11-feather">crowdfunding campaign for it is now live on Crowd Supply</a>.</p><h2 id="key-specifications">Key Specifications</h2><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/elm11-feather.webp" class="kg-image" alt="ELM11-Feather" loading="lazy" width="1600" height="900" srcset="https://itsfoss.com/content/images/size/w600/2026/07/elm11-feather.webp 600w, https://itsfoss.com/content/images/size/w1000/2026/07/elm11-feather.webp 1000w, https://itsfoss.com/content/images/2026/07/elm11-feather.webp 1600w" sizes="(min-width: 720px) 720px"></figure><ul><li><strong>Native languages:</strong> Lua (application), C (driver), SystemVerilog/VHDL (hardware), all on one board</li><li><strong>Chip:</strong> GOWIN FPGA (no separate CPU core, the FPGA runs everything)</li><li><strong>I/O:</strong> 23 pins, each configurable as GPIO, PWM, UART, SPI, or I&sup2;C</li><li><strong>RAM:</strong> 1 MB</li><li><strong>Dimensions:</strong> 22.86 x 64.65 x 4.85 mm (0.9 x 2.54 x 0.191 in)</li><li><strong>Weight:</strong> 5.2 g</li><li><strong>Form factor:</strong> Feather-compatible, works with existing FeatherWings</li></ul><p><strong>ELM11-Feather is priced at $39.</strong></p><p>More than the specs, the architecture choice is the highlight here. There's no traditional microcontroller on this board. Instead, a GOWIN FPGA does the work, running a dual-core setup with an independent Lua REPL on each core. That's the "clever bit". Because Lua is running on an FPGA rather than a fixed MCU, BrisbaneSilicon can expose the entire stack, hardware included, to the user for modification.</p><p>Each of the 23 I/O pins can be configured as GPIO, PWM, UART, SPI, or I&sup2;C, which is a lot of flexibility per pin compared to boards that hardwire a fixed number of each. The board also carries 1 MB of RAM, a hardware watchdog, 5 user-programmable LEDs, and a built-in 500 mA LiPoly charger with a status LED, all inside Feather's compact footprint (22.86 x 64.65 x 4.85 mm) at 5.2 g. Being Feather-compatible means it slots into the existing ecosystem of FeatherWing add-on boards without any adaptation.</p><h2 id="full-stack-programmability">Full-Stack Programmability</h2><p>BrisbaneSilicon calls this "Full-Stack Programmability," and that is main selling point of the board. The idea is that the same product can be extended at three separate layers at once: the Application Layer runs Lua, the Driver Layer runs C, and the Hardware Layer runs VHDL/SystemVerilog through a swappable "Hardware Overlay."</p><p>In practice, this means a user could design a custom hardware module (say, a quadrature encoder), write the C driver for it, and then expose it to their Lua scripts as a plain function like <code>quadrature_encoder_speed()</code>. Nothing about that workflow requires touching a separate toolchain for each layer either, since BrisbaneSilicon's own IDE, called <a href="https://brisbanesilicon.com.au/arvore-ide/" rel="noreferrer">Arvore</a>, is built to unify all three.</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/elm11-ide.webp" class="kg-image" alt="ELM11-Feather in its IDE" loading="lazy" width="1599" height="1007" srcset="https://itsfoss.com/content/images/size/w600/2026/07/elm11-ide.webp 600w, https://itsfoss.com/content/images/size/w1000/2026/07/elm11-ide.webp 1000w, https://itsfoss.com/content/images/2026/07/elm11-ide.webp 1599w" sizes="(min-width: 720px) 720px"></figure><p>Arvore handles project creation, uploading, and extending the Lua API from one interface, and a beta is already available to download. For anyone who doesn't want to install a custom hardware overlay by hand, the IDE has a config screen for that too. Purists who'd rather do everything from the command line aren't locked out either, that path still works.</p><p>BrisbaneSilicon says the hardware schematics and firmware API will both be released under the MIT license once the campaign wraps and production begins.</p><p>Compared to a few other boards in the same rough space:</p><ul><li><strong>pico2-ice</strong> (RP2350 + ICE40UP5K): more GPIO and RAM, but no native scripting language and a higher price</li><li><strong>Adafruit Feather STM32F405</strong>: cheaper, but no FPGA and no hardware-layer extensibility</li><li><strong>Adafruit HUZZAH32 (ESP32)</strong>: better battery life, but far fewer I/O options and no scripting-to-hardware pipeline</li></ul><h2 id="%F0%9F%9B%92-pricing-and-availability">&#128722; Pricing and Availability</h2><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/elm11-fetaher-hand.webp" class="kg-image" alt="ELM11-fetaher" loading="lazy" width="1598" height="899" srcset="https://itsfoss.com/content/images/size/w600/2026/07/elm11-fetaher-hand.webp 600w, https://itsfoss.com/content/images/size/w1000/2026/07/elm11-fetaher-hand.webp 1000w, https://itsfoss.com/content/images/2026/07/elm11-fetaher-hand.webp 1598w" sizes="(min-width: 720px) 720px"></figure><p>The ELM11-Feather crowdfunding campaign launches this week on Crowd Supply.</p><div class="kg-card kg-button-card kg-align-center"><a href="https://www.crowdsupply.com/brisbanesilicon/elm11-feather" class="kg-btn kg-btn-accent">Back it on Crowd Supply</a></div><p>The board is priced at $39. Shipping cost isn't listed yet, and BrisbaneSilicon hasn't given a firm ship date either. The company does say it has already manufactured and tested a small batch of 5 boards ahead of the main production run, which is a bit more reassurance than most campaigns start with, though the only risk it flags is component availability for the GOWIN FPGA and the BL702 chip.</p><div class="kg-card kg-callout-card kg-callout-card-red"><div class="kg-callout-emoji">&#128679;</div><div class="kg-callout-text">As with any crowdfunding campaign, treat the timeline as an estimate. Back it because you want to support the project, not because you're counting on the ship date.</div></div><p><strong><em>Suggested Read: If you're curious about other Feather-family and Arduino-alternative boards, check out our roundup of </em></strong><a href="https://itsfoss.com/arduino-alternative-microcontroller-boards/"><strong><em>Arduino alternative microcontroller boards</em></strong></a><strong><em>.</em></strong></p>
<img src="https://feed.itsfoss.com/link/24361/17376435.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[Linux Mint Now Considers Wayland Stable]]></title>
      <description><![CDATA[Cinnamon will fully support both X11 and Wayland sessions starting with Mint&#x27;s next release, due Christmas.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17375901/linux-mint-wayland-stable</link>
      <guid isPermaLink="false">6a4f6ae88181fe0001a59d22</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Fri, 10 Jul 2026 10:34:04 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/07/linux-mint-cinnamon-wayland-banner.png" medium="image">
        <media:description type="plain">linux mint logo with a chat bubble housing the cinnamon desktop environment logo (on left), the wayland logo (on right), the background is dark green with gray tick marks</media:description>
      </media:content>
      <content:encoded><![CDATA[
<p>Among the mainstream Linux distros, Linux Mint has been an outlier, spending many years easing <a href="https://github.com/linuxmint/cinnamon">Cinnamon</a> and its users, into <a href="https://wayland.freedesktop.org">Wayland</a> one careful step at a time while other distributions like Ubuntu and Fedora made it the default experience.</p><p>Now, that patience is paying off, as the project's <a href="https://blog.linuxmint.com/?p=5046">June update</a> reveals that Wayland will no longer be considered "<em>experimental</em>" starting with the next Cinnamon release.</p><h2 id="better-late-than-never-eh">Better late than never, eh?</h2><p>Don't worry, <strong>both X11 and Wayland sessions will be fully supported</strong> starting with the next Cinnamon release, and the latter won't be the default session. Linux Mint's founder, Clement Lefebvre, said that the Wayland experience now feels solid, "<em>almost on par with X11</em>."</p><p>Of course getting here took longer than it did for other distros, but a project like Mint doesn't rush a major change like this without carrying out the appropriate prep work.</p><p>You will see the results of that in what's lined up for the new release. </p><p>Cinnamon finally has <strong>full HiDPI support</strong>, sharp icons, better mouse cursors, and fixes for bugs affecting Chromium apps like Slack and VS Code.</p><p>Similarly, window progress shows things like Nemo's (<em>the file manager</em>) file/folder copy progress in the panel's app button, and focus stealing prevention keeps other apps from yanking your attention away mid-task.</p><p><strong>Multi-monitor setups and KVM switches behave better</strong>, and hardware acceleration now runs across the compositor, desktop session, and both Wayland and Xwayland clients, including GBM over EGL for NVIDIA GPUs.</p><h2 id="they-have-been-busy">They have been busy</h2><p>Back in February, Lefebvre revealed <a href="https://itsfoss.com/news/linux-mint-longer-release-cycle/">the team was rethinking</a> its release schedule altogether, since a new version every six months on top of maintaining LMDE left them testing and releasing more than actually building features.</p><p>By April, <a href="https://blog.linuxmint.com/?p=5019">the decision was final</a>, Linux Mint 23 got pushed all the way to Christmas 2026, the longest gap between major releases the project has taken. Part of that extra time went straight into Wayland.</p><p>Earlier, Lefebvre had called a redesigned Cinnamon screensaver the last missing piece of the puzzle for full Wayland support.</p><p>The old screensaver only ran on X11 as a standalone GTK app, sitting outside Cinnamon's own window manager. The <a href="https://www.omgubuntu.co.uk/2026/03/linux-mint-cinnamon-lock-screen-screensaver">new one</a> runs on both X11 and Wayland, rendered natively by Cinnamon's own compositor.</p><p>The rest of that time bought more convenience for users. Mint <a href="https://itsfoss.com/linux-mint-hwe-images/">started shipping HWE ISOs</a> in May, giving people access to newer kernels like 6.17 on LM 22.3 without needing to wait for the LM 23 release.</p><p><strong>All that's left now is the wait</strong>. Based on what's already landed, the next Linux Mint release looks like it'll be worth it.</p>
<img src="https://feed.itsfoss.com/link/24361/17375901.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[FOSS Weekly #26.28: Microslop Moment, Rustification, Brave New features, KDE Plasma Tips and Meme Distro and More]]></title>
      <description><![CDATA[K in KDE stands for Kustomization.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17375494/foss-weekly-26-28</link>
      <guid isPermaLink="false">6a4ceaa78181fe0001a59198</guid>
      <category><![CDATA[Newsletter ✉️]]></category>
      <dc:creator><![CDATA[Abhishek Prakash]]></dc:creator>
      <pubDate>Thu, 09 Jul 2026 18:35:42 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/07/foss-weekly-1.webp" medium="image"/>
      <content:encoded><![CDATA[
<p>Recently, Microsoft <a href="https://itsfoss.com/news/windows-11-cam-bug/">reluctantly agrred that a bug was eating up uo to 500 GB of disk space in Windows 11</a>. They knew about the bug for months, no fix came.</p><p>Germany may not have kicked right in the Paraguay match, but it sure has kicked out Microsoft Sharepoint. The <a href="https://itsfoss.com/news/german-state-ditches-sharepoint/">state of Mecklenburg-Vorpommern will be using Nextcloud</a> for over 5,000 employees. We need wins like these, don't we?</p><p>There was a time when every other new distro was based on Ubuntu but that list is shrinking. Linux system vendor <a href="https://itsfoss.com/news/tuxedo-os-is-ditching-ubuntu/">Tuxedo is moving to Debian for its TuxedoOS distro</a>.</p><p><a href="https://itsfoss.com/firefox-containers/">Firefox users have had containers</a> (old article) for years. <a href="https://itsfoss.com/news/brave-browser-containers/">Brave 1.92 finally adds them natively</a>, keeping cookies and site data separate per container even when visiting the same site.</p><p>You get four default categories, temporary containers are one right-click away, and the feature is also heading to Brave Origin, which as you might remember <a href="https://itsfoss.com/news/brave-origin-linux/">is free for Linux users</a>.</p><p>Most office suites shipping AI right now have made it difficult to avoid. <a href="https://itsfoss.com/news/collabora-office-26-04/">Collabora Office 26.04</a> goes the other way, keeping AI off by default. Turning it on means plugging in your own API credentials or self-hosted model.</p><p>In other news, Canonical is pouring in &euro;40,000/year into the <a href="https://itsfoss.com/news/ubuntu-ntpd-rs-push/">Trifecta Tech Foundation</a>, and their next target is to rustify Ubuntu's time synchronization components.</p><div class="kg-card kg-callout-card kg-callout-card-red"><div class="kg-callout-emoji">&#128679;</div><div class="kg-callout-text">Ubuntu 25.10 users <a href="https://itsfoss.com/opinion/ubuntu-26-04-upgrade-or-not/">should upgrade to 26.04 LTS</a> sooner rather than later. July 9 <a href="https://www.omgubuntu.co.uk/2026/07/ubuntu-2510-eol-july-9-2026">is end of life</a> for the interim release, meaning security patches stop that day and anything disclosed after goes unpatched on your system.</div></div><h2 id="%F0%9F%93%9A-linux-ebooks-from-oreilly">&#128218; Linux eBooks from O'Reilly</h2><p><a href="https://humblebundleinc.sjv.io/X4r9Lg">Humble Bundle has a new O'Reilly collection</a> packed with Linux and Unix books, covering everything from shell scripting to system administration and kernel internals. Pay what you want for a few titles, or pay a bit more to unlock the entire bundle. If you have been meaning to deepen your Linux knowledge, this is worth grabbing before the deal expires.</p><p>Part of the money gets donated to Code for America.</p><div class="kg-card kg-button-card kg-align-center"><a href="https://humblebundleinc.sjv.io/X4r9Lg" class="kg-btn kg-btn-accent">Get the eBooks</a></div><h2 id="%F0%9F%A7%A0-what-we%E2%80%99re-thinking-about">&#129504; What We&rsquo;re Thinking About</h2><p>Hannah Montana Linux is back, and yes, it's 2026. Noah Cagle, a developer, <a href="https://itsfoss.com/news/return-of-hannah-montana-linux/">has rebuilt the legendary meme distro</a> on Debian 13 with KDE Plasma.</p><p>Microsoft was caught lacking after a Windows 11 storage bug <a href="https://itsfoss.com/news/windows-11-cam-bug/">ate up to 500GB of disk space</a>, with a fix quietly being slipped into a preview update.</p><h2 id="%F0%9F%A7%AE-linux-tips-tutorials-and-learnings">&#129518; Linux Tips, Tutorials, and Learnings</h2><p>Three years with Obsidian and Logseq, and <a href="https://itsfoss.com/comparison/obsidian-vs-logseq/">the conclusion isn't that one is better</a>. They just solve different problems. Obsidian is a Markdown writing environment where files and folders are the organizing principle. Logseq is an outliner where every bullet is a referenceable block.</p><p>But then my colleague Sreenath is obsessed with <a href="https://itsfoss.com/kde-plasma-as-personal-knowledge-base/">note management and he also experimented using only Markdown and KDE's Dolphin</a>.</p><p>KDE is actually quite versatile and we have covered plenty of KDE tweaks and tips over time. Sharing some of them here:</p><ul><li><a href="https://itsfoss.com/file-tagging-kde/">Tagging feature in KDE's Dolphin</a> file manager</li><li><a href="https://itsfoss.com/dolphin-tweaks/">Dolphin file manager tweaks</a></li><li><a href="https://itsfoss.com/konsole-terminal-tweaks/">Customizing and twekaing Konsole terminal</a></li><li><a href="https://itsfoss.com/properly-theme-kde-plasma/">Theming KDE Plasma</a> (properly)</li><li><a href="https://itsfoss.com/best-kde-plasma-themes/">Explore KDE themes</a> (a bit old)</li><li><a href="https://itsfoss.com/kde-customization/">KDE customization tips</a></li></ul><p>Enjoy KDE &#128516;</p><h2 id="%F0%9F%91%B7-ai-homelab-and-hardware-corner">&#128119; AI, Homelab and Hardware Corner</h2><p>Sipeed's <a href="https://itsfoss.com/news/sipeeds-nanokvm-go-crowdfunding/">NanoKVM-Go</a> is a single USB-C KVM that carries video, audio, keyboard, mouse, disk emulation, and power pass-through over one cable with WiFi 6 for wireless connectivity.</p><p><a href="https://itsfoss.com/news/pocketmage-campaign/">PocketMage</a> is a pocketable e-paper PDA with a physical QWERTY keyboard, a 3.1-inch e-ink main display, and a secondary 1.8-inch OLED strip for menus that need faster refresh.</p><p>Most USB-C hubs are fixed in what they offer. <a href="https://itsfoss.com/news/dockframe/">DockFrame</a> has four slots that take in Framework expansion cards, alongside tool cards so the port lineup can be whatever you need it to be.</p><p>Valve quietly open-sourced the <a href="https://itsfoss.com/news/inkertface-diy-steam-machine-faceplate/">Inkterface</a> this week, a DIY e-ink faceplate for the Steam Machine.</p>
<!--kg-gated-block:begin nonMember:true memberSegment:"status:free" --><div class="kg-card kg-cta-card kg-cta-bg-grey kg-cta-minimal    " data-layout="minimal">
            
            <div class="kg-cta-content">
                
                
                    <div class="kg-cta-content-inner">
                    
                        <div class="kg-cta-text">
                            <p><span style="white-space: pre-wrap;">Why should you opt for It's FOSS Plus membership:</span></p><p><span style="white-space: pre-wrap;">&#9989; Ad-free reading experience</span><br><span style="white-space: pre-wrap;">&#9989; Badges in the comment section and forum</span><br><span style="white-space: pre-wrap;">&#9989; Supporting creation of educational Linux materials</span><br><span style="white-space: pre-wrap;">&#9989; Free Linux eBook</span></p>
                        </div>
                    
                    
                        <a href="https://itsfoss.com/membership/" class="kg-cta-button " style="background-color: #000000; color: #ffffff;">
                            Join It's FOSS Plus
                        </a>
                        
                    </div>
                
            </div>
        </div><!--kg-gated-block:end-->
<h2 id="%E2%9C%A8-apps-and-projects-highlights">&#10024; Apps and Projects Highlights</h2><p><a href="https://flathub.org/en/apps/se.sjoerd.lockpicker">Lockpicker</a> is a GNOME-native frontend for <a href="https://hashcat.net/hashcat/">hashcat</a> that lets you crack password hashes without you needing to memorize hashcat's syntax.</p><h2 id="%F0%9F%93%BD%EF%B8%8F-videos-for-you">&#128253;&#65039; Videos for You</h2><p>Your Linux terminal needs the <em>oomph</em> factor. These <a href="https://www.youtube.com/watch?v=SGVnnRsF14E">seven tools</a> will get you there.</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/SGVnnRsF14E?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen="" title="Add Oomph to Your Linux Terminal With These 7 Tools"></iframe></figure><div class="kg-card kg-button-card kg-align-center"><a href="https://www.youtube.com/@itsfoss" class="kg-btn kg-btn-accent">Subscribe to It's FOSS YouTube Channel</a></div><h2 id="%F0%9F%92%A1-quick-handy-tip">&#128161; Quick Handy Tip</h2><p>On a vanilla GNOME setup, you can assign keyboard shortcuts to an <a href="https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps">PWA</a>.</p><p>First, you need to copy the command used to launch the web app. This is the value of <code>Exec</code> keyword in the desktop file.</p><p>Now, open the<em> Settings </em>app, go to <code>Keyboard -&gt; View and Customize Shortcuts -&gt; Custom Shortcuts -&gt; Add Shortcut</code>. Here, you have to add a name for the PWA, and in the <em>Command</em> field, enter the command you copied from the <code>Exec</code> field (<em>without the <code>Exec=</code></em>) and paste it.</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/gnome-keyboard-shortcuts-pwa-2.png" class="kg-image" alt="gnome pwa/appimage keyboard shortcuts tip" loading="lazy" width="656" height="377" srcset="https://itsfoss.com/content/images/size/w600/2026/07/gnome-keyboard-shortcuts-pwa-2.png 600w, https://itsfoss.com/content/images/2026/07/gnome-keyboard-shortcuts-pwa-2.png 656w"></figure><p>Now input a keybind using your keyboard, and create the shortcut by clicking on "<em>Add</em>." This also works for AppImage files, btw.</p><div class="kg-card kg-cta-card kg-cta-bg-grey kg-cta-minimal    " data-layout="minimal">
            
                <div class="kg-cta-sponsor-label-wrapper">
                    <div class="kg-cta-sponsor-label">
                        <span style="white-space: pre-wrap;">SPONSORED</span>
                    </div>
                </div>
            
            <div class="kg-cta-content">
                
                
                    <div class="kg-cta-content-inner">
                    
                        <div class="kg-cta-text">
                            <p dir="ltr"><span style="white-space: pre-wrap;">If you are interested in learning about open source AI, please </span><a href="https://itsfoss.com/local-ai-weekly/" class="cta-link-color"><span style="white-space: pre-wrap;">subscribe to our upcoming Local AI Weekly newsletter</span></a><span style="white-space: pre-wrap;">. Expected to start dispatch from this month itself.</span></p>
                        </div>
                    
                    
                        <a href="https://itsfoss.com/local-ai-weekly/" class="kg-cta-button " style="background-color: #000000; color: #ffffff;">
                            Subscribe to Local AI Weekly
                        </a>
                        
                    </div>
                
            </div>
        </div><h2 id="%F0%9F%8E%8B-fun-in-the-fossverse">&#127883; Fun in the FOSSverse</h2><p>The Riddler can be a pesky character, <a href="https://itsfoss.com/quiz/distro-riddles-quiz/">can you help Batman solve a riddle</a> and save Linux?</p><p>I spot an impostor here, I wonder who that is. &#129296;</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/meme10.png" class="kg-image" alt="wsl out of place linux meme" loading="lazy" width="1080" height="1080" srcset="https://itsfoss.com/content/images/size/w600/2026/07/meme10.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/meme10.png 1000w, https://itsfoss.com/content/images/2026/07/meme10.png 1080w" sizes="(min-width: 720px) 720px"></figure><p><strong>&#128467;&#65039; Tech Trivia</strong>: On July 4, 1956, MIT researchers plugged a keyboard into the <a href="https://en.wikipedia.org/wiki/Whirlwind_I">Whirlwind</a> computer, letting programmers type commands directly instead of wrestling with punch cards, dials, and switches. </p><p>Whirlwind was already five years old at the time, but this simple addition changed how humans and computers would talk forever.</p><p><strong>&#129489;&zwj;&#129309;&zwj;&#129489; From the Community</strong>: Pro FOSSer Neville has asked <a href="https://itsfoss.community/t/do-computers-need-to-be-managed/16026">a very interesting question</a>. Do computers need to be managed and can AI take over the job?</p><p>Valve refusal to support Linux distributions other than Ubuntu has raised eyebrows over the years, but <a href="https://www.reddit.com/r/linux_gaming/comments/1umsain/why_does_valve_only_support_ubuntu/">a recent Reddit thread</a> makes some convincing arguments.</p>
<img src="https://feed.itsfoss.com/link/24361/17375494.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[Avoiding Vendor Lock-in By Using KDE Plasma As Personal Knowledge Base]]></title>
      <description><![CDATA[Exploring a rudimentary style of notes management with Markdown and KDE Dolphin. Sometimes, simplicity is the best solution.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17375459/kde-plasma-as-personal-knowledge-base</link>
      <guid isPermaLink="false">6a4f2a108181fe0001a59bbb</guid>
      <category><![CDATA[Tips 💡]]></category>
      <dc:creator><![CDATA[Sreenath]]></dc:creator>
      <pubDate>Thu, 09 Jul 2026 16:19:36 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/07/avoiding-vendor-lock-using-kde-plasma.webp" medium="image">
        <media:description type="plain">KDE Plasma as personal knowledge base</media:description>
      </media:content>
      <content:encoded><![CDATA[
<p>There is no shortage of <a href="https://itsfoss.com/open-source-second-brain-apps/" rel="noreferrer">personal knowledge management (PKM) applications</a> available today if you <a href="https://itsfoss.com/markdown-guide/" rel="noreferrer">use Markdown</a> notes.</p><p>Be it <a href="https://itsfoss.com/comparison/obsidian-vs-logseq/" rel="noreferrer">Obsidian or Logseq</a> or Tolaria, there is a pain point associated with almost all of them. They add a layer on top of the plain markdown files. From Wikilinks to custom properties, there is always something that makes the interprotability an issue. </p><p>It almost feels like a vendor like in despite Markdown being an open standard.</p><p>Recently, I started experimenting with a different idea. Instead of relying on a specialized application, I tried using the KDE Plasma desktop itself as the foundation for this workflow.</p><p>Let me share how we can use Dolphin, along with a few KDE tools, to build a simple Markdown-based knowledge management system. I</p><p>t is still an experiment, and it certainly has limitations (that I will discuss later), but it has been an interesting workflow to explore.</p><div class="kg-card kg-callout-card kg-callout-card-red"><div class="kg-callout-emoji">&#128679;</div><div class="kg-callout-text">This is a highly experimental topic, and you are essentially taking the entire burden of note taking, organizing and interlinking.</div></div><h2 id="create-some-templates">Create Some Templates</h2><p>The first step is to create a few Markdown templates that make taking notes faster.</p><p>Inside your <code>~/Templates</code> directory, create two files:</p><ul><li><code>Markdown.md</code></li><li><code>QuickNotes.md</code></li></ul><figure class="kg-card kg-video-card kg-width-regular kg-card-hascaption" data-kg-thumbnail="https://itsfoss.com/content/media/2026/07/create-an-empty-templates-file_thumb.jpg" data-kg-custom-thumbnail="">
            <div class="kg-video-container">
                <video src="https://itsfoss.com/content/media/2026/07/create-an-empty-templates-file.mp4" poster="https://img.spacergif.org/v1/996x552/0a/spacer.png" width="996" height="552" loop="" autoplay="" muted="" playsinline="" preload="metadata" style="background: transparent url('https://itsfoss.com/content/media/2026/07/create-an-empty-templates-file_thumb.jpg') 50% 50% / cover no-repeat;"></video>
                <div class="kg-video-overlay">
                    <button class="kg-video-large-play-icon" aria-label="Play video">
                        <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                            <path d="M23.14 10.608 2.253.164A1.559 1.559 0 0 0 0 1.557v20.887a1.558 1.558 0 0 0 2.253 1.392L23.14 13.393a1.557 1.557 0 0 0 0-2.785Z"></path>
                        </svg>
                    </button>
                </div>
                <div class="kg-video-player-container kg-video-hide">
                    <div class="kg-video-player">
                        <button class="kg-video-play-icon" aria-label="Play video">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M23.14 10.608 2.253.164A1.559 1.559 0 0 0 0 1.557v20.887a1.558 1.558 0 0 0 2.253 1.392L23.14 13.393a1.557 1.557 0 0 0 0-2.785Z"></path>
                            </svg>
                        </button>
                        <button class="kg-video-pause-icon kg-video-hide" aria-label="Pause video">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <rect x="3" y="1" width="7" height="22" rx="1.5" ry="1.5"></rect>
                                <rect x="14" y="1" width="7" height="22" rx="1.5" ry="1.5"></rect>
                            </svg>
                        </button>
                        <span class="kg-video-current-time">0:00</span>
                        <div class="kg-video-time">
                            /<span class="kg-video-duration">0:13</span>
                        </div>
                        <input type="range" class="kg-video-seek-slider" max="100" value="0">
                        <button class="kg-video-playback-rate" aria-label="Adjust playback speed">1&times;</button>
                        <button class="kg-video-unmute-icon" aria-label="Unmute">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M15.189 2.021a9.728 9.728 0 0 0-7.924 4.85.249.249 0 0 1-.221.133H5.25a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h1.794a.249.249 0 0 1 .221.133 9.73 9.73 0 0 0 7.924 4.85h.06a1 1 0 0 0 1-1V3.02a1 1 0 0 0-1.06-.998Z"></path>
                            </svg>
                        </button>
                        <button class="kg-video-mute-icon kg-video-hide" aria-label="Mute">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M16.177 4.3a.248.248 0 0 0 .073-.176v-1.1a1 1 0 0 0-1.061-1 9.728 9.728 0 0 0-7.924 4.85.249.249 0 0 1-.221.133H5.25a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h.114a.251.251 0 0 0 .177-.073ZM23.707 1.706A1 1 0 0 0 22.293.292l-22 22a1 1 0 0 0 0 1.414l.009.009a1 1 0 0 0 1.405-.009l6.63-6.631A.251.251 0 0 1 8.515 17a.245.245 0 0 1 .177.075 10.081 10.081 0 0 0 6.5 2.92 1 1 0 0 0 1.061-1V9.266a.247.247 0 0 1 .073-.176Z"></path>
                            </svg>
                        </button>
                        <input type="range" class="kg-video-volume-slider" max="100" value="100">
                    </div>
                </div>
            </div>
            <figcaption><p><span style="white-space: pre-wrap;">Create an empty templates file</span></p></figcaption>
        </figure><p>Once these files are in the Templates folder, they become available from Dolphin's right-click context menu, allowing you to create new notes instantly.</p><p>Open <code>QuickNotes.md</code> in your preferred Markdown editor and add a simple structure such as:</p><pre><code>## Core Concept

---

## Key Characteristics

---

## Examples

---

## Related Reading

---
</code></pre><p>This is the template I use for quick notes, but you can customize it as per your need.</p><p>From now on, you can create a structured Markdown note anywhere in your file manager with just a few clicks.</p><h2 id="create-a-folder-for-your-notes">Create a Folder for Your Notes</h2><p>Next, create a folder that will hold your entire note collection.</p><p>I created mine as <code>~/Documents/MarkdownSource</code>, but you can choose any location you prefer.</p><div class="kg-card kg-callout-card kg-callout-card-red"><div class="kg-callout-emoji">&#128679;</div><div class="kg-callout-text">Avoid spaces in file names. Spaces in files names can be a pain in Linux, speically when dealing with scripts in the command line.</div></div><p>Inside this folder, create sub-folders to organize notes. I also recommend creating two additional folders:</p><ul><li><strong>Inbox</strong>, for notes that you haven't organized into a dedicated folder, yet.</li><li><strong>Attachments</strong>, for images and other files that your notes may reference.</li></ul><p>Keeping attachments inside the root of your notes directory makes them much easier to manage later.Avoiding Vendor Lock-in By Using KDE Plasma As Personal Knowledge Base</p><h2 id="install-a-markdown-editor">Install a Markdown Editor</h2><p>Since this workflow revolves around plain Markdown files, you'll need a <a href="https://itsfoss.com/best-markdown-editors-linux/" rel="noreferrer">Markdown editor</a>.</p><p>I intentionally avoid recommending dedicated PKM applications such as Obsidian or Logseq here, because using one of those would defeat the purpose of this workflow.</p><p>I've tried the <a href="https://itsfoss.com/ghostwriter/" rel="noreferrer"><strong>Ghostwriter</strong></a> Markdown editor from KDE, and it has worked very well for this experiment. <a href="https://apps.gnome.org/Apostrophe/" rel="noreferrer">Apostrophe</a> is a similar editor, if you prefer a GNOME style application.</p><p>On Arch Linux, you can install it using:</p><pre><code>sudo pacman -S ghostwriter
</code></pre><p>For other distros, use your package management commands.</p><h2 id="configure-dolphin-to-open-markdown-files">Configure Dolphin to Open Markdown Files</h2><p>Now make Ghostwriter the default application for Markdown files.</p><p>Open <strong>System Settings</strong> and navigate to <strong>Default Applications &rarr; File Associations</strong>.</p><p>Find the <strong>Markdown</strong> file type and move Ghostwriter to the top of the application list.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://itsfoss.com/content/images/2026/07/move-ghostwriter-to-top.png" class="kg-image" alt="In KDE System Settings, go to the File Association settings. Here, move the Ghostwriter app to the top of the list for Markdown files." loading="lazy" width="1375" height="765" srcset="https://itsfoss.com/content/images/size/w600/2026/07/move-ghostwriter-to-top.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/move-ghostwriter-to-top.png 1000w, https://itsfoss.com/content/images/2026/07/move-ghostwriter-to-top.png 1375w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Ghostwriter for Markdown</span></figcaption></figure><p>This can also be done by right-click on a Markdown file, go top Properties. Here, select the <strong>open with</strong> option and change the application preference order in a similar interface as above.</p><p>From now on, double-clicking any Markdown file in Dolphin will open it directly in Ghostwriter.</p><h2 id="use-dolphin-tags-for-organization">Use Dolphin Tags for Organization</h2><p>Tagging is one of the most useful features in any PKM system. Without it, finding notes later becomes much more difficult.</p><p>Fortunately, Dolphin already <a href="https://itsfoss.com/file-tagging-kde/" rel="noreferrer">includes a simple tagging system</a>.</p><p>Open Dolphin and enable the information panel by selecting <strong>Menu &rarr; Show Panels &rarr; Information</strong>.</p><p>A sidebar will appear showing details about the selected file or folder.</p><p>Here you'll find a <strong>Tags</strong> field where you can assign one or more tags to each note.</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe src="https://player.vimeo.com/video/1208314566?app_id=122963" width="426" height="234" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin" title="adding-tags-in-dolphin"></iframe><figcaption><p><span style="white-space: pre-wrap;">Using Tags in Dolphin</span></p></figcaption></figure><p>Once you've tagged your files, Dolphin's search function can quickly locate notes that share the same tag.</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe src="https://player.vimeo.com/video/1208318353?app_id=122963" width="398" height="240" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin" title="tags-in-kde-plasma"></iframe><figcaption><p><span style="white-space: pre-wrap;">Using Tags in Dolphin</span></p></figcaption></figure><div class="kg-card kg-callout-card kg-callout-card-blue"><div class="kg-callout-emoji">&#128203;</div><div class="kg-callout-text">Dolphin's tagging and file search features depend on the Baloo file indexing service. Make sure Baloo is installed and running before relying on tags for searching.</div></div><h2 id="interlinking-notes">Interlinking Notes</h2><p>We've now covered most of the essential parts of this workflow. The only major feature left is linking notes together.</p><p>This is one area where a file manager-based workflow is less convenient than a dedicated PKM application.</p><p>Since Dolphin doesn't understand wiki links or automatically manage relationships between notes, you'll need to create standard Markdown links yourself.</p><p>One improvement I would recommend is storing all your notes and attachments inside a single dedicated notes directory. Instead of using absolute file paths, create links using relative paths whenever possible.</p><p>Relative links are much easier to manage because the entire notes directory can be moved to another location without breaking the internal links, as long as the folder structure remains unchanged.</p><p>To make this easier, I created a small Bash function that generates the relative path between two files.</p><pre><code>relpath() {
  local from_dir
  from_dir=$(dirname "$(realpath "$1")")
  realpath --relative-to="$from_dir" "$2"
}
</code></pre><p>I added this function to my <code>.bashrc</code>. I originally wrote this function for a terminal-based PKM workflow, but it fits this KDE-based workflow just as well.</p><p>Now, whenever I need to create a link from one note to another, I simply run:</p><pre><code>relpath current_file distant_file
</code></pre><p>The command prints the relative path, which I can directly use in the Markdown link.</p><figure class="kg-card kg-video-card kg-width-regular kg-card-hascaption" data-kg-thumbnail="https://itsfoss.com/content/media/2026/07/get-relative-path_thumb.jpg" data-kg-custom-thumbnail="">
            <div class="kg-video-container">
                <video src="https://itsfoss.com/content/media/2026/07/get-relative-path.mp4" poster="https://img.spacergif.org/v1/1112x600/0a/spacer.png" width="1112" height="600" loop="" autoplay="" muted="" playsinline="" preload="metadata" style="background: transparent url('https://itsfoss.com/content/media/2026/07/get-relative-path_thumb.jpg') 50% 50% / cover no-repeat;"></video>
                <div class="kg-video-overlay">
                    <button class="kg-video-large-play-icon" aria-label="Play video">
                        <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                            <path d="M23.14 10.608 2.253.164A1.559 1.559 0 0 0 0 1.557v20.887a1.558 1.558 0 0 0 2.253 1.392L23.14 13.393a1.557 1.557 0 0 0 0-2.785Z"></path>
                        </svg>
                    </button>
                </div>
                <div class="kg-video-player-container kg-video-hide">
                    <div class="kg-video-player">
                        <button class="kg-video-play-icon" aria-label="Play video">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M23.14 10.608 2.253.164A1.559 1.559 0 0 0 0 1.557v20.887a1.558 1.558 0 0 0 2.253 1.392L23.14 13.393a1.557 1.557 0 0 0 0-2.785Z"></path>
                            </svg>
                        </button>
                        <button class="kg-video-pause-icon kg-video-hide" aria-label="Pause video">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <rect x="3" y="1" width="7" height="22" rx="1.5" ry="1.5"></rect>
                                <rect x="14" y="1" width="7" height="22" rx="1.5" ry="1.5"></rect>
                            </svg>
                        </button>
                        <span class="kg-video-current-time">0:00</span>
                        <div class="kg-video-time">
                            /<span class="kg-video-duration">0:21</span>
                        </div>
                        <input type="range" class="kg-video-seek-slider" max="100" value="0">
                        <button class="kg-video-playback-rate" aria-label="Adjust playback speed">1&times;</button>
                        <button class="kg-video-unmute-icon" aria-label="Unmute">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M15.189 2.021a9.728 9.728 0 0 0-7.924 4.85.249.249 0 0 1-.221.133H5.25a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h1.794a.249.249 0 0 1 .221.133 9.73 9.73 0 0 0 7.924 4.85h.06a1 1 0 0 0 1-1V3.02a1 1 0 0 0-1.06-.998Z"></path>
                            </svg>
                        </button>
                        <button class="kg-video-mute-icon kg-video-hide" aria-label="Mute">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M16.177 4.3a.248.248 0 0 0 .073-.176v-1.1a1 1 0 0 0-1.061-1 9.728 9.728 0 0 0-7.924 4.85.249.249 0 0 1-.221.133H5.25a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h.114a.251.251 0 0 0 .177-.073ZM23.707 1.706A1 1 0 0 0 22.293.292l-22 22a1 1 0 0 0 0 1.414l.009.009a1 1 0 0 0 1.405-.009l6.63-6.631A.251.251 0 0 1 8.515 17a.245.245 0 0 1 .177.075 10.081 10.081 0 0 0 6.5 2.92 1 1 0 0 0 1.061-1V9.266a.247.247 0 0 1 .073-.176Z"></path>
                            </svg>
                        </button>
                        <input type="range" class="kg-video-volume-slider" max="100" value="100">
                    </div>
                </div>
            </div>
            <figcaption><p><span style="white-space: pre-wrap;">Get relative path in terminal</span></p></figcaption>
        </figure><p>A <a href="https://itsfoss.com/markdown-links/" rel="noreferrer">normal Markdown link</a> looks like this:</p><pre><code>[Link text](Link address)
</code></pre><p>It's a manual process, but once the link is created, you can easily navigate between your notes from within your Markdown editor.</p><p>And this way, you have a folder containing subfolders of markdown files. The interlinking is the hardest and boring part but once that is done, your knowledge base can be used on any OS, with any Markdown editor.</p><h2 id="it-is-not-perfect-obviously">It Is Not Perfect (Obviously)</h2><p>And that's not a surprise. You are not using a specialist tool so there are a few limitations worth knowing.</p><h3 id="strict-data-organization-is-needed">Strict Data Organization Is Needed</h3><p>With this approach, your desktop environment effectively becomes your knowledge management system.</p><p>That also means you are entirely responsible for keeping your notes organized.</p><p>If you don't maintain a clear folder structure, your note collection can quickly become difficult to manage.</p><p>For example, a note may contain links to attachments stored in completely different folders. Without a consistent organization strategy, finding those files later can become frustrating.</p><p>Similarly, if you are linking notes to a PDF file, keep those files organized in a folder and don't mess up with its location. Else, interlinking won't work.</p><h3 id="distro-and-desktop-environment-changes">Distro and Desktop Environment Changes</h3><p>This workflow is tied to KDE Plasma's tagging feature. Moving away from KDE Plasma would likely mean abandoning parts of this workflow altogether.</p><h3 id="link-fragility">Link Fragility</h3><p>You probably have already realized that this is the weakest link in the entire workflow.</p><p>The Markdown links point directly to file paths. If you rename or move a file or folder later, every note pointing to that location will break.</p><p>Unlike dedicated PKM applications, Dolphin doesn't automatically update links when files are moved. Any reorganization requires manually updating the affected links yourself and that would be a serious pain.</p><h2 id="wrapping-up">Wrapping Up</h2><p>I know this approach is far from perfect. Compared to dedicated PKM applications, it places much more responsibility on you to organize your notes, attachments, and folder structure properly.</p><p>Personally, I think that's not necessarily a bad thing.</p><p>When you organize your notes yourself, you naturally become more familiar with your knowledge base. You're more likely to revisit, reorganize, and improve your notes over time instead of treating them as something you write once and never look at again.</p><p>At the same time, this workflow won't suit everyone.</p><p>If you depend on advanced features such as automatic backlinks, graph views, embedded queries, or seamless note linking, a dedicated PKM application will provide a much better experience.</p><p>On the other hand, if your priority is to keep everything as plain Markdown files while using lightweight tools that are already available on your desktop, this approach is certainly worth trying. In my opinion, this workflow also works well for people following the <a href="https://zettelkasten.de/introduction/">Zettelkasten method</a>.</p><p>I'm still experimenting with this workflow myself, and I'll probably continue refining it as I use it more.</p><p>What do you think about this idea? Would you consider using your file manager as a personal knowledge management system, or would you rather stick with a dedicated application? Let me know your thoughts in the comments.</p>
<img src="https://feed.itsfoss.com/link/24361/17375459.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[Another German State Just Kicked Out Microsoft... Kind Of]]></title>
      <description><![CDATA[Mecklenburg-Vorpommern has replaced Microsoft SharePoint with Nextcloud for over 5,000 government employees.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17375382/german-state-ditches-sharepoint</link>
      <guid isPermaLink="false">6a4f390d8181fe0001a59c0c</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Thu, 09 Jul 2026 15:20:24 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/07/german-state-kicking-out-sharepoint-banner.png" medium="image">
        <media:description type="plain">german map with flag embedded on left, a depiction of microsoft and sharepoint going into a trash can on the right</media:description>
      </media:content>
      <content:encoded><![CDATA[
<p>The German state of <a href="https://www.regierung-mv.de/Landesregierung/fm/Presse/Aktuelle-Pressemitteilungen/?id=221531&amp;processor=processor.sa.pressemitteilung">Mecklenburg-Vorpommern</a> is done with <a href="https://www.microsoft.com/en-us/microsoft-365/sharepoint/collaboration/">Microsoft SharePoint</a>, ditching it for <strong>a self-hosted Nextcloud deployment</strong> that is already serving around 5,000 employees.</p><p>Eventually, that number will be scaled up to 50,000 public sector workers, covering agencies ranging from ministries down to municipal offices.</p><h2 id="whats-happening">What's happening?</h2><p>Currently, <a href="https://nextcloud.com">Nextcloud</a> is handling file sharing, and features like chat, video conferencing, and groupware tools are coming next. The existing implementation as well as the expansion is being handled by <a href="https://www.dvz-mv.de">DVZ M-V</a>, the state's IT services provider.</p><p>The state's CIO, <a href="https://www.regierung-mv.de/Landesregierung/im/Ministerium/Organigramm/Anschuetz,-Marco">Marco Ansch&uuml;tz</a>, says the SharePoint migration for the first 5,000 employees went smoothly, with no disruption or data loss, further adding that:</p><blockquote>Together with DVZ M-V, we've built a platform that runs reliably today and is being expanded step by step.</blockquote><p><em>The above quote was translated from Deutsch. </em>&#128221;</p><p>Nextcloud isn't the only aspect of the open source push. Mecklenburg-Vorpommern also uses <a href="https://www.openproject.org">OpenProject</a> as an alternative to proprietary project management tools and has built its own administrative AI assistant, <strong>LEA</strong>, that is based on <a href="https://openwebui.com">OpenWebUI</a>.</p><h2 id="not-a-solo-effort">Not a solo effort</h2><p>The northern state isn't figuring this out alone. In 2025, its Ministry of Finance and Digitalization <a href="https://www.regierung-mv.de/Aktuell/?id=215184">signed a cooperation agreement</a> (<em>in Deutsch</em>) with the State Chancellery of Schleswig-Holstein, specifically to strengthen digital sovereignty across both states.</p><p>That's a state which needs no introduction when it comes to adopting open source solutions to <a href="https://en.wikipedia.org/wiki/Big_Tech">Big Tech</a> problems.</p><p>Many of their governmental agencies have already migrated their email system off Microsoft Exchange and Outlook, made LibreOffice mandatory across their administration, and are expecting <a href="https://itsfoss.com/news/german-state-ditch-microsoft/">to save more than &euro;15 million a year</a> in licensing costs as a result.</p><p>Nationally, Germany backs the same direction with the <a href="https://itsfoss.com/news/germany-digital-stack-mandate/">Deutschland-Stack</a>, a sovereign infrastructure framework. It limits public administration to two document formats, <em>ODF</em> and <em>PDF/UA</em>, excluding Microsoft's <code>.doc</code>, <code>.ppt</code>, and <code>.xls</code> entirely.</p><p>The framework also favors open source tools and European providers over foreign ones, aiming to cut vendor lock-in, and promoting digital sovereignty across public administration.</p><h2 id="wrapping-up">Wrapping up</h2><p>None of this means <strong>Mecklenburg-Vorpommern is cutting ties with Microsoft entirely</strong>. SharePoint is out, sure, but that's the scope of what's actually announced so far.</p><p>Nonetheless, going from 5,000 employees to their stated target of 50,000+ is a massive undertaking, and with two states coordinating this move instead of migrating separately, their alliance might end up as an example for other German states to follow.</p><hr><p><strong>Suggested Read &#128214;: </strong><a href="https://itsfoss.com/news/austrian-ministry-kicks-out-microsoft/" rel="noreferrer"><em>Austrian Ministry Kicks Out Microsoft in Favor of Nextcloud</em></a></p>
<img src="https://feed.itsfoss.com/link/24361/17375382.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[ORICO 88 Series 4-Bay USB4 NVMe SSD Enclosure Review: Fast Storage That Works Natively on Linux]]></title>
      <description><![CDATA[A compact 4-bay NVMe enclosure with USB4 connectivity, tested on Linux with benchmarks.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17374968/orico-das-8848u-review</link>
      <guid isPermaLink="false">6a4d10e48181fe0001a5928f</guid>
      <category><![CDATA[Gadgets 🎛️]]></category>
      <dc:creator><![CDATA[Abhishek Prakash]]></dc:creator>
      <pubDate>Wed, 08 Jul 2026 19:28:14 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/07/orico-das-side-3-1.webp" medium="image">
        <media:description type="plain">Orico DAS 8848U</media:description>
      </media:content>
      <content:encoded><![CDATA[
<p>Ever tried a DAS (Direct-Attached Storage) device? </p><p>Unlike NAS, where you have a bunch of hard drives available over network, DAS is directly connected to your computer.</p><p>I never used such a product because I never had the need. But then Orico sent me there new DAS 88 Series 4-Bay USB4 NVMe SSD Enclosure and I got the opportunity to use a DAS for the first time ever.</p><p>Sharing my experience and some benchmarking test that I did for the first time in several years.</p><h2 id="orico-8848u4-das-specification">Orico 8848U4 DAS Specification</h2><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/orico-das-side-3.webp" class="kg-image" alt="Orico DAS 8848U" loading="lazy" width="1200" height="676" srcset="https://itsfoss.com/content/images/size/w600/2026/07/orico-das-side-3.webp 600w, https://itsfoss.com/content/images/size/w1000/2026/07/orico-das-side-3.webp 1000w, https://itsfoss.com/content/images/2026/07/orico-das-side-3.webp 1200w" sizes="(min-width: 720px) 720px"></figure><p>Here's the quick hardware specifications for Orico 8848U DAS:</p>
<!--kg-card-begin: html-->
<table>
<thead>
<tr>
<th>Spec</th>
<th>Details</th>
</tr>
</thead>
<tbody>
<tr>
<td>Model</td>
<td>8848U4 USB4</td>
</tr>
<tr>
<td>Drive Bays</td>
<td>4 x M.2 NVMe (2230, 2242, 2260, 2280)</td>
</tr>
<tr>
<td>Interface</td>
<td>USB4 (40Gbps in total)</td>
</tr>
<tr>
<td>RAID Support</td>
<td>None</td>
</tr>
<tr>
<td>Max Capacity</td>
<td>8TB per bay / 32TB total</td>
</tr>
<tr>
<td>Cooling</td>
<td>Aluminum body + built-in fan</td>
</tr>
<tr>
<td>Power</td>
<td>12V/3A external adapter</td>
</tr>
<tr>
<td>Expansion Ports</td>
<td>None</td>
</tr>
<tr>
<td>Dimensions</td>
<td>167 x 101 x 119.5 mm</td>
</tr>
<tr>
<td>OS Support</td>
<td>Windows, macOS, Linux</td>
</tr>
</tbody>
</table>
<!--kg-card-end: html-->
<p>Do note that there is also a SATA version of DAS in the same 88 Series lineup. It is older, bigger and has a RAID mode. The version I tested is M.2 NVMe SSD only and without built-in RAID functionality. That's intentional to give you the raw NVMe speed in a compact form factor.</p><p>Do note that this is a diskless enclosure. You bring your own M.2 NVMe drives. You cannot expect to get enclosures with SSD disks for under $200 in this age of AI slop.</p><h2 id="build-quality-and-design">Build Quality And Design</h2><p>The first thing I noticed is how good this thing looks. The CNC-machined aluminum body has a silver finish that would blend right into a Mac-heavy studio desk. I am a Linux person, not an Apple person, but I will admit the build quality is quite impressive. Feels solid. My Terramaster NAS also has silver-gray aluminium chasis but this one is more "Mac looking."</p><p>All the ports and controls are on the back. There is a USB4 Type-C port, 12V DC power input, a dedicated power button, and a cooling fan. </p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/orico-das-back.webp" class="kg-image" alt="Orico DAS 8848U backside" loading="lazy" width="1200" height="676" srcset="https://itsfoss.com/content/images/size/w600/2026/07/orico-das-back.webp 600w, https://itsfoss.com/content/images/size/w1000/2026/07/orico-das-back.webp 1000w, https://itsfoss.com/content/images/2026/07/orico-das-back.webp 1200w" sizes="(min-width: 720px) 720px"></figure><p>The power button being on the back is a minor annoyance if the enclosure is tucked away. Worth planning your desk layout around it. The power button glows when pressed but difficult to look at it in the back. </p><p>The front has disk bay access with a slider button. It's a little bit stiff but not worth complaining about. The disk bay can host M.2 NVMe SSDs of various sizes. I only tested it with 2280 but guess that doesn't really matter.</p><p>The front also has 4 indicators at the bottom. They glow blue when the DAS is attached to a running computer.</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/orico-das-front.webp" class="kg-image" alt="Orico DAS 8848U front" loading="lazy" width="1200" height="676" srcset="https://itsfoss.com/content/images/size/w600/2026/07/orico-das-front.webp 600w, https://itsfoss.com/content/images/size/w1000/2026/07/orico-das-front.webp 1000w, https://itsfoss.com/content/images/2026/07/orico-das-front.webp 1200w" sizes="(min-width: 720px) 720px"></figure><p>Sides has nothing, just minimal branding.</p><p>The fan is there for active cooling, and ORICO claims it operates under 30dB. In my testing, the device felt completely silent. The fan does start running as soon as power is turned on but there is no audible noise unless you put your ear near the fan vent.</p><p>There is no fan speed control that I could find, which is a small omission. It would be nice to have a quiet mode toggle, but in practice it's a non-issue.</p><p>Keep in mind that the enclosure has no passthrough port. There is a single USB4 connection and that's about it. If you need to daisy-chain other Thunderbolt peripherals, this will consume your only port. On a laptop with limited Thunderbolt ports, this is something worth thinking about before buying.</p><h2 id="linux-compatibility">Linux Compatibility</h2><p>I noticed that the drive appeared as a native NVMe device. This means that each drive in the enclosure shows up as a separate NVMe namespace (nvme1p1, nvme1p2 etc) under a single controller.</p><pre><code class="language-bash">$ cat /sys/class/nvme/nvme1/transport
pcie                             #output
</code></pre><p>And this detail matters because it means that the Thunderbolt PCIe tunneling is working correctly. The OS treats these drives as if they are plugged directly into the motherboard's PCIe bus, not as USB devices. My <a href="https://amzn.to/4wuXUe7">Sandisk external SSD</a> comes up under /dev/sda that means it's treated as USB.</p><h2 id="performance-testing">Performance Testing</h2><p>I tested with a <a href="https://amzn.to/44SNzNg">Crucial CT500P3PSSD8</a> (P3 Plus 500GB NVMe) installed in one bay. I only had one drive available for testing. Rest of them were being used in <a href="https://itsfoss.com/zimacube-2-review/" rel="noreferrer">ZimaCube</a> and Terramaster NAS. I have to buy new NVMe SSDs but the prices are not coming down. I ran benchmarks using <a href="https://linux.die.net/man/1/fio">fio</a> and hdparm, and also timed some real-world file transfers.</p><h3 id="understanding-the-40gbps-claim">Understanding The "40Gbps" Claim</h3><p>It is easy to get excited with numbers but let's analyze the numbers. ORICO itself clarifies this in the product page: each drive achieves up to 10Gbps when all four bays are operating simultaneously. The 40Gbps is the total aggregate across all four drives. A single bay doesn't get 40Gbps.</p><p>In practice, even that 10Gbps per drive is rare achievement. Thunderbolt 4 tunnels PCIe 3.0 x4, which gives around 3500 MB/s of usable bandwidth total. Divided across four bays, each drive gets roughly 800-900 MB/s of real-world headroom. Mind the difference between bits and bytes.</p><p>My single-drive benchmarks came almost there, which indicates that the enclosure is performing exactly as it should. If I had 3 more spare SSDs, I would have tested the full 40Gbps claim.</p><h3 id="benchmark-results-ext4">Benchmark Results (ext4)</h3><p>I tested with two filesystem configurations. The reliable numbers come from the ext4 run, where direct I/O (O_DIRECT) was fully confirmed working with no cache assistance.</p>
<!--kg-card-begin: html-->
<table>
<thead>
<tr>
<th>Test</th>
<th>Result</th>
</tr>
</thead>
<tbody>
<tr>
<td>Sequential Read</td>
<td>729 MB/s</td>
</tr>
<tr>
<td>Sequential Write</td>
<td>669 MB/s</td>
</tr>
<tr>
<td>Random 4K Read</td>
<td>71 MiB/s / 18.2k IOPS</td>
</tr>
<tr>
<td>Random 4K Write</td>
<td>103 MB/s / 26.3k IOPS</td>
</tr>
<tr>
<td>Raw device read (hdparm)</td>
<td>763 MB/s</td>
</tr>
</tbody>
</table>
<!--kg-card-end: html-->
<p>Sequential read at 729 MB/s and sequential write at 669 MB/s are pretty good numbers. Pretty close to the numbers I discussed earlier. That's the advantage of using NVMe over a PCIe tunnel. </p><h3 id="ntfs-vs-ext4">NTFS vs ext4</h3><p>Since the Crucial drive I installed was previously formatted as NTFS, I benchmarked it in that state before reformatting to ext4.</p>
<!--kg-card-begin: html-->
<table>
<thead>
<tr>
<th>Test</th>
<th>NTFS</th>
<th>ext4</th>
</tr>
</thead>
<tbody>
<tr>
<td>Sequential Read</td>
<td>820 MB/s*</td>
<td>729 MB/s</td>
</tr>
<tr>
<td>Sequential Write</td>
<td>231 MB/s</td>
<td>669 MB/s</td>
</tr>
<tr>
<td>Random 4K Write</td>
<td>~2.3 MB/s</td>
<td>103 MB/s</td>
</tr>
</tbody>
</table>
<!--kg-card-end: html-->
<p>NTFS sequential read was partially served from <a href="https://medium.com/@xiaolongjiang/linux-fuse-file-system-performance-learning-efb23a1fb83f">OS cache due to FUSE limitations</a> and  thus it is not a reliable number. Don't think that NTFS is somehow better than ext4 ;)</p><p>The NTFS write performance is inconsistent. Sequential writes drop to 231 MB/s and random 4K writes fall to around 2.3 MB/s. </p><p>Mind that this is not the DAS's fault. Linux accesses NTFS through the ntfs-3g FUSE driver, which adds overhead, especially on small random writes. The raw device speed (hdparm on the block device directly, bypassing any filesystem) was virtually identical in both runs at around 764 MB/s, which confirms the ORICO hardware is not the bottleneck.</p><div class="kg-card kg-callout-card kg-callout-card-blue"><div class="kg-callout-emoji">&#128203;</div><div class="kg-callout-text">If you plan on using this enclosure exclusively on Linux, format your drives in ext4 format for better write performance. If you need Windows compatibility, exFAT is a better choice than NTFS for Linux users, as it avoids the FUSE overhead while remaining readable on all operating systems.</div></div><h3 id="real-world-transfers">Real-World Transfers</h3><p>I am not a fan of bechmarking tests. They do not capture how the device actually feels to use. So I ran two practical tests.</p><p>Copying a 5GB 4K video file to the DAS took just over 4.5 seconds. </p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/orico-das-real-world-copy-2.png" class="kg-image" alt="Orico DAS 8848U copy test" loading="lazy" width="1768" height="404" srcset="https://itsfoss.com/content/images/size/w600/2026/07/orico-das-real-world-copy-2.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/orico-das-real-world-copy-2.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/07/orico-das-real-world-copy-2.png 1600w, https://itsfoss.com/content/images/2026/07/orico-das-real-world-copy-2.png 1768w" sizes="(min-width: 720px) 720px"></figure><p>A folder with nearly 2,800 photos and videos totaling 10.2GB transferred in under 12 seconds.</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/orico-das-real-world-copy-1.png" class="kg-image" alt="Orico DAS 8848U copy test" loading="lazy" width="1869" height="394" srcset="https://itsfoss.com/content/images/size/w600/2026/07/orico-das-real-world-copy-1.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/orico-das-real-world-copy-1.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/07/orico-das-real-world-copy-1.png 1600w, https://itsfoss.com/content/images/2026/07/orico-das-real-world-copy-1.png 1869w" sizes="(min-width: 720px) 720px"></figure><p>Note that Linux buffers writes in RAM before flushing to disk in the background, so these numbers reflect the immediate user experience rather than sustained disk throughput. </p><h2 id="things-to-keep-in-mind">Things To Keep In Mind</h2><p>The no-passthrough situation is probably the biggest practical limitation but only if you need to daisy chain multiple devices and only have few thunderbolt ports available on your system.</p><p>No RAID support is by design here, but something to keep in mind if you were hoping for redundancy. </p><p>Fan control would be a nice addition, perhaps? The device was silent in my use, but there is no software or hardware toggle to set a fan curve or force it off. Definitely not a dealbreaker, just something I noticed.</p><p>Another thing to note is that there is not enough space for a heatsink since the device has a compact size.</p><p>Also note that for $219 you are buying a diskless enclosure. Four decent NVMe drives to fill it will cost a lot more. That's an obvious thing but I still would like to state that.</p><h2 id="who-is-this-for-really">Who Is This For Really?</h2><p>The primary userbase for something like this is video editors and creative professionals who are constantly moving large files. </p><p>If you are working with 4K or 8K footage across multiple projects, you'll have TBs of data and your internal SSD would fill up fast. A 4-bay NVMe DAS sitting on your desk gives you that additional storage without the latency of a NAS. You plug it in and it just works like local storage, because over Thunderbolt 4, it effectively is.</p><p>It is also a good fit for you if you already have a handful of spare NVMe drives sitting around from previous hardware upgrades. Instead of those drives collecting dust in a drawer, you slot them in here and have a fast, compact multi-terabyte storage pool at your desk.</p><p>That said, this is not for everyone. If you just need an extra 1 or 2TB of portable storage, a simple USB-C external SSD will do the job at a fraction of the cost and with far less desk space and will also be portable. A dedicated 4-bay DAS only makes sense when you need the multi-bay capacity.</p><p>Some NAS devices offer a feature called direct attach, where you plug the NAS directly into your computer over Thunderbolt and use it as local storage rather than over the network. <a href="https://www.zimaspace.com/products/cube-personal-cloud">ZimaCube</a> highlights this as a use case. </p><p>The difference here is that a NAS with decent specs will cost you significantly more than this DAS. If all you need is fast desk-side storage without the NAS software stack and network overhead, the ORICO DAS is a simpler and cheaper solution.</p><h2 id="conclusion">Conclusion</h2><p>As a Linux user, the experience was better than I expected. No driver issues, no special configuration needed. </p><p>The drive showed up as native NVMe devices and behaved like internal storage. Format to ext4 and you get fast sustained speeds in both directions. </p><p>Do evaluate your needs and if it fits, you can <a href="https://oricotechs.com/products/orico-88-series-4bay-usb4-nvme-ssd-enclosure">get it from its official website</a> or order it on Amazon: </p><div class="kg-card kg-button-card kg-align-center"><a href="https://amzn.to/4vVSysy" class="kg-btn kg-btn-accent">ORICO 88 Series 4-Bay USB4 NVMe SSD Enclosure on Amazon</a></div>
<img src="https://feed.itsfoss.com/link/24361/17374968.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[TUXEDO OS is Ditching Ubuntu for a Debian Base That Never Goes Stable]]></title>
      <description><![CDATA[Their dependency on Ubuntu &#x27;snapped&#x27; so they are &quot;testing&quot; Debian now.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17374891/tuxedo-os-is-ditching-ubuntu</link>
      <guid isPermaLink="false">6a4ddc618181fe0001a595b7</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Wed, 08 Jul 2026 17:32:28 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/07/tuxedo-os-debian-testing-rebase-banner.png" medium="image">
        <media:description type="plain">a screenshot of tuxedo os (debian testing base) is placed in the center, with the background being mixed shades of green</media:description>
      </media:content>
      <content:encoded><![CDATA[
<p>TUXEDO Computers has announced that their Linux distribution <a href="https://www.tuxedocomputers.com/en/A-new-foundation-for-TUXEDO-OS-Switching-to-Debian.tuxedo">is moving away</a> from Ubuntu, with Debian taking over as its new base. TUXEDO OS is the default choice on every TUXEDO machine, but it's not exclusive to their hardware, and anyone can just grab an image and run it on their computer.</p><p>Going forward, the distro will be based on <a href="https://www.debian.org/devel/testing" rel="noreferrer">Debian Testing</a> instead of an Ubuntu LTS release, under what the company calls the <em><strong>Continuous Debian</strong></em> approach. The move is permanent too, as TUXEDO OS will not follow <em>Testing</em> into the next Debian stable release.</p><p>Behind the switch is also a fair bit of frustration with how <a href="https://canonical.com/">Canonical</a> has been steering Ubuntu lately. Announcing the rebase, they stated that:</p><blockquote>By moving to Debian, TUXEDO OS gains substantially more independence while reducing the effort required to maintain up-to-date software. The result is a robust operating system with a clear focus on digital sovereignty&mdash;for both TUXEDO customers and users running TUXEDO OS on third-party hardware.</blockquote><h2 id="done-with-ubuntu">Done with Ubuntu</h2><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/07/tuxedo-os-debian-rebase-early-1.png" width="1476" height="908" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/07/tuxedo-os-debian-rebase-early-1.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/tuxedo-os-debian-rebase-early-1.png 1000w, https://itsfoss.com/content/images/2026/07/tuxedo-os-debian-rebase-early-1.png 1476w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/07/tuxedo-os-debian-rebase-early-2.png" width="1476" height="908" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/07/tuxedo-os-debian-rebase-early-2.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/tuxedo-os-debian-rebase-early-2.png 1000w, https://itsfoss.com/content/images/2026/07/tuxedo-os-debian-rebase-early-2.png 1476w" sizes="(min-width: 720px) 720px"></div></div></div><figcaption><p><i><em class="italic" style="white-space: pre-wrap;">Source: TUXEDO Computers</em></i></p></figcaption></figure><p>TUXEDO says that an aging <a href="https://itsfoss.com/long-term-support-lts/">LTS</a> base makes backporting harder as time goes on, since newer dependencies are often missing or stuck on outdated versions. Things get worse when core libraries like Qt (<em>which KDE Plasma runs on</em>) get updated and break software pulled from Ubuntu's repositories.</p><p><a href="https://snapcraft.io/about">Snaps</a> are another pain point, as Canonical keeps moving toward packaging and delivering Snap-only software, making it harder for TUXEDO to keep those components out of their distribution.</p><p>Similarly, <a href="https://itsfoss.com/news/ubuntu-is-getting-ai/">the Ubuntu AI roadmap</a> hasn't offered much clarity on how it will actually work, and slow security updates were the final points of contention.</p><h2 id="the-new-base">The new base</h2><p>With Ubuntu now gone, <em>Debian Testing</em>, the development branch of <a href="https://www.debian.org/">Debian</a>, becomes the new base. New packages arrive here from <em>Debian Unstable</em>, but only after <a href="https://itsfoss.com/news/debian-makes-reproducible-builds-mandatory/">proving they build identically from the same source</a>, a requirement Debian made mandatory back in May.</p><p>The switch is already visible under the hood too, as the internal testing version of TUXEDO OS is pulling from Debian's repositories instead of Ubuntu's (<em>as shown above</em>).</p><h2 id="why-should-you-care">Why should you care?</h2><p>Don't think that this is only a rebase; TUXEDO Computers is also working on introducing some major upgrades.</p><p><a href="https://en.wikipedia.org/wiki/Btrfs">Btrfs</a> becomes the default file system on new installs, paired with <a href="https://github.com/openSUSE/snapper">Snapper</a> for automatic snapshots before every update. That is the same setup openSUSE has used for years, so it is a proven solution.</p><p>They haven't detailed their kernel strategy yet. My guess, and <em>it's only a guess</em> until TUXEDO confirms otherwise, is <strong>something closer to how Ubuntu or Fedora handle it</strong>, <a href="https://itsfoss.com/news/ubuntu-latest-kernel/">shipping recent kernels quickly</a> instead of sitting on an older one for stability's sake.</p><p>A visual overhaul is also on the way, though they haven't locked in the new look yet, and current builds still run the old theme over the new Debian base. Gaming and enterprise use cases are both getting attention too, with the specifics being shared later.</p><p><strong>If you are already running the Ubuntu-based TUXEDO OS</strong>, there is no direct upgrade path here. A clean install will be required, and TUXEDO says a full migration guide is coming before the final release shows up.</p><p>Alternatively, if you would rather stay on an Ubuntu base, the company will be offering a transition path to <a href="https://itsfoss.com/news/kubuntu-26-04-lts/">Kubuntu 26.04</a> instead.</p><h2 id="when-to-expect">When to expect?</h2><p>An extensive beta testing phase kicks off in the coming weeks, aimed at non-production setups. Expect things to shift based on feedback and whatever release blockers turn up along the way.</p><p>If you want a more complete look at what they are cooking up, the next <a href="https://froscon.org/en/">FrOSCon</a> happening in August is the place to be. The TUXEDO Computers team will be presenting this new development direction in a dedicated talk.</p>
<img src="https://feed.itsfoss.com/link/24361/17374891.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[LOL! Storage Bug on Microsoft Windows 11 Could Eat Up 500 GB Disk Space]]></title>
      <description><![CDATA[A Microsoft customer support agent even suggested buying a new hard disk instead of acknowledging the problem.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17374380/windows-11-cam-bug</link>
      <guid isPermaLink="false">6a4c9c368181fe0001a5901b</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Tue, 07 Jul 2026 18:24:07 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/07/windows-11-storage-bug-banner.png" medium="image">
        <media:description type="plain">the blue-colored blocky windows logo is on the left, an illustration showing a bug in a hard drive causing it to run out of space on the right</media:description>
      </media:content>
      <content:encoded><![CDATA[
<p>We are used to hearing about Copilot eating storage space on Windows machines, showing up in applications <a href="https://www.windowscentral.com/microsoft/windows-11/microsoft-finally-begins-removing-copilot-from-notepad-on-windows-11-but-the-ai-still-persists">it has no business in</a>, and generally being a nuisance for anyone who prefers an AI-free computer.</p><p>Now, we have a Windows log file that has been <a href="https://www.windowslatest.com/2026/07/06/microsoft-admits-a-windows-11-bug-is-eating-up-to-500gb-of-storage-verify-if-you-are-affected/">silently eating up space</a> on people's storage drives, with a Microsoft customer support agent even suggesting buying a new hard drive when a user complained about it.</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/ms-forum-question.webp" class="kg-image" alt="a complaint by a user named donald gibson that lays out the issue with capability access manager (cam)" loading="lazy" width="1653" height="1079" srcset="https://itsfoss.com/content/images/size/w600/2026/07/ms-forum-question.webp 600w, https://itsfoss.com/content/images/size/w1000/2026/07/ms-forum-question.webp 1000w, https://itsfoss.com/content/images/size/w1600/2026/07/ms-forum-question.webp 1600w, https://itsfoss.com/content/images/2026/07/ms-forum-question.webp 1653w" sizes="(min-width: 720px) 720px"></figure><h2 id="what-happened">What happened?</h2><p>The file responsible is <code>CapabilityAccessManager.db-wal</code>, a write-ahead log for the database Windows uses to track camera, microphone, and location permission requests. It's supposed to stay a few megabytes and clear itself out after about a month. Instead, it can balloon past 500GB, sitting in a folder Windows won't even let you open to check.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://itsfoss.com/content/images/2026/07/windows-11-cam-storage-bug.png" class="kg-image" alt="windirstat being used to analyze the storage consumption of the capabilityaccessmanager on windows 11" loading="lazy" width="1174" height="720" srcset="https://itsfoss.com/content/images/size/w600/2026/07/windows-11-cam-storage-bug.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/windows-11-cam-storage-bug.png 1000w, https://itsfoss.com/content/images/2026/07/windows-11-cam-storage-bug.png 1174w" sizes="(min-width: 720px) 720px"><figcaption><i><em class="italic" style="white-space: pre-wrap;">Original pic via </em></i><a href="https://www.reddit.com/r/techsupport/comments/1kwtfcn/comment/mukcobn/" rel="noreferrer"><i><em class="italic" style="white-space: pre-wrap;">Agumon_Hakase</em></i></a><i><em class="italic" style="white-space: pre-wrap;">.</em></i></figcaption></figure><p>The user who got the hard drive advice was Donald Gibson, who posted about it on <a href="https://learn.microsoft.com/en-us/answers/questions/5815087/capabilityaccessmanager-is-devouring-my-hard-drive" rel="noreferrer">Microsoft's Q&amp;A forum</a> in March 2026. His <em>System and Reserved</em> storage had ballooned to 111GB when it should have sat around 40GB, <strong>all thanks to a single 66.5GB <em>CapabilityAccessManager.db-wal</em> file</strong> eating up precious space on his 221GB drive.</p><p>When he contacted Microsoft support, the agent had never heard of the bug and had to loop in a supervisor before responding. The result was <strong>a suggestion to buy a new portable hard drive</strong>, and <strong>no help deleting the bloated file</strong> either.</p><p>This is not something new that has popped over the past few months, <a href="https://www.reddit.com/r/techsupport/comments/1kwtfcn/my_harddrive_is_growing_slowly_with_500gb_of/">a Reddit thread</a> from a year ago had <strong>the same file ballooning to 513GB</strong> on someone else's machine, with no folder anywhere to explain where the space went.</p><h2 id="a-quiet-fix">A quiet fix</h2><p>The <a href="https://support.microsoft.com/en-us/topic/june-23-2026-kb5095093-os-builds-26200-8737-and-26100-8737-preview-0e2a20f2-cf9e-46f8-9f08-e6996220882d">official fix</a> didn't show up until June 29, quietly tacked onto the release notes under the "<em>Change log</em>" section for a preview update that had already shipped six days earlier.</p><p>But not everyone will have this now, as the full rollout is expected with the July 2026 <a href="https://en.wikipedia.org/wiki/Patch_Tuesday">Patch Tuesday</a> update, which is well over a year after the first reports started showing up.</p><p>The same update also shipped a redesigned Start menu, a new point-in-time restore feature, and support for bigger local AI models, so it is not like Microsoft was short on engineering hours to spare.</p><hr><p><strong>Suggested Read &#128214;: </strong><a href="https://itsfoss.com/news/brave-browser-containers/"><em>Brave Says This is Not a Privacy Feature</em></a></p>
<img src="https://feed.itsfoss.com/link/24361/17374380.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[This E-Paper PDA Wants You to Ditch Your Smartphone for a Keyboard and Two Tiny Screens]]></title>
      <description><![CDATA[It runs a custom open source OS on an ESP32-S3, has a physical keyboard and dual displays, and starts at $185 on Crowd Supply.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17374265/pocketmage-campaign</link>
      <guid isPermaLink="false">6a4c920b8181fe0001a58fa9</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Abhishek Prakash]]></dc:creator>
      <pubDate>Tue, 07 Jul 2026 12:21:28 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/07/pocketmage.webp" medium="image">
        <media:description type="plain">Pocketmage</media:description>
      </media:content>
      <content:encoded><![CDATA[
<p>Every few months (or years, depending upon how old you are), there is a new "anti-smartphone" device that comes with a physical keyboard and a tiny screen and focuses on doing one thing well.</p><p><a href="https://getfreewrite.com/">Freewrite</a> did it for writers. <a href="https://www.clockworkpi.com/picocalc">PicoCalc</a> did it for tinkerers. Now Talisman Design, an independent hardware studio out of Phoenix, Arizona, wants a shot at it with <a href="https://pocketmage.org/">PocketMage</a>, a pocketable personal digital assistant that <a href="https://www.crowdsupply.com/talisman-design/pocketmage">just launched on Crowd Supply</a>.</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/XXC6f95h8JM?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen="" title="PocketMage PDA - Launch Announcement"></iframe></figure><h2 id="pocketmage-key-specifications">PocketMage Key Specifications</h2><p>Let's take a look at the hardware:</p><ul><li><strong>Chip:</strong> ESP32-S3 with Wi-Fi and Bluetooth</li><li><strong>RAM:</strong> 2 MB QSPI PSRAM</li><li><strong>Displays:</strong> 3.1-inch e-paper (320x240) + 1.8-inch OLED (256x32)</li><li><strong>OS:</strong> <a href="https://pocketmage.org/pocketmageos/">PocketMageOS</a>, custom, open source, built on FreeRTOS </li><li><strong>Storage</strong>: 16 MB QSPI flash and MicroSD card slot</li><li><strong>Battery:</strong> 1200mAh LiPo, rated for about 7 days</li><li><strong>User Input</strong>: Built-in tactile QWERTY keyboard, USB keybord support and touch scrollbar on main screen</li><li><strong>Expansion: </strong>FPC port with I2C, SPI, UART, GPIO and power</li><li><strong>Dimensions:</strong> 100 x 73 x 21.7 mm</li><li><strong>Shipping:</strong> expected by the end of March 2027</li></ul><p>I find the dual-display setup interesting in this tiny device. There is the main 3.1-inch e-paper panel display and then there is a secondary, 1.8-inch OLED strip for menus and anything that needs a fast refresh. Somewhat like those touchbars in MacBooks except that it's display only.</p><p>That's deliberate because although e-paper is sunlight-readable and power-friendly, it's too slow for scrolling menus and hence the secondary OLED display.</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/pocketmage-closeup.jpg" class="kg-image" alt="PocketMage" loading="lazy" width="1600" height="900" srcset="https://itsfoss.com/content/images/size/w600/2026/07/pocketmage-closeup.jpg 600w, https://itsfoss.com/content/images/size/w1000/2026/07/pocketmage-closeup.jpg 1000w, https://itsfoss.com/content/images/2026/07/pocketmage-closeup.jpg 1600w" sizes="(min-width: 720px) 720px"></figure><p>Underneath all that is an ESP32-S3, which may feel like an unusual choice for something marketed as a PDA. It's a microcontroller, not the kind of chip you'd find running a full desktop OS, but that's sort of the point. </p><p>ESP32 boards have gained a massive hobbyist ecosystem of late, which means PocketMage keeps the whole thing low-power enough to hit that 7-day battery estimate.</p><p>A DIY kind of gadget should allow tinkerers some tinkering room. PocketMage doesn't disappoint. It has an FPC expansion port with I2C, SPI, UART, and GPIO for anyone who wants to bolt on their own hardware and thus showing off your engineering skills more than your writing skills.</p><h2 id="at-the-core-pocketmageos-and-the-bazaar">At the core: PocketMageOS and the Bazaar</h2><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/pocketmage-app-bazar.webp" class="kg-image" alt="PocketMage app loading" loading="lazy" width="1200" height="737" srcset="https://itsfoss.com/content/images/size/w600/2026/07/pocketmage-app-bazar.webp 600w, https://itsfoss.com/content/images/size/w1000/2026/07/pocketmage-app-bazar.webp 1000w, https://itsfoss.com/content/images/2026/07/pocketmage-app-bazar.webp 1200w" sizes="(min-width: 720px) 720px"></figure><p>PocketMage doesn't run Linux. It runs PocketMageOS, a custom, "wizard-inspired" operating system built on <a href="https://www.freertos.org/">FreeRTOS</a>, with a built-in suite that includes a Markdown text editor, a dictionary, a journaling app, and a terminal.</p><p>Third-party apps get distributed through something called the <a href="https://pocketmage.org/bazaar/">Bazaar</a>, essentially an app store for sideloaded software. I can already see a calculator, a text-based web browser, an e-book reader, a Pomodor timer and, a bit oddly, a Tarot card reader among the available apps.</p><div class="kg-card kg-callout-card kg-callout-card-blue"><div class="kg-callout-emoji">&#128203;</div><div class="kg-callout-text">Everything, hardware and software, ships under the Apache-2.0 Open Source Hardware license, with KiCad design files and firmware on <a href="https://github.com/TailsmanDesign/PocketMage_PDA">GitHub</a>. If you'd rather build one yourself than back the campaign, that option is also available.</div></div><h2 id="back-pocketmage-on-crowd-supply">Back PocketMage on Crowd Supply</h2><p><a href="https://www.crowdsupply.com/talisman-design/pocketmage">PocketMage is live on Crowd Supply</a> now, and at the time of writing this article has raised $66,538 of its $100,000 goal from 204 backers, with 58 days left to go.</p><div class="kg-card kg-button-card kg-align-center"><a href="https://www.crowdsupply.com/talisman-design/pocketmage" class="kg-btn kg-btn-accent">Get PocketMage on CrowdSupply</a></div><p>The DIY kit is $185 and the pre-assembled version is $235, both with free US shipping and a flat $12 for international orders. Both come in Parchment or Royal Purple. Backers should expect deliveries to start by the end of March 2027.</p><div class="kg-card kg-callout-card kg-callout-card-red"><div class="kg-callout-emoji">&#128679;</div><div class="kg-callout-text">As with any crowdfunding campaign, treat the timeline as an estimate. Back it because you want to support the project, not because you're counting on the ship date.</div></div><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://itsfoss.com/content/images/2026/07/PocketMage-Kit.webp" class="kg-image" alt="PocketMage DIY Kit" loading="lazy" width="720" height="485" srcset="https://itsfoss.com/content/images/size/w600/2026/07/PocketMage-Kit.webp 600w, https://itsfoss.com/content/images/2026/07/PocketMage-Kit.webp 720w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">PocketMage DIY Kit</span></figcaption></figure><p>If you're comfortable with the idea of assembling it yourself and want to save $50, the DIY kit gets you the exact same hardware as the assembled version. You only need screwdrivers to assemble it. No soldering required. If you'd rather skip the build entirely, the $235 tier is the way to go.</p><p>The pricing may seem steep at first. But if you look at the alternatives, PicoCalc is cheaper at $89 but doesn't include a battery and only lasts 16 hours on a charge, the Freewrite Traveler costs $549 for a writing-only device with no expansion port, and the <a href="https://www.gpd.hk/gpdmicropc2345345345">GPD MicroPC 2</a> is $680 and not really pocketable at all. </p><p>At $185 to $235, PocketMage isn't the cheapest option in this space, but it's not the priciest either, and it's the only one on that list that's fully open on both hardware and software.</p><h2 id="do-you-need-this-or-do-you-want-this">Do You Need This or Do You Want This?</h2><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/pocketmage-pocket.webp" class="kg-image" alt="PocketMage in a pocket" loading="lazy" width="1600" height="900" srcset="https://itsfoss.com/content/images/size/w600/2026/07/pocketmage-pocket.webp 600w, https://itsfoss.com/content/images/size/w1000/2026/07/pocketmage-pocket.webp 1000w, https://itsfoss.com/content/images/2026/07/pocketmage-pocket.webp 1600w" sizes="(min-width: 720px) 720px"></figure><p>Here's the thing, though. Your phone is already in your pocket, already has a keyboard, and already does everything PocketMage does. That's the harsh truth.</p><p>I can't speak for you, but personally, I doubt if I can use PocketMage for any serious work. But the child inside me would want this just for fun.</p><p>That tiny cyberdeck feel takes you straight back to the 80s when something like this could have been the talk of the town, the envy of your peers.</p><p>And these tiny devices have their own niche market. No wonder that we have several <a href="https://itsfoss.com/raspberry-pi-handhelds/" rel="noreferrer">handheld Raspberry Pi devices</a> and Linux computers.</p><p>It's not a need, it's a want, aimed primarily at hobbyists, cyberdeck builders, and people nostalgic for a Palm Pilot they never quite got over. </p><p>Would you buy a PocketMage? Share your answer in the comments please.</p>
<img src="https://feed.itsfoss.com/link/24361/17374265.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[You Can Now Craft E-Ink Faceplates for the Steam Machine]]></title>
      <description><![CDATA[Valve has quietly open-sourced the design files for the Inkterface project, which uses an ESP32 board.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17374266/inkertface-diy-steam-machine-faceplate</link>
      <guid isPermaLink="false">6a4b6d248181fe0001a58a59</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Tue, 07 Jul 2026 11:22:55 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/07/inkterface-banner.png" medium="image">
        <media:description type="plain">a fully-assembled inkterface e-ink faceplate is shown here installed on a steam machine device</media:description>
      </media:content>
      <content:encoded><![CDATA[
<p>The Steam Machine's swappable front panel just got a very useful upgrade that Valve has put out for free under an <em>MIT License</em>. Called the <strong>Inkterface</strong>, the e-ink faceplate replaces the stock panel with a small Bluetooth-connected display.</p><p><a href="https://www.linkedin.com/in/nakylewright/">NaKyle Wright</a> is the person behind this project, who has published all the design, CAD, and documentation for this under Valve's SteamHardware group on GitLab.</p><p>Wright has been working on this since at least October last year, with the repository covering everything you'd need to actually build the thing.</p><h2 id="whats-included">What's included?</h2><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/inkterface-overview.png" class="kg-image" alt="a blue/green-themed illustration depicting a fully-assembled inkterface e-ink faceplate installed on a steam machine on the left, on the right is the circuit diagram for the inkterface" loading="lazy" width="1280" height="720" srcset="https://itsfoss.com/content/images/size/w600/2026/07/inkterface-overview.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/inkterface-overview.png 1000w, https://itsfoss.com/content/images/2026/07/inkterface-overview.png 1280w" sizes="(min-width: 720px) 720px"></figure><p>You get a full bill of materials which includes an <strong>Adafruit ESP32 Feather</strong>, an <strong>eInk Breakout Friend</strong>, a <strong>5.83 inch monochrome panel</strong>, plus assorted screws and magnets. The repo also includes STEP and STL files for 3D printing, a pin by pin wiring guide, and both a video and PDF walkthrough for assembly.</p><p>Finish the build and you get a panel that clips onto the Steam Machine's chassis with magnets, the same way the stock faceplates do, then pairs with the system over Bluetooth once you've installed the companion service.</p><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/07/inkterface-software-mockup-1.png" width="1412" height="879" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/07/inkterface-software-mockup-1.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/inkterface-software-mockup-1.png 1000w, https://itsfoss.com/content/images/2026/07/inkterface-software-mockup-1.png 1412w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/07/inkterface-software-mockup-2.png" width="1412" height="879" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/07/inkterface-software-mockup-2.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/inkterface-software-mockup-2.png 1000w, https://itsfoss.com/content/images/2026/07/inkterface-software-mockup-2.png 1412w" sizes="(min-width: 720px) 720px"></div></div></div><figcaption><p><i><em class="italic" style="white-space: pre-wrap;">The mockups for Inkterface's companion app.</em></i></p></figcaption></figure><p>That last bit is still under development, but once it's live on <a href="https://store.steampowered.com/app/1222770">Steam</a> (<em>listing redirects to homepage</em>), it will let you find Inkterface faceplates over Bluetooth and choose what shows up on its display. Whether that's live hardware stats or anything else the panel supports.</p><p>Related to that, the Inkterface comes with a handful of system statistics collectors, so you are not stuck with a dumb display with no metrics to show. If there's something else you'd rather track instead, the code is open enough that you can add it yourself.</p><h2 id="start-building">Start building</h2><p>The <a href="https://gitlab.steamos.cloud/SteamHardware/SteamMachine/inkterface/">Inkterface</a> repository has the actual build guide, which is backed up by a full <a href="https://gitlab.steamos.cloud/SteamHardware/SteamMachine/inkterface/-/blob/main/docs/Inkterface%20Assembly.pdf">assembly PDF</a> and a <a href="https://gitlab.steamos.cloud/SteamHardware/SteamMachine/inkterface/-/blob/main/docs/Inkterface%20Assembly.mp4">video walkthrough</a> for anyone who'd rather watch than read.</p><div class="kg-card kg-button-card kg-align-center"><a href="https://gitlab.steamos.cloud/SteamHardware/SteamMachine/inkterface/" class="kg-btn kg-btn-accent">Inkterface</a></div><p>And, thanks to this being open source, any third-party accessory vendor can theoretically build new faceplates based on this. This only makes the case for <a href="https://en.wikipedia.org/wiki/Open-source_hardware">open hardware</a> that much stronger.</p><p>There's also news of JSAUX <a href="https://jsaux.com/pages/steam-machine">teasing a similar accessory</a> since late last year. A swappable e-ink faceplate alongside a LCD and dot matrix version, with the launch happening sometime in 2026.</p><hr><p><strong>Suggested Read &#128214;: </strong><a href="https://itsfoss.com/news/sipeeds-nanokvm-go-crowdfunding/" rel="noreferrer"><em>Sipeed's New KVM Looks Interesting</em></a></p>
<img src="https://feed.itsfoss.com/link/24361/17374266.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[Canonical Puts €40,000 a Year Behind Trifecta Tech to Rustify Ubuntu]]></title>
      <description><![CDATA[ntpd-rs is set to replace Ubuntu&#x27;s time-syncing tools, the same way sudo-rs replaced classic sudo last year.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17374231/ubuntu-ntpd-rs-push</link>
      <guid isPermaLink="false">6a4b8a038181fe0001a58b73</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Tue, 07 Jul 2026 10:34:58 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/07/canonical-trifecta-tech-foundation-banner.png" medium="image">
        <media:description type="plain">canonical logo on left, a handshake illustration in the middle, the trifecta tech foundation logo on the right</media:description>
      </media:content>
      <content:encoded><![CDATA[
<p>Canonical is now <a href="https://ubuntu.com/blog/canonical-becomes-gold-sponsor-of-trifecta-tech-foundation">a Gold Sponsor</a> of the <a href="https://trifectatech.org">Trifecta Tech Foundation</a>, a non-profit focused on keeping critical infrastructure software memory-safe. The new backing comes with <strong>a yearly &euro;40,000 contribution</strong>, meant to fund continued work on memory-safe system utilities written in <a href="https://www.rust-lang.org/" rel="noreferrer">Rust</a>.</p><p>Trifecta Tech Foundation operates projects across three areas: <em>data compression</em>, <em>time synchronization</em>, and <em>privilege boundaries</em>. <a href="https://github.com/trifectatechfoundation/sudo-rs">sudo-rs</a> is its best-known output so far, but the foundation also works on zlib-rs and several other Rust rewrites most Linux users never think about.</p><p>Don't think that Canonical just started contributing to the foundation; it has been a backer since 2025, co-sponsoring the development of sudo-rs, and as you already know, that collaboration paid off.</p><p>It became Ubuntu's <a href="https://itsfoss.com/news/ubuntu-25-10-sudo-rs/">default privilege escalation tool</a> in 25.10 and carried over into 26.04 LTS a few months later.</p><p>The sponsorship is a bigger step in the same direction, part of what Canonical once called an effort to go <em>"carefully but purposefully oxidising Ubuntu</em>." <em>Coreutils</em>, <em>findutils</em>, <em>diffutils</em>, and <em>sudo</em> have already been swapped for Rust alternatives. That leaves time synchronization as the next frontier.</p><p>The current phase of their partnership is moving to <a href="https://trifectatech.org/projects/ntpd-rs/" rel="noreferrer">ntpd-rs</a>, the Rust rewrite that Canonical wants to make Ubuntu's default time synchronization client and server.</p><h2 id="what-do-ubuntu-users-get-out-of-this">What do Ubuntu users get out of this?</h2><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/ntpd-rs-webpage-cropped.png" class="kg-image" alt="a cropped snippet of the ntpd-rs webpage hosted on trifecta tech foundation's website with some informational text" loading="lazy" width="549" height="779"></figure><p>Fewer memory-safety bugs in a piece of software every Ubuntu install relies on to keep its clock, and by extension its TLS certificates, in sync with the rest of the internet.</p><p><strong>ntpd-rs isn't an untested experiment either</strong>. Jon Seager, the VP of Engineering at Canonical, <a href="https://jnsgr.uk/2026/03/ntpd-rs-its-about-time/">points out that</a> it has already been running in production at Let's Encrypt since June 2024, following a staging rollout that started two months earlier.</p><p>Trifecta is also developing <a href="https://trifectatech.org/projects/statime/">Statime</a>, a memory-safe implementation of the <a href="https://www.linuxptp.org">Precision Time Protocol</a> (PTP), with a plan to build its capabilities directly into ntpd-rs.</p><p>Canonical's funding also covers feature-parity work. That includes GPSd IP socket support, multi-threading for NTP servers, and support for multi-homed server setups, closing gaps that currently exist between ntpd-rs and <a href="https://chrony-project.org">chrony</a>.</p><p>For more specialized deployments, the funding also covers <strong>gPTP support</strong>, useful for automotive and connected vehicle use cases, along with <strong>experimental support for the proposed Client-Server PTP protocol</strong>.</p><p>Security is an area of focus too, with work being done to build AppArmor and seccomp profiles for ntpd-rs, matching the isolation chrony already gets. Along with support for <a href="https://github.com/rustls/rustls">rustls</a> to fall back on <a href="https://www.openssl.org">OpenSSL</a> as a crypto provider for organizations with strict compliance policies.</p><h2 id="when-to-expect">When to expect?</h2><p><strong>Canonical is targeting Ubuntu 26.10 as the first real milestone</strong>, including <code>ntpd-rs</code> in the archive so people can start testing it.</p><p>Followed by the bigger goal of introducing ntpd-rs as the default time synchronization tool for Ubuntu in the 27.04 release next year. For you as a regular desktop user, not much will change; this looks to be focused more on sysadmins than anyone else.</p><hr><p><strong>Suggested Read &#128214;: </strong><a href="https://itsfoss.com/sudo-vs-sudo-rs/"><em>sudo vs. sudo-rs, Which One is For You?</em></a></p>
<img src="https://feed.itsfoss.com/link/24361/17374231.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[Return of The Meme! Hannah Montana Linux Lives Again in 2026]]></title>
      <description><![CDATA[A curious developer took it upon himself to revive this *iconic* gem.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17373750/return-of-hannah-montana-linux</link>
      <guid isPermaLink="false">6a4b3f2a8181fe0001a5887e</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Mon, 06 Jul 2026 15:51:12 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/07/hannah-montana-linux-banner.png" medium="image">
        <media:description type="plain">hannah montana linux screenshot is placed in the center with dark-green rays coming out from behind it</media:description>
      </media:content>
      <content:encoded><![CDATA[
<p>Hannah Montana Linux (HML) has become a conversation starter in the land of FOSS (<em>aka FOSSLand?</em>), and somehow, the year is 2026. The remaster, released by <a href="https://www.decacagle.com">Noah Cagle</a>, a developer/YouTuber, has taken us by surprise.</p><p>This <a href="https://www.youtube.com/watch?v=VKx5UZsX9jw">new avatar of HML</a> is a combination of Debian Live tooling and the Calamares installer, with most of the makeover happening inside KDE Plasma, the desktop environment of choice here.</p><p><strong>For anyone unfamiliar</strong>, the original <a href="https://linux.fandom.com/wiki/Hannah_Montana_Linux">Hannah Montana Linux</a> was <em>bestowed</em> upon us in 2009, riding on Kubuntu 9.04 and KDE 4.2, drenched in hot pink Disney Channel branding.</p><p>It might sound like a fever dream, but it was a real, functioning operating system, and that absurdity is precisely what turned it into a long-running Linux meme that never quite died.</p><h2 id="hml-in-2026">HML in 2026!?</h2><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/hannah-montana-linux-desktop.jpg" class="kg-image" alt="a kde plasma interface with pink themeing all over is shown here with the app launcher open and a linux-themed hannah montana wallpaper in the background" loading="lazy" width="1920" height="1080" srcset="https://itsfoss.com/content/images/size/w600/2026/07/hannah-montana-linux-desktop.jpg 600w, https://itsfoss.com/content/images/size/w1000/2026/07/hannah-montana-linux-desktop.jpg 1000w, https://itsfoss.com/content/images/size/w1600/2026/07/hannah-montana-linux-desktop.jpg 1600w, https://itsfoss.com/content/images/2026/07/hannah-montana-linux-desktop.jpg 1920w" sizes="(min-width: 720px) 720px"></figure><p>This variant of HML is built on <a href="https://itsfoss.com/news/debian-13-release/">Debian 13</a>, with non-free repositories enabled from the beginning for easy access to proprietary hardware drivers. Noah used <a href="https://manpages.debian.org/testing/live-build/live-build.7.en.html">live-build</a>, Debian's tool for building custom distributions, and a few custom flags to get this up and running.</p><p>Most of the visual changes you see here are the result of cloning Plasma assets and manually editing them. The "<em>pretty pink</em>" color scheme is a copy of <a href="https://github.com/kde/breeze">Breeze</a> with only the window header and button highlight colors changed.</p><p>The wallpaper is rebuilt from the original 2009 PNG file, resized for widescreen screens, with a recreated glitter effect and Hannah's cutout pasted back in.</p><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/07/hannah-montana-linux-themes.jpg" width="1704" height="1018" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/07/hannah-montana-linux-themes.jpg 600w, https://itsfoss.com/content/images/size/w1000/2026/07/hannah-montana-linux-themes.jpg 1000w, https://itsfoss.com/content/images/size/w1600/2026/07/hannah-montana-linux-themes.jpg 1600w, https://itsfoss.com/content/images/2026/07/hannah-montana-linux-themes.jpg 1704w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/07/hannah-montana-linux-calamares-installer.jpg" width="1920" height="1080" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/07/hannah-montana-linux-calamares-installer.jpg 600w, https://itsfoss.com/content/images/size/w1000/2026/07/hannah-montana-linux-calamares-installer.jpg 1000w, https://itsfoss.com/content/images/size/w1600/2026/07/hannah-montana-linux-calamares-installer.jpg 1600w, https://itsfoss.com/content/images/2026/07/hannah-montana-linux-calamares-installer.jpg 1920w" sizes="(min-width: 720px) 720px"></div></div></div><figcaption><p><i><em class="italic" style="white-space: pre-wrap;">The theme options and Calamares installer on HML.</em></i></p></figcaption></figure><p>Similarly, the icon pack ships with only one replacement icon for the kickoff start menu button, which was taken from the Hannah Montana logo. The panel's pink color comes from a separate Plasma theme, copied and recolored from <a href="https://github.com/L4ki/Breeze-Noir-Dark">Noir Dark</a>'s panel background SVG in <a href="https://inkscape.org">Inkscape</a>.</p><p>All of these pieces are bundled into one <em>Global Theme</em> for quick access.</p><p>For the installer, the default Debian installer was replaced in favor of <a href="https://calamares.io">Calamares</a>, with the distro's existing Calamares-specific assets being reused and redesigned for use in HML to match the rest of the theme.</p><h2 id="grab-an-image">Grab an image</h2><p>Noah has not hosted a dedicated website for this project, so you will have to make do with the <a href="https://gitlab.com/DecaCagle/hannahmontanalinux26">GitLab</a> repository that hosts the source code as well as <a href="https://gitlab.com/DecaCagle/hannahmontanalinux26/-/releases">the latest release</a> of Hannah Montana Linux (<em>v26.1 at the time of writing</em>).</p><div class="kg-card kg-button-card kg-align-center"><a href="https://gitlab.com/DecaCagle/hannahmontanalinux26/-/releases" class="kg-btn kg-btn-accent">Hannah Montana Linux</a></div><p><em>Btw, the main release isn't the only option on offer. </em>&#128071;</p><p>The <a href="https://gitlab.com/DecaCagle/HannahMontanaLinux26Lite">HML26 Lite</a> image swaps Plasma and SDDM for <strong>LXQt</strong> and <strong>LightDM</strong>, making HML a more suitable option for people running RAM-constrained, older hardware.</p><p>And <strong>if you already run Plasma</strong> and just want the look without needing to install a whole new operating system, the <em>exquisite</em> pink theme has its own <a href="https://gitlab.com/DecaCagle/hannah-montana-kde-theme">standalone repository</a>.</p><p>I must say, <strong>this is mostly a passion project</strong>, and only time will tell how maintained this new avatar of HML will be. If you just want to <a href="https://itsfoss.com/distrohopping-issues/">distrohop</a> and see what this offers, then this is a great fit, but if you intend to daily drive it, your mileage may vary.</p><hr><p><strong>Suggested Read &#128214;: </strong><a href="https://itsfoss.com/discontinued-linux-distros/" rel="noreferrer"><em>14 Discontinued Linux Distros I Still Miss</em></a></p>
<img src="https://feed.itsfoss.com/link/24361/17373750.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[Obsidian vs Logseq: Which Note-Taking App Fits Your Workflow Better?]]></title>
      <description><![CDATA[Logseq and Obsidian are both powerful PKM tools, but they work differently. Here’s a practical comparison based on years of using both.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17373694/obsidian-vs-logseq</link>
      <guid isPermaLink="false">6a44e2ee46ba4400013fcfdb</guid>
      <category><![CDATA[Comparison]]></category>
      <dc:creator><![CDATA[Sreenath]]></dc:creator>
      <pubDate>Mon, 06 Jul 2026 13:36:45 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/07/logseq-vs-obsidian.webp" medium="image">
        <media:description type="plain">Obsidian vs Logseq</media:description>
      </media:content>
      <content:encoded><![CDATA[
<p>Obsidian and Logseq may seem similar. Both are local-first note-taking apps, both use Markdown, and both are popular among people building their personal knowledge base.</p><p>But after using both for nearly three years, I can say this: they are not the same kind of tool. Obsidian feels like a powerful Markdown writing environment. Logseq feels like an outliner built for connecting ideas at the block level.</p><p>Both applications <a href="https://itsfoss.com/markdown-guide/" rel="noreferrer">use Markdown</a> as their primary note format. However, Logseq is also actively developing a database-based version alongside its traditional Markdown workflow.</p><p>I have written several tutorials on both <a href="https://itsfoss.com/tag/logseq/">Logseq</a> and Obsidian here on It's FOSS. One of the frequently asked questions in the comments of those articles has been about the differences between Obsidian and Logseq.</p><p>Of course, the major difference is that Logseq is open source and Obsidian is not. Yes, Obsidian is one of <a href="https://itsfoss.com/popular-software-open-source-feel/" rel="noreferrer">those tools that feel like they are open source even when they are not</a>.</p><p>But that major difference is not a difference for many. They want to know which tool they should use for their perfectly curated knowledge base. </p><p>So, I decided to compare both Logseq and Obsidian on certain points that I have noticed in my experience. Instead of trying to declare one as the winner, I'll explain where each application works well, where I struggled, and why I still use both in my daily workflow.</p><div class="kg-card kg-callout-card kg-callout-card-blue"><div class="kg-callout-emoji">&#128203;</div><div class="kg-callout-text">Choose <b><strong style="white-space: pre-wrap;">Obsidian</strong></b> if you prefer traditional Markdown files, folders, long-form writing, strong plugins, and a polished mobile app.<br><br>Choose <b><strong style="white-space: pre-wrap;">Logseq</strong></b> if you prefer outlining, daily journals, block references, open source software, and idea-first note-taking.<br><br>I personally use <b><strong style="white-space: pre-wrap;">Obsidian for writing</strong></b> long text, articles and <b><strong style="white-space: pre-wrap;">Logseq for collecting and connecting ideas</strong></b>.</div></div><p>This is not a recommendation to switch to one application or the other. It is simply a collection of my experiences and the workflow that worked best for me.</p><p>Here is a quick comparison before we go into the details.</p>
<!--kg-card-begin: html-->
<table><thead><tr><th>Feature</th><th>Obsidian</th><th>Logseq</th></tr></thead><tbody><tr><td>Best for</td><td>Long-form notes, writing,<br>structured vaults</td><td>Outlining, daily journals,<br>block references</td></tr><tr><td>Note format</td><td>Markdown files</td><td>Markdown/Org,<br>moving toward database</td></tr><tr><td>Open source</td><td>No</td><td>Yes</td></tr><tr><td>Learning curve</td><td>Easier</td><td>Steeper</td></tr><tr><td>Linking style</td><td>Page/file-level links</td><td>Block-level references</td></tr><tr><td>Mobile app</td><td>More polished</td><td>Less polished,<br>especially on Android</td></tr><tr><td>Plugin ecosystem</td><td>Larger</td><td>Smaller, but more<br>built-in features</td></tr><tr><td>Portability</td><td>Better</td><td>Good, but more<br>Logseq-specific structure</td></tr></tbody></table>
<!--kg-card-end: html-->
<h2 id="local-storage-of-notes">Local Storage of Notes</h2><p>How an application stores your notes is one of the most important aspects of any note-taking system. Fast access to your data and <a href="https://itsfoss.com/news/digital-content-ownership-illusion/" rel="noreferrer">complete ownership</a> of your notes are essential.</p><p>Fortunately, both Obsidian and Logseq follow a local-first approach.</p><h3 id="obsidian">Obsidian</h3><p><a href="https://obsidian.md/">Obsidian</a> stores every note as a standard Markdown (.md) file inside a local folder called a Vault. Since all files remain on your computer by default, you have complete control over your data without depending on external servers or proprietary databases.</p><p>You can also create multiple vaults, allowing you to separate different projects or areas of work. Because everything is stored locally, your notes remain accessible even without internet connection.</p><h3 id="logseq">Logseq</h3><p><a href="https://logseq.com/">Logseq</a> also stores notes locally using Markdown and Org-mode files. However, the project is gradually moving toward a local SQLite database architecture to improve performance, stability, and query capabilities.</p><p>Even with this transition, the <a href="https://logseq.io/p/e3YDyX5AYr" rel="noreferrer">developers have stated</a> that they intend to continue supporting the traditional Markdown-based workflow for users who prefer plain text notes.</p><p>Like Obsidian, Logseq also allows you to maintain multiple collections of notes and switch between them easily.</p><h2 id="plain-markdown-vs-logseqs-bulleted-markdown">Plain Markdown vs Logseq's Bulleted Markdown</h2><p>Although both applications use Markdown, the editing experience is fundamentally different.</p><h3 id="obsidian-1">Obsidian</h3><p>Obsidian follows the traditional Markdown editing approach, where an entire file becomes the main unit of work.</p><p>It is well suited for writing long articles, detailed documentation, or structured notes that resemble conventional documents.</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe src="https://player.vimeo.com/video/1206116276?app_id=122963" width="408" height="240" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin" title="obsidian-for-long-form-articles"></iframe><figcaption><p><span style="white-space: pre-wrap;">Obsidian for Long form Notes</span></p></figcaption></figure><h3 id="logseq-1">Logseq</h3><p>Logseq is built around an outliner. Every line is a collapsible bullet, making each individual block the primary unit of information.</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe src="https://player.vimeo.com/video/1206116249?app_id=122963" width="398" height="240" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin" title="manually-fixed-note-to-make-port-work"></iframe><figcaption><p><span style="white-space: pre-wrap;">Outline Style notes in Logseq</span></p></figcaption></figure><p>Instead of thinking in pages, you naturally build ideas by nesting bullets and creating hierarchies through indentation.</p><h3 id="where-obsidian-feels-better-for-writing">Where Obsidian Feels Better for Writing</h3><p>I use Obsidian whenever I'm writing article drafts or other long-form documents. Its editor feels much more comfortable for continuous writing, and organizing paragraphs is straightforward.</p><p>If you're writing regular articles or lengthy notes, Logseq can sometimes feel restrictive because everything starts as a bullet point.</p><p>I especially notice this when working with a table of contents. In Obsidian, the document structure is easier to visualize because there isn't a bullet interface surrounding every paragraph.</p><p>On the other hand, Logseq is excellent for collecting ideas before writing. Its outline-based interface makes it easy to brainstorm, collapse large sections into a single line, and gradually expand ideas whenever needed.</p><p>When you maintain proper indentation, every parent bullet can almost act as a separate note with all of its supporting information nested underneath.</p><h2 id="interlinking-notes">Interlinking Notes</h2><p>Linking related notes is one of the most important features of any PKM application because that's what separates it from just a random dump of notes and an organized, accessible knowledge base.</p><h3 id="obsidian-2">Obsidian</h3><p>Obsidian connects notes by linking entire files using wiki-style links. It also includes a backlinks panel that shows every note linking to the current document.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://itsfoss.com/content/images/2026/07/backlinks-in-obsidian.png" class="kg-image" alt="When selected the backlinks button, the right side panel shows the backlinks of the current notes in Obsidian." loading="lazy" width="1141" height="653" srcset="https://itsfoss.com/content/images/size/w600/2026/07/backlinks-in-obsidian.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/backlinks-in-obsidian.png 1000w, https://itsfoss.com/content/images/2026/07/backlinks-in-obsidian.png 1141w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Backlinks in Obsidian</span></figcaption></figure><p>To visualize these relationships, Obsidian provides an excellent graph view that displays how your notes connect with each other.</p><h3 id="logseq-2">Logseq</h3><p>Logseq does things differently by introducing block-level references.</p><p>Instead of linking only to entire pages, you can directly reference or embed an individual bullet from anywhere in your knowledge base.</p><p>Like Obsidian, Logseq also includes a graph view to visualize relationships between notes.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://itsfoss.com/content/images/2026/07/backlinks-and-page-graph.png" class="kg-image" alt="Logseq shows backlinks of the current note and a page specific graph." loading="lazy" width="1195" height="621" srcset="https://itsfoss.com/content/images/size/w600/2026/07/backlinks-and-page-graph.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/backlinks-and-page-graph.png 1000w, https://itsfoss.com/content/images/2026/07/backlinks-and-page-graph.png 1195w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Backlinks and Page Graph</span></figcaption></figure><h3 id="why-i-prefer-logseq-for-connected-notes">Why I Prefer Logseq for Connected Notes</h3><p>When it comes to interlinked notes, I prefer Logseq every time. The biggest reason is block-level references.</p><p>Because Obsidian links entire files, I often end up creating many small notes just so they can be referenced from different places.</p><p>Logseq removes that need. If I organize my ideas using proper indentation, I can reference only the specific block I need while leaving the rest of the information in the same page.</p><p>Even better, hovering over a reference displays the complete parent block along with its nested content.</p><p>This allows me to keep large collections of related ideas together while still being able to reference individual parts wherever I need them.</p><p>There is one thing to keep in mind, though. This workflow depends heavily on proper indentation. If the structure becomes messy, references may not include all the information you expected.</p><p>Overall, I think Obsidian works better if you're intentionally following a Zettelkasten-style workflow with a strict "one idea, one note" philosophy.</p><p>Personally, I believe that <a href="https://zettelkasten.de/introduction/">Zettlekasten</a> is one of the best ways to organize knowledge. The challenge is that maintaining such a system consistently can become difficult over time.</p><h2 id="file-storage-architecture">File Storage Architecture</h2><p>The way notes are organized on disk and inside the application is very different in Obsidian and Logseq.</p><h3 id="obsidian-3">Obsidian</h3><p>Obsidian follows the traditional file and folder approach. You are free to create any folder structure you like inside a vault, whether it is deeply nested or completely flat.</p><p>This gives you complete control over how your knowledge base is organized.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://itsfoss.com/content/images/2026/07/obsidian-folder-structure.png" class="kg-image" alt="The Folder structure of Obsidian using custom folders created bt the user." loading="lazy" width="1066" height="602" srcset="https://itsfoss.com/content/images/size/w600/2026/07/obsidian-folder-structure.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/obsidian-folder-structure.png 1000w, https://itsfoss.com/content/images/2026/07/obsidian-folder-structure.png 1066w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Obsidian Folder Structure</span></figcaption></figure><h3 id="logseq-3">Logseq</h3><p>While Logseq, instead of relying on folders, encourages you to organize information using daily journals, pages, tags, and block hierarchies.</p><p>Rather than maintaining a directory structure yourself, the organization gradually emerges through links and references.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://itsfoss.com/content/images/2026/07/logseq-folder-structure.png" class="kg-image" alt="Logseq Folder Structure showing the preset Logseq folders." loading="lazy" width="1066" height="602" srcset="https://itsfoss.com/content/images/size/w600/2026/07/logseq-folder-structure.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/logseq-folder-structure.png 1000w, https://itsfoss.com/content/images/2026/07/logseq-folder-structure.png 1066w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Logseq Folder structure</span></figcaption></figure><h3 id="why-obsidian-is-easier-for-beginners">Why Obsidian is Easier for Beginners</h3><p>For most casual users and students, I feel Obsidian's approach is much easier to understand.</p><p>Logseq's organization model can be confusing at first. By the time you fully understand how pages, tags, and journals work together, you may already have created hundreds of notes that need to be reorganized.</p><p>One thing that initially confused me was the <a href="https://itsfoss.com/logseq-pages-links-tags-blocks/" rel="noreferrer">relationship between pages and tags</a>. In many situations, they almost behave like the same thing.</p><p>If you come from a traditional folder-based workflow, it's easy to start creating pages as if they were folders. That usually leads to confusion later when your notes begin to grow.</p><p>Obsidian, on the other hand, follows a familiar file-and-folder hierarchy that almost everyone already understands. Logseq's approach is certainly powerful, but it requires careful planning from the beginning.</p><h2 id="notes-portability">Notes portability</h2><p>Being able to move your notes between applications is an important consideration. If you ever decide to switch tools, a portable note format can save a lot of effort and frustration.</p><h3 id="obsidian-4">Obsidian</h3><p>Obsidian stores everything as standard Markdown files. Because Markdown is widely supported, you can open your notes in almost any text editor without losing the main content.</p><p>This makes your notes easy to access in the future, regardless of whether you continue using Obsidian.</p><h3 id="logseq-4">Logseq</h3><p>Logseq also stores notes in Markdown, but its heavy use of block structures and internal block identifiers makes those files less suitable for use in traditional Markdown editors.</p><p>While it do provide a way to export the current page to a proper markdown, the default note you created is always in a bullet-structure form.</p><h3 id="which-one-is-easier-to-move-away-from">Which One Is Easier to Move Away From?</h3><p>Although Obsidian is highly portable, there are still a few things to keep in mind. Obsidian's wiki links are not part of the Markdown standard. If you open those files in another editor, internal links and embedded images may not work as expected.</p><p>The same applies to some Obsidian-specific features such as callout blocks.</p><p>Fortunately, Obsidian allows you to disable wiki links and use standard Markdown links instead. If long-term portability is important to you, this is a setting worth considering.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://itsfoss.com/content/images/2026/07/disable-wikilink.png" class="kg-image" alt="In the Files and links settings of Obsidian, disable the Wikilink feature and enable common Markdown link. This will allow you to create more portable documents." loading="lazy" width="1051" height="493" srcset="https://itsfoss.com/content/images/size/w600/2026/07/disable-wikilink.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/disable-wikilink.png 1000w, https://itsfoss.com/content/images/2026/07/disable-wikilink.png 1051w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Disable Wikilink in Obsidian</span></figcaption></figure><p>Logseq has similar limitations because it also extends Markdown with its own features.</p><p>Overall, I still find Obsidian's notes easier to migrate to other applications than Logseq's Markdown files.</p><h2 id="plugin-ecosystem">Plugin Ecosystem</h2><p>A healthy plugin ecosystem can greatly extend the capabilities of a note-taking application.</p><h3 id="obsidian-5">Obsidian</h3><p>Obsidian has one of the largest plugin ecosystems available. Thousands of <a href="https://itsfoss.com/obsidian-plugins/" rel="noreferrer">community plugins</a> can transform the editor into anything from a task manager to a database-like system using plugins such as Dataview.</p><p>Because the core application remains fairly minimal, many advanced features depend on community plugins.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://itsfoss.com/content/images/2026/07/obsidian-plugins-marketplace.png" class="kg-image" alt="The Plugin marketplace of Obsidian, where you can install thousands of community plugins" loading="lazy" width="1122" height="718" srcset="https://itsfoss.com/content/images/size/w600/2026/07/obsidian-plugins-marketplace.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/obsidian-plugins-marketplace.png 1000w, https://itsfoss.com/content/images/2026/07/obsidian-plugins-marketplace.png 1122w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Obsidian Plugin Marketplace</span></figcaption></figure><h3 id="logseq-5">Logseq</h3><p>Logseq has a much smaller <a href="https://itsfoss.com/logseq-plugins/" rel="noreferrer">plugin ecosystem</a>. However, it includes many features that Obsidian users often install plugins for, including flashcards, PDF annotation, and advanced queries.</p><p>Its philosophy is to provide most of the commonly used PKM features as part of the default installation.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://itsfoss.com/content/images/2026/07/logseq-plugin-marketplace.png" class="kg-image" alt="Logseq plugin marketplace with 500 plus community plugins." loading="lazy" width="1182" height="759" srcset="https://itsfoss.com/content/images/size/w600/2026/07/logseq-plugin-marketplace.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/logseq-plugin-marketplace.png 1000w, https://itsfoss.com/content/images/2026/07/logseq-plugin-marketplace.png 1182w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Logseq Plugin Marketplace</span></figcaption></figure><h3 id="plugins-vs-built-in-features-my-take">Plugins vs Built-in Features: My Take</h3><p>I actually give a thumbs up to the Obsidian's plugin model. Providing a simple editor and allowing users to choose only the features they need is a good design approach. Many modern applications, including Visual Studio Code, follow a similar philosophy.</p><p>The downside is that depending heavily on third-party plugins introduces additional security considerations.</p><p>Logseq takes the opposite approach by including most important features out of the box.</p><p>I repeat, one thing to remember for both applications is portability. Many plugins introduce their own syntax that goes beyond standard Markdown.</p><p>If your goal is to keep your notes compatible with other Markdown editors, it's worth being selective about which plugins you install.</p><p>Callout blocks are a good example. They work well inside the application but may not render correctly elsewhere.</p><h2 id="web-clipper">Web Clipper</h2><p>If you regularly save articles while browsing, a good web clipper becomes an essential part of your workflow. Though, you only need one reliable web clipper.</p><h3 id="obsidian-6">Obsidian</h3><p>Obsidian offers an excellent web clipper extension that is available for Chrome, Firefox, Safari, and other browsers.</p><p>It lets you save web pages as Markdown notes. When used with Obsidian, the clipped notes are automatically populated with useful YAML front matter such as the title, source URL, author, and other metadata.</p><h3 id="logseq-6">Logseq</h3><p>At the time of writing, Logseq does not have an official web clipper. There have been ongoing discussions about one, but an official release is yet to arrive.</p><h3 id="why-obsidian%E2%80%99s-web-clipper-is-more-useful">Why Obsidian&rsquo;s Web Clipper Is More Useful</h3><p>One thing I really like about the Obsidian Web Clipper is that it doesn't require Obsidian to be installed.</p><p>This means I can use it to save web pages as Markdown and then import those notes into other applications, including Logseq.</p><p>The only feature you miss without Obsidian is the ability to send clipped notes directly into a specific vault or folder with a single click. That integration naturally requires Obsidian to be installed.</p><h2 id="sync-features">Sync Features</h2><p>Working on more than one computer? Sync is essential for your workflow.</p><h3 id="obsidian-7">Obsidian</h3><p>Obsidian provides its own paid synchronization service called Obsidian Sync. I have used it extensively, and it has worked very well for me.</p><p>Since all notes remain local files, you can also use other synchronization solutions such as iCloud, Dropbox, or Syncthing instead of paying for the official service.</p><p>One thing worth mentioning is Android. Services like Dropbox and Google Drive do not automatically live synchronize a local folder in the background because of Android's storage restrictions.</p><p>This is not an Obsidian limitation. If you want continuous synchronization on Android, tools such as Syncthing generally provide a much better experience.</p><h3 id="logseq-7">Logseq</h3><p>Logseq also offers its own paid synchronization service.</p><p>Users can choose alternatives such as iCloud, although it has been known to have occasional issues.</p><p>The upcoming database version is also expected to improve real-time synchronization and collaboration between multiple devices.</p><h3 id="my-sync-setup-and-why-i-avoid-direct-comparison">My Sync Setup and Why I Avoid Direct Comparison</h3><p>I personally don't use Logseq Sync. Instead, I keep my Logseq graph inside a private GitLab repository to avoid accidental data loss.</p><p>Because of that, I don't think it would be fair for me to compare the official synchronization services of both applications. If you've used both, I'd be interested in hearing about your experience in the comments.</p><h2 id="mobile-application-availability">Mobile Application Availability</h2><p>A good note-taking application should work well on mobile devices too. After all, we don't always have a laptop with us.</p><h3 id="obsidian-8">Obsidian</h3><p>Obsidian offers official mobile applications for both Android and iOS. In my experience, the app works very well, and Obsidian Sync integrates seamlessly across devices. Since I'm the only person using my vault, I haven't tested its collaboration features, so I won't comment on them.</p><h3 id="logseq-8">Logseq</h3><p>Logseq's mobile experience is currently less polished. There isn't an official Android app for the legacy Markdown version on the Play Store.</p><p>Android users can still install it by downloading the APK from the official GitHub repository. iPhone users, however, have an official release available on the App Store.</p><p>The new database version is currently being developed with iOS as the primary focus, and an Android release is not expected anytime soon.</p><h3 id="where-obsidian-feels-ahead-on-mobile">Where Obsidian Feels Ahead on Mobile</h3><p>Regarding Obsidian, one thing I did notice is that the interface can feel a little crowded on smaller screens. The ribbon menus, sidebars, and other interface elements take up a fair amount of space. If you prefer larger fonts while reading or writing notes, the interface can feel even more compact.</p><p>I rarely use Logseq on my phone, so I don't think I can fairly judge its mobile experience. It will be unfair if I tried it for the sake of this article, so I leave it to those who use it frequently to judge it, and I'd love to hear your thoughts in the comments.</p><h2 id="git-integration-possibilities">Git Integration Possibilities</h2><p>Git is not only an excellent version control system but also a reliable synchronization solution for users who prefer not to use paid cloud services.</p><h3 id="obsidian-9">Obsidian</h3><p>Since an Obsidian vault is simply a folder containing Markdown files, it works naturally with Git.</p><p>You can <a href="https://itsfoss.com/git-with-obsidian/" rel="noreferrer">store your vault in a private GitHub or GitLab repository</a> and manage its history using standard Git workflows.</p><p>In this setup, version history depends entirely on Git rather than the application itself.</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe src="https://player.vimeo.com/video/1206116247?app_id=122963" width="410" height="240" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin" title="stage-and-commit-files"></iframe><figcaption><p><span style="white-space: pre-wrap;">Git in Obsidian</span></p></figcaption></figure><h3 id="logseq-9">Logseq</h3><p>Logseq also works well with Git when using the Markdown version. Its upcoming database architecture introduces another interesting feature.</p><p>Instead of relying entirely on Git history, the database is designed as a "time-travel database." Every change is stored as a timestamped transaction, allowing you to inspect previous states of your knowledge base directly from within the application.</p><figure class="kg-card kg-video-card kg-width-regular kg-card-hascaption" data-kg-thumbnail="https://itsfoss.com/content/media/2026/07/logseq-git-working_thumb.jpg" data-kg-custom-thumbnail="">
            <div class="kg-video-container">
                <video src="https://itsfoss.com/content/media/2026/07/logseq-git-working.webm" poster="https://img.spacergif.org/v1/1138x648/0a/spacer.png" width="1138" height="648" loop="" autoplay="" muted="" playsinline="" preload="metadata" style="background: transparent url('https://itsfoss.com/content/media/2026/07/logseq-git-working_thumb.jpg') 50% 50% / cover no-repeat;"></video>
                <div class="kg-video-overlay">
                    <button class="kg-video-large-play-icon" aria-label="Play video">
                        <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                            <path d="M23.14 10.608 2.253.164A1.559 1.559 0 0 0 0 1.557v20.887a1.558 1.558 0 0 0 2.253 1.392L23.14 13.393a1.557 1.557 0 0 0 0-2.785Z"></path>
                        </svg>
                    </button>
                </div>
                <div class="kg-video-player-container kg-video-hide">
                    <div class="kg-video-player">
                        <button class="kg-video-play-icon" aria-label="Play video">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M23.14 10.608 2.253.164A1.559 1.559 0 0 0 0 1.557v20.887a1.558 1.558 0 0 0 2.253 1.392L23.14 13.393a1.557 1.557 0 0 0 0-2.785Z"></path>
                            </svg>
                        </button>
                        <button class="kg-video-pause-icon kg-video-hide" aria-label="Pause video">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <rect x="3" y="1" width="7" height="22" rx="1.5" ry="1.5"></rect>
                                <rect x="14" y="1" width="7" height="22" rx="1.5" ry="1.5"></rect>
                            </svg>
                        </button>
                        <span class="kg-video-current-time">0:00</span>
                        <div class="kg-video-time">
                            /<span class="kg-video-duration">0:22</span>
                        </div>
                        <input type="range" class="kg-video-seek-slider" max="100" value="0">
                        <button class="kg-video-playback-rate" aria-label="Adjust playback speed">1&times;</button>
                        <button class="kg-video-unmute-icon" aria-label="Unmute">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M15.189 2.021a9.728 9.728 0 0 0-7.924 4.85.249.249 0 0 1-.221.133H5.25a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h1.794a.249.249 0 0 1 .221.133 9.73 9.73 0 0 0 7.924 4.85h.06a1 1 0 0 0 1-1V3.02a1 1 0 0 0-1.06-.998Z"></path>
                            </svg>
                        </button>
                        <button class="kg-video-mute-icon kg-video-hide" aria-label="Mute">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M16.177 4.3a.248.248 0 0 0 .073-.176v-1.1a1 1 0 0 0-1.061-1 9.728 9.728 0 0 0-7.924 4.85.249.249 0 0 1-.221.133H5.25a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h.114a.251.251 0 0 0 .177-.073ZM23.707 1.706A1 1 0 0 0 22.293.292l-22 22a1 1 0 0 0 0 1.414l.009.009a1 1 0 0 0 1.405-.009l6.63-6.631A.251.251 0 0 1 8.515 17a.245.245 0 0 1 .177.075 10.081 10.081 0 0 0 6.5 2.92 1 1 0 0 0 1.061-1V9.266a.247.247 0 0 1 .073-.176Z"></path>
                            </svg>
                        </button>
                        <input type="range" class="kg-video-volume-slider" max="100" value="100">
                    </div>
                </div>
            </div>
            <figcaption><p><span style="white-space: pre-wrap;">Git in Logseq</span></p></figcaption>
        </figure><h3 id="how-i-use-git-with-both-apps">How I Use Git With Both Apps</h3><p>Both applications provide community plugins that simplify Git operations through a graphical interface.</p><p>Between the two, I found Obsidian's Git plugin more polished and easier to understand. It exposes almost every Git operation you might need through a straightforward interface.</p><p>Ironically, I rarely use either plugin. I manage my repositories using Lazygit, so I generally prefer handling Git from the terminal.</p><h2 id="open-source-vs-proprietary">Open Source vs Proprietary</h2><p>The licensing model of an application doesn't necessarily affect how well it works, but it is still an important consideration for many users.</p><h3 id="obsidian-10">Obsidian</h3><p>Obsidian is proprietary software. The application itself is closed source, meaning only the developers have access to its source code.</p><p>It is free for personal use, while commercial use requires a paid license. One important point is that many community plugins available for Obsidian are open source, even though the application itself is not.</p><h3 id="logseq-10">Logseq</h3><p>Logseq is fully open source under the AGPL-3.0 license. Its source code is publicly available, and anyone can inspect, modify, or fork the project.</p><p>All local features are available without requiring any payment.</p><h3 id="why-i-still-use-obsidian-despite-it-being-closed-source">Why I Still Use Obsidian Despite It Being Closed Source</h3><p>Almost every application I use daily is open source. Obsidian is one of the few exceptions.</p><p>There are several reasons for that. I've been using it for a long time, migrating my notes without breaking links would take considerable effort, and I simply don't have enough time to rebuild my entire knowledge base.</p><p>Another reason, is the writing experience. For long-form writing, Obsidian is still one of the fastest and most comfortable editors I've used.</p><p>My long-term goal is to move toward a completely plain-text, wiki-style note system, but that is still some distance away.</p><h2 id="default-entry-point-and-daily-workflow">Default Entry Point and Daily Workflow</h2><p>One of the first things you'll notice when trying a new PKM application is how it expects you to work.</p><h3 id="obsidian-11">Obsidian</h3><p>Obsidian starts with a blank note or an existing document. From there, you're free to organize your vault however you like.</p><p>You can create folders, move notes between them, and rearrange your structure whenever needed.</p><p>Because Obsidian automatically updates internal links, reorganizing notes is generally painless.</p><h3 id="logseq-11">Logseq</h3><p>Logseq is different. Every time you open the application, you're greeted by today's journal.</p><p>The idea is simple. Open the application, start writing, and organize everything later using links, pages, and tags.</p><h3 id="why-logseq%E2%80%99s-journal-first-workflow-needs-planning">Why Logseq&rsquo;s Journal-First Workflow Needs Planning</h3><p>This journal-first workflow is one of Logseq's biggest strengths, but it also comes with a learning curve.</p><p>Personally, I recommend spending some time understanding how Logseq works before filling it with notes.</p><p>Learning while building your knowledge base can easily lead to unnecessary pages, duplicate tags, and organizational problems that become frustrating to fix later. At least, that's exactly what happened to me.</p><h2 id="theming-support">Theming Support</h2><p>A note-taking application should also be pleasant to use. If you enjoy the interface, you're more likely to keep coming back to read and write.</p><h3 id="obsidian-12">Obsidian</h3><p>This is one area where Obsidian stands out. Thanks to its large community, there are hundreds of themes available, along with plugins that let you customize almost every part of the interface.</p><p>I personally use the <strong>Border</strong> theme most of the time. Combined with the <strong>Style Settings</strong> plugin, it lets me customize Obsidian exactly the way I want.</p><p>Occasionally, I switch to <strong>Retroma</strong>, which has a unique appearance that I really enjoy.</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe src="https://player.vimeo.com/video/1206116248?app_id=122963" width="406" height="240" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin" title="retroma-theme-obsidian"></iframe><figcaption><p><span style="white-space: pre-wrap;">Retroma Theme in Obsidian</span></p></figcaption></figure><h3 id="logseq-12">Logseq</h3><p>Logseq isn't far behind, but its theme ecosystem is much smaller.</p><p>There are still several good community themes available, although they don't offer the same level of customization as Obsidian.</p><p>I usually switch between the <strong>Immersion Dark</strong> and <strong>Bonofix Dark</strong> themes.</p><figure class="kg-card kg-embed-card"><iframe src="https://player.vimeo.com/video/1206116250?app_id=122963" width="424" height="240" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin" title="immersion-theme-logseq"></iframe></figure><p>If you're comfortable editing CSS, you can customize Logseq even further. However, I wouldn't recommend that approach to beginners who simply want to install the application and start taking notes.</p><h2 id="importing-notes-between-obsidian-and-logseq">Importing Notes Between Obsidian and Logseq</h2><p>Both Obsidian and Logseq let you work with Markdown files, but moving an existing knowledge base from one application to the other is not as straightforward as it sounds. The biggest reason is the difference in how each application structures notes.</p><p>According to the documentation, you can import a folder of Markdown files into Logseq. In practice, however, the results may not always be ideal.</p><p>Because Logseq is built around an outline-based structure, imported Markdown files don't automatically adopt its bullet hierarchy. This becomes even more noticeable if you're using the Table of Contents plugin, where the structure may not appear as expected.</p><p>If you're particular about keeping your notes properly organized with consistent bullets and indentation, you'll likely have to spend time manually restructuring many of the imported notes.</p><p>Obsidian handles Logseq notes a little better. You can simply copy the Markdown files from Logseq's <code>pages</code> folder into an Obsidian vault, and the bullet structure is generally preserved. However, headings and overall formatting may still need some cleanup.</p><p>If you've built a large knowledge base in either application, migrating it perfectly to the other is difficult. The underlying architecture of the two applications is simply too different to make the process completely seamless.</p><h2 id="who-are-obsidian-and-logseq-for">Who Are Obsidian and Logseq For?</h2><p>Although both applications solve similar problems, I think they are designed for different kinds of users.</p><h3 id="choose-obsidian-if">Choose Obsidian If</h3><p>You write long-form notes, prefer traditional files and folders, and enjoy customizing your workspace through plugins. It works particularly well if you're willing to invest time in organizing your knowledge base and maintaining a structured note system.</p><h3 id="choose-logseq-if">Choose Logseq If</h3><p>You naturally think in outlines and bullet points. Its journal-first workflow, block-based organization, built-in flashcards, and PDF annotation tools make it an excellent choice for quickly capturing ideas before organizing them later.</p><p>It is also a strong option for users who prefer fully open-source software.</p><h3 id="how-i-use-them-both">How I Use Them Both</h3><p>For a long time, I've used both applications side by side.</p><p>I wouldn't generally recommend this approach unless you're comfortable managing two separate knowledge bases every day.</p><p>In my workflow, Obsidian is where I keep long-form notes, article drafts, and web clippings.</p><p>Logseq is where I quickly capture ideas, maintain journals, and collect thoughts before they grow into larger pieces of writing.</p><p>This workflow still works well for me because my overall note collection is manageable.</p><p>As my knowledge base continues to grow, however, I expect to simplify everything into a system that's easier to maintain over the long term.</p><h2 id="wrapping-up">Wrapping Up</h2><div class="kg-card kg-callout-card kg-callout-card-blue"><div class="kg-callout-emoji">&#128203;</div><div class="kg-callout-text">I'll revisit this comparison article when Logseq's upcoming database feature is available and well tested by me. </div></div><p>This article was never meant to declare one application objectively better than the other. Obsidian and Logseq reflect two different ways of thinking about notes.<br><br>Obsidian works better for me when I need a polished writing environment. Logseq works better when I want to collect, nest, and connect ideas quickly.<br><br>At the end of the day, the best note-taking app is the one that fits the way you actually work.<br><br>Which one do you use: Obsidian, Logseq, <a href="https://itsfoss.com/joplin-tips/">Joplin</a>, <a href="https://itsfoss.com/zim-wiki/">Zim Wiki</a>, or something else? Share your workflow in the comments.</p>
<img src="https://feed.itsfoss.com/link/24361/17373694.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[Sipeed&#x27;s New KVM Wants AI Agents to See and Control Your Screen]]></title>
      <description><![CDATA[The NanoKVM-Go connects with a single USB-C cable, runs over WiFi 6, and exposes every KVM function as an MCP server for AI agents like PicoClaw and Claude Code.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17373238/sipeeds-nanokvm-go-crowdfunding</link>
      <guid isPermaLink="false">6a48e7b837d48f0001829de5</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Abhishek Prakash]]></dc:creator>
      <pubDate>Sun, 05 Jul 2026 12:13:00 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/07/nanokvm-go.webp" medium="image">
        <media:description type="plain">NanoKVM-GO</media:description>
      </media:content>
      <content:encoded><![CDATA[
<p>Sipeed has been making tiny RISC-V and ARM boards for the maker crowd for years, and its <a href="https://wiki.sipeed.com/hardware/en/kvm/NanoKVM/introduction.html">NanoKVM</a> line is already a familiar name if you have ever wanted BIOS-level remote access without paying enterprise <a href="https://www.zenlayer.com/blog/what-is-ipmi/">IPMI</a> prices.</p><p>Sipeed has announced a new entry in the NanoKVM line. It is called NanoKVM-Go, it is miniature and skips the usual pile of HDMI, USB, Ethernet, and power cables entirely. It comes with just USB-C cable to the target device and WiFi 6 for the connectivity. That's it.</p><p>The <a href="https://www.kickstarter.com/projects/zepan/nanokvm-go-worlds-first-ai-native-4k-usb-c-kvm">NanoKVM-Go is on Kickstarter</a> and has already achived its funding goal by raising over a $130,000 against its target of approximately $6,000.</p><p>This tiny KVM also generated quite a buzz on Twitter, perhaps because it used the term "AI-native" in its campaign. </p><p>Yes, Sipeed is calling it the world's first "AI-native" KVM, built so that an AI agent can watch your screen and act on it at the hardware level. Interesting, right?</p><h2 id="nanokvm-go-specifications">NanoKVM-Go Specifications</h2><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/sipeed-nanokvm-go.webp" class="kg-image" alt="NanoKVM-GO" loading="lazy" width="800" height="450" srcset="https://itsfoss.com/content/images/size/w600/2026/07/sipeed-nanokvm-go.webp 600w, https://itsfoss.com/content/images/2026/07/sipeed-nanokvm-go.webp 800w" sizes="(min-width: 720px) 720px"></figure><p>Here are the main hardware specifications for NanoKVM-GO:</p><ul><li>Single USB-C cable for video, audio, keyboard/mouse, power pass-through, and virtual disk</li><li>4K capture at 45Hz, 2K at 90Hz, latency as low as 60ms at 1080p</li><li>Dual-band WiFi 6, up to 286Mbps, built-in Tailscale for remote access.</li><li>KVM functions exposed as an MCP server for AI agents (for <a href="https://itsfoss.com/openclaw-alternatives/" rel="noreferrer">OpenClaw like AI agents</a>)</li><li>Go+ variant (comes with a built-in 3.2TOPS AI processor and PicoClaw) adds a local "Ambient Screen Intelligence" with 180-day searchable screen history</li></ul><p><strong>The device is priced to be $89 for Go and $129 for Go+. But if you back them in the crowdfunding campaign, you can get them for $69 and $99 respectively. </strong></p><p>The main USB-C port on NanoKVM-Go carries video and audio (over DisplayPort Alt Mode), keyboard and mouse emulation, disk emulation for mounting OS images, and even a virtual network interface, all through that single cable. A separate auxiliary USB-C port handles power pass-through so your laptop or phone keeps charging during a long session.</p><p>It also powers an optional FingerBot accessory that can physically press a stuck computer's power button for a hard reboot. Yes, you read that right.</p><p>On the capture side, it does 4K at 45Hz or 2K at 90Hz, with latency Sipeed lists at 60ms for 1080p60, 80ms for 2K60, and 100ms for 4K30. That is over dual-band WiFi 6, rated up to 286Mbps, with <a href="https://tailscale.com/">Tailscale</a> built in so you can reach the device remotely without setting up port forwarding. </p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/nanokvm-go-connectivity.webp" class="kg-image" alt="NanoKVM Go connectivity" loading="lazy" width="960" height="415" srcset="https://itsfoss.com/content/images/size/w600/2026/07/nanokvm-go-connectivity.webp 600w, https://itsfoss.com/content/images/2026/07/nanokvm-go-connectivity.webp 960w" sizes="(min-width: 720px) 720px"></figure><p>Since it works with anything that supports USB-C DisplayPort Alt Mode, that covers MacBooks, Mac minis, any laptop with USB C port, iPhone 15 and later, several Android phones, and even the Steam Deck.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://itsfoss.com/content/images/2026/07/nano-kvm-go.webp" class="kg-image" alt="NanoKVM-GO" loading="lazy" width="1202" height="851" srcset="https://itsfoss.com/content/images/size/w600/2026/07/nano-kvm-go.webp 600w, https://itsfoss.com/content/images/size/w1000/2026/07/nano-kvm-go.webp 1000w, https://itsfoss.com/content/images/2026/07/nano-kvm-go.webp 1202w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">NanoKVM-GO board images shared by Sipeed on X</span></figcaption></figure><p>Under the hood is an unnamed SoC that is probably the same Axera Tech AX630C used in the existing NanoKVM Pro. It is paired with a dual-core Cortex-A53 and a 3.2 TOPS NPU. The base NanoKVM-Go gets 256MB of RAM and 16GB of eMMC storage, and the whole thing draws around 1.6W at 4K30.</p><h2 id="nanokvm-go">NanoKVM-Go+ </h2><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/SNfF119ePGQ?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen="" title="NanoKVM-Go+ AI-Native 4K USB-C KVM, Ready for AI Agent!"></iframe></figure><p>The NanoKVM-Go+ doubles the memory to 512MB and jumps to 64GB of eMMC, all in service of a feature Sipeed calls "Ambient Screen Intelligence,"which is basically its own version of the infamous Microsoft's Recall. </p><p>It continuously captures your screen, stores up to 180 days of history locally, and lets you search through it later with plain text, all processed on-device without cloud uploads or a subscription. </p><p>Whether you actually want a machine remembering everything on your screen for six months is up too you, but at least Sipeed is keeping it local instead of 'calling it home' like Microslop.</p><h2 id="what-could-you-use-it-for">What could you use it for?</h2><p>Well... remotely accessing and controlling your device is the most straight forward use.</p><p>Typically, you would need to install a remote desktop or remote access solution on the host system that you want to control. But with this gadget attached to the machine, it becomes a 'plug and play'. You can assist your elderly parents and friends (if they have devices with USB-C) or control your homelab devices from outside the home network.</p><p>Let's talk about the "native AI" feature. See, every KVM function, keyboard input, mouse control, screen capture, is exposed as an MCP server that you can turn on yourself. That effectively turns the device into a hardware-level Computer Use Agent peripheral. </p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/nano-kvm-go-agent-ready.webp" class="kg-image" alt="NanoKVM Go AI agent use" loading="lazy" width="960" height="540" srcset="https://itsfoss.com/content/images/size/w600/2026/07/nano-kvm-go-agent-ready.webp 600w, https://itsfoss.com/content/images/2026/07/nano-kvm-go-agent-ready.webp 960w" sizes="(min-width: 720px) 720px"></figure><p>Instead of an AI agent needing screen-sharing software running on the target machine, it can drive the actual hardware through the KVM, which also means it works even if the target OS is frozen or sitting at a BIOS screen. </p><p>You can use Sipeed's own PicoClaw agent or go with OpenClaw, Claude Code, Codex, and Hermes Agent among other compatible options.</p><p>Sipeed is leaning on this to court the current wave of agentic AI tools, name-checking its own lightweight <a href="https://picoclaw.io/">PicoClaw</a> agent alongside OpenClaw, Claude Code, Codex, and Hermes Agent as compatible options.</p><p>The screen capture recall feature of Go+ is also helpful.</p><p>If you are running AI agents, you can let them run with your laptop lid closed (that's the running joke in the industry). </p><p>The announcement video could give you more ideas:</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/qkVUMs2S7ks?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen="" title="NanoKVM-Go: World's First AI-Native 4K USB-C KVM"></iframe></figure><h2 id="%F0%9F%9B%92-pricing-and-availability">&#128722; Pricing and Availability</h2><p>NanoKVM-Go is live on Kickstarter now, and it's already comfortably funded past its original $50,000 HKD (about $6,374) goal. </p><div class="kg-card kg-button-card kg-align-center"><a href="https://www.kickstarter.com/projects/zepan/nanokvm-go-worlds-first-ai-native-4k-usb-c-kvm/description" class="kg-btn kg-btn-accent">Back NanoKVM-Go on Kickstarter</a></div><p>The Early Bird tier for the base NanoKVM-Go is going for $69 (instead of $89), and the Super Early Bird for NanoKVM-Go+ is $99 (instead of $129)<strong>. </strong> Shipping adds roughly $20 for international backers, and rewards are expected to go out in August 2026.</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/HLZvZ1WaQAA8BTT.jpeg" class="kg-image" alt="NanoKVMGO packaging" loading="lazy" width="680" height="510" srcset="https://itsfoss.com/content/images/size/w600/2026/07/HLZvZ1WaQAA8BTT.jpeg 600w, https://itsfoss.com/content/images/2026/07/HLZvZ1WaQAA8BTT.jpeg 680w"></figure><div class="kg-card kg-callout-card kg-callout-card-red"><div class="kg-callout-emoji">&#128679;</div><div class="kg-callout-text">As with any crowdfunding campaign, treat the ship date as an estimate rather than a promise. Back it to support the project, not because you're counting on August delivery.</div></div><p>If you want to use this device in your AI workflow, go for the Go+ version.</p><p><em><strong>Suggested Read</strong>: If KVMs are your thing, we also covered the </em><a href="https://itsfoss.com/news/leafkvm-crowdfunding/"><em>LeafKVM</em></a><em>, an open source Rust and Buildroot based KVM-over-IP device that takes a very different, fully open approach.</em></p>
<img src="https://feed.itsfoss.com/link/24361/17373238.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[HW Lab&#x27;s DockFrame Heads to Crowd Supply With Swappable Tool Cards]]></title>
      <description><![CDATA[The modular USB-C hub uses Framework&#x27;s expansion standard, and its Tool Cards double as bench tools.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17373225/dockframe</link>
      <guid isPermaLink="false">6a47844237d48f0001829154</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Sun, 05 Jul 2026 09:51:19 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/07/dockframe-banner.png" medium="image">
        <media:description type="plain">the dockframe with four attached wires against a green background</media:description>
      </media:content>
      <content:encoded><![CDATA[
<p>Crowdfunding is one of the best ways to turn an idea into an actual product. A creator pitches something, sets a funding goal, and backers decide whether it is worth building.</p><p>While most campaigns stay small, a few do break out completely. The <a href="https://en.wikipedia.org/wiki/Pebble_(watch)#:~:text=Original%20production%20(2013%E2%80%932016)" rel="noreferrer">original Pebble smartwatch</a> asked for $100,000 in 2012, walked away with over $10 million, going on to ship more than two million watches. It <a href="https://itsfoss.com/news/pebble-returns-as-open-source/">has since returned</a> as an open source-focused outfit.</p><p><a href="https://hwlab.io">HW Media Lab</a> already knows that path. Its first product, <a href="https://itsfoss.com/news/webscreen/">WebScreen</a>, a hackable secondary display for gamers and creators, asked Crowd Supply for $5,250 and came back with $10,718, <strong>more than double its goal</strong>.</p><p>Now they are back again with a new creation that focuses on modular, repairable USB-C docking.</p><h2 id="just-a-generic-usb-c-hub">Just a generic USB-C hub?</h2><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/dockframe-front-view.jpg" class="kg-image" alt="laying on a white table is a framework laptop, over which two expansion cards and a purple-colored dockframe usb-c hub are placed" loading="lazy" width="1400" height="889" srcset="https://itsfoss.com/content/images/size/w600/2026/07/dockframe-front-view.jpg 600w, https://itsfoss.com/content/images/size/w1000/2026/07/dockframe-front-view.jpg 1000w, https://itsfoss.com/content/images/2026/07/dockframe-front-view.jpg 1400w" sizes="(min-width: 720px) 720px"></figure><p>Not quite; the <a href="https://dockframe.com">DockFrame</a> is a modular USB-C hub built around <a href="https://frame.work">Framework</a>'s open source <a href="https://github.com/frameworkcomputer/ExpansionCards">Expansion Card</a> slot standard. Instead of a fixed set of ports, it gives you four open slots that accept the same cards Framework sells for its laptops and desktops.</p><p>The hub itself operates on <strong>USB 3.2</strong>, with USB-C DisplayPort and Power Delivery passthrough up to 100 W on the downstream ports. The case is injection-molded and translucent, supports Framework's <a href="https://frame.work/products/desktop-tile-pack">Desktop Tiles</a>, and has <strong>a LEGO-compatible stud grid on the bottom</strong> so multiple units can be stacked once four slots stop being enough.</p><p>Slot in any of the Framework <a href="https://frame.work/marketplace/expansion-cards">Expansion Cards</a>, and DockFrame will treat them like they belong there. This means any spare USB-A, HDMI, Ethernet, or storage cards left over from a laptop upgrade do not have to sit in a drawer; they can go straight into the hub instead.</p><p><strong>HW Media Lab builds its own Tool Cards too</strong>:</p><ul><li>The <strong><em>Multimeter Card</em></strong> can read DC/AC voltage, current, and continuity.</li><li>The <strong><em>Mini Hub Card</em></strong> adds four USB 3.0 ports, each capable of 5 Gbps transfer speeds.</li><li>The <strong><em>Power Supply Card</em></strong> is a programmable buck-boost supply with USB PD input up to 100 W.</li><li>The <strong><em>BreadBoard Card</em></strong> carries a Seeed Studio XIAO board and standard 0.1 inch headers for prototyping work.</li></ul><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/07/dockframe-card-slots.png" class="kg-image" alt="an early view of the dockframe pcb inside an orange case with lego studs on both sides" loading="lazy" width="1363" height="844" srcset="https://itsfoss.com/content/images/size/w600/2026/07/dockframe-card-slots.png 600w, https://itsfoss.com/content/images/size/w1000/2026/07/dockframe-card-slots.png 1000w, https://itsfoss.com/content/images/2026/07/dockframe-card-slots.png 1363w" sizes="(min-width: 720px) 720px"></figure><p>If none of the four fit what you need, <strong>you can design your own card</strong> using the same open slot standard or build a custom host app that talks to the onboard MCUs over <em>USB serial</em>, <em>Wi-Fi</em>, <em>Bluetooth</em>, or <em>ESP-NOW</em>.</p><p><strong>Repairability is also a focus here</strong>, as the DockFrame is held together with screws instead of glue. Makers, embedded engineers, educators, and anyone tired of keeping a dock, a multimeter, and a bench supply as three separate boxes are the target audience here.</p><h2 id="while-you-wait%E2%80%A6">While you wait&hellip;</h2><p>The DockFrame <strong>is yet to receive an official release date or a price tag</strong>. While you wait, you can keep an eye out on the <a href="https://www.crowdsupply.com/hw-media-lab/dockframe">Crowd Supply</a> page for it, and if you want to share feedback, the <a href="https://hwlab.io/dockframe">official product page</a> has a form you can fill out.</p><div class="kg-card kg-button-card kg-align-center"><a href="https://www.crowdsupply.com/hw-media-lab/dockframe" class="kg-btn kg-btn-accent">DockFrame (Crowd Supply)</a></div><p>All the hardware-related files, like schematics, layouts, firmware, and the FreeCAD case files, should be available on <a href="https://github.com/HW-Lab-Hardware-Design-Agency">GitHub</a> once the crowdfunding campaign ends. You can track development by joining HW Lab's <a href="https://discord.com/invite/vKT5b3skjF">Discord</a> server.</p>
<img src="https://feed.itsfoss.com/link/24361/17373225.gif" height="1" width="1"/>]]></content:encoded>
    </item>
  </channel>
</rss>
