schmonz.com is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.

This server runs the snac software and there is no automatic sign-up process.

Search results for tag #linux

[?]Mark Stosberg » 🌐
@markstos@urbanists.social

CLI tools can be faster for commonly-used commands .

My favorite dotfile manager to sync personal config files between machines is YADM... because there's so little to learn. It's basically `git` for dotfiles, where the files are edited in place. There's no extra symlinking or deploy step, just yadm commit/push/pull. Easy!

For edge cases of different settings on different machines, it supports templates and alternates.

yadm.io/

    dch :flantifa: :flan_hacker: boosted

    [?]jowodo » 🌐
    @jowodo@mas.to

    GeoSphere Austria (Vienna) is looking for head of SysAdmin (Win+Linux), head of IT Security, head of HPC, Linux SysAdmin and Full Stack Dev (Flask, FastAPI and PHP)

    geosphere.at/de/ueber-uns/karr

      [?]nixCraft 🐧 » 🌐
      @nixCraft@mastodon.social

      An unsupervised agentic AI system working through compromised devs credentials (account) successfully altered bugs & pushed unverified code into multiple open source projects, including Fedora Anaconda installer. This rogue AI agent appears to have used a trusted open source contributor account over to submit bugs with backdoor & overwhelming maintainers & increasing the risk of deliberate supply chain compromises on FLOSS

      AI agent runs amok in Fedora & elsewhere lwn.net/SubscriberLink/1077035

      Source: https://lwn.net/SubscriberLink/1077035/c7e7c14fbd60fae9/

Title: AI agent runs amok in Fedora and elsewhere [LWN subscriber-only content]

Author and Date of publishing: Joe Brockmeier | June 10, 2026

Description:
Agentic AI systems can be used to do a variety of things autonomously on behalf of a human user: open or manage bugs, generate code, submit pull-requests, and (apparently) even complain about rejection. In May, a Fedora developer discovered that an allegedly rogue agent had been pestering the project in a number of ways: reassigning bugs, fabricating unhelpful replies to bugs, and even persuading maintainers to merge questionable code into the Anaconda installer. It also submitted a number of pull requests (PRs), some accepted, to several upstream projects. The Fedora account associated with the agent has had its group privileges revoked and the messes have been mopped up, but the motive behind the agent's actions is still a mystery.

Go here https://lwn.net/SubscriberLink/1077035/c7e7c14fbd60fae9/  to read full story.

      Alt...Source: https://lwn.net/SubscriberLink/1077035/c7e7c14fbd60fae9/ Title: AI agent runs amok in Fedora and elsewhere [LWN subscriber-only content] Author and Date of publishing: Joe Brockmeier | June 10, 2026 Description: Agentic AI systems can be used to do a variety of things autonomously on behalf of a human user: open or manage bugs, generate code, submit pull-requests, and (apparently) even complain about rejection. In May, a Fedora developer discovered that an allegedly rogue agent had been pestering the project in a number of ways: reassigning bugs, fabricating unhelpful replies to bugs, and even persuading maintainers to merge questionable code into the Anaconda installer. It also submitted a number of pull requests (PRs), some accepted, to several upstream projects. The Fedora account associated with the agent has had its group privileges revoked and the messes have been mopped up, but the motive behind the agent's actions is still a mystery. Go here https://lwn.net/SubscriberLink/1077035/c7e7c14fbd60fae9/ to read full story.

        [?]Vijay Prema » 🌐
        @vjprema@fosstodon.org

        It's a bit scary talking to some people these days, who's first (and sometimes only) significant computing experience is a smartphone or closed-ecosystem PC, and not a general purpose PC.

        Real Stockholm syndrome stuff: "I'm so impressed by Apple, my 2019 macbook still gets updates! most android phones only get 3-4 years"

        Well a general purpose PC gets practically unlimited updates if you install the right thing on it.

          [?]SeaFury 🦜🍃 » 🌐
          @SeaFury@aus.social

          I might have brain space to install linux on that spare laptop 🥰 What’s your favourite? I am going to use it to play movies and music on my tv - so not for work

            [?]Adam » 🌐
            @adamsdesk@fosstodon.org

            Change Default Linux/Unix Image Viewer Application

            Use this complete guide to change the default image viewer application for a graphical desktop environment on a GNU/Linux or Unix operating system.

            adamsdesk.com/posts/change-def

            Rays of light scatter down and outward through the blue and purplish water in the background. The foreground is made up of a group of three polaroids spread out like playing cards each with their own image viewer logo in the centre along with a strong title of 'Set Your Default Linux/Unix Image Viewer'.

            Alt...Rays of light scatter down and outward through the blue and purplish water in the background. The foreground is made up of a group of three polaroids spread out like playing cards each with their own image viewer logo in the centre along with a strong title of 'Set Your Default Linux/Unix Image Viewer'.

              [?]r1w1s1 » 🌐
              @r1w1s1@snac.bsd.cafe

              Someone in IRC asked when dwm would be rewritten in a memory-safe language.

              I think we're only a few decades away:

              "First rewrite Xlib, Xft, and all the Linux kernel dependencies." :)


                #netbsd boosted

                [?]Dr. Brian Callahan [He/Him] » 🌐
                @bcallah@bsd.network

                By the way, our first two publications on evaluating mitigations are out. Both of these papers evaluate some amd64 anti-ROP mitigations: specifically changing the register selection order and semantically equivalent rewriting of instructions that may produce a potential polymorphic gadget instruction. This tracks a paper by mortimer@ back in 2019 at AsiaBSDCon.

                The TL;DR is "OpenBSD can shrink binaries a little and gain a little performance without any security loss simply by reverting these mitigations." The mitigations did not hold up to independent evaluation.

                The first paper did an exact 1:1 port of these mitigations to FreeBSD and found that register reallocation eliminates only about 0.3% of unique gadgets, for a 0.5% increase in binary size (mortimer@ claimed 6% reduction and "entirely free"). It is useless at best but more likely actively detrimental, as it produces a false sense of security. It also found the instruction rewriting reduces unique gadgets by about 3.5% with a binary size increase of about 1.8% (mortimer@ claimed 5% reduction with 0.15% binary size increase).

                We then did a separate implementation of the instruction rewriting mitigation to GCC in the second paper. Our GCC implementation does the older <xchg; op; xchg> dance, as that's what mortimer@'s paper described. This is way worse; producing about a 3% performance hit for no security benefit at all.

                The only part of both mitigations worth saving is for basic arithmetic, OpenBSD LLVM now takes advantage of the fact that basic arithmetic has two forms. For example, the newer instruction rewriting mitigation turns
                addq %rax, %rbx (48 01 c3)
                into
                {load} addq %rax, %rbx (48 03 d8)

                The new instruction rewriting mitigation is genuinely free in terms of binary size and execution speed, but doesn't move the security needle, so this one can stay as it is harmless. Other rewritings still have the flaw of increasing binary size and reducing performance for no security benefit.

                Anyhow feel free to read the papers:
                ieeexplore.ieee.org/abstract/d
                researchgate.net/publication/4

                  [?]sigdevel » 🌐
                  @sigdevel@infosec.exchange

                  [?]Collabora » 🌐
                  @collabora@floss.social

                  We're hiring! Several open roles for open source engineers:

                  🔲 GPU Consultant Engineer
                  🐧 Linux Kernel Consultant
                  🔊 Linux Audio Consultant Engineer
                  ⚙️ Platform Engineering Consultant

                  Remote/anywhere · Full-time · Upstream-first culture since 2005 🐧

                  collabora.com/careers

                  Collabora - We're hiring!

                  Alt...Collabora - We're hiring!

                    dch :flantifa: :flan_hacker: boosted

                    [?]Thomas Strömberg [He/Him] » 🌐
                    @thomrstrom@triangletoot.party

                    After being locked away for 10+ years in the Cloud; it's so refreshing, and frustrating to deal with all of the little things; like filesystems, database replication and locks, replacing fans and NICs, debugging OOMs, and crashing daemons on , , and ;

                    I feel like everything moves a little more slowly and sustainably this way; but most of all - I really missed getting lost in the details.

                      [?]Eric The IT Guy » 🌐
                      @itguyeric@mastodon.social

                      Live RIGHT NOW on The IT Guy Show: Live Ops 009.

                      We're walking through @xcpng and @xenorchestra , the open source virtualization stack from @vates. If you're still on VMware because you don't know what else to use, this one's for you.

                      Full install walkthrough, running it nested on Proxmox as a PoC.

                      Watch now: youtube.com/live/Uz04d9Z-Itg?s

                        [?]Liam @ GamingOnLinux 🐧🎮 » 🌐
                        @gamingonlinux@mastodon.social

                        [?]Shawn Webb [He/Him] » 🌐
                        @lattera@bsd.network

                        Dear ,

                        It is frustrating not having SIGINFO when troubleshooting network problems.

                        Annoyed,

                        Someone who prefers a much better networking stack

                          gyptazy boosted

                          [?]Michael » 🌐
                          @mkleger@swissodon.ch

                          📦 BackupPilot 1.0.1 ist veröffentlicht.

                          Neu mit erweiterter CLI, Pre- und Post-Backup-Hooks sowie offizieller ARM64-Unterstützung. Damit können z.B. Datenbank-Dumps direkt vor einem Backup erstellt und automatisch mitgesichert werden.

                          Pakete und Updates gibt es neu über unser Repository: repos.onesystems.ch

                            [?]Cole Brodine » 🌐
                            @colebrodine@mastodon.social

                            @nixCraft I started off in the world of Gentoo because I wanted to run a 64 bit OS on my operating system when that wasn't an option using windows. Since then, I've moved off of Gentoo and now I use a variety of Distros like Mint, Ubuntu, Bazzite, etc on my different PCs.

                            I think the majority of users probably don't feel that strongly about their distro, but there's a vocal minority out there that make it look like we all do.

                              [?]nixCraft 🐧 » 🌐
                              @nixCraft@mastodon.social

                              Why is like a religion? Everyone thinks their distro is the one true path, and they’ll die on that hill usually mid `apt upgrade`

                                Liam Proven boosted

                                [?]Krafting » 🌐
                                @krafting@mamot.fr

                                Okay, hi everyone

                                This weekend, after a random toot from @alice in my TL, I found myself in a rabbit hole to enhance and create an iOS 6 theme for GTK4. It's not much, it has some rough edges, but damn it looks so cool, and I'm so proud of this!!

                                If you wanna help with design or add icons, please feel free to do so!

                                The code and install instructions lives here : gitlab.com/Krafting/igtk-theme

                                Homescreen of GNOME mobile with ios6 styled icons and wallpaper

                                Alt...Homescreen of GNOME mobile with ios6 styled icons and wallpaper

                                Settings app with ios6 styled design

                                Alt...Settings app with ios6 styled design

                                Text Editor app with ios6 styled design

                                Alt...Text Editor app with ios6 styled design

                                Homescreen of GNOME mobile with ios6 styled icons and wallpaper

                                Alt...Homescreen of GNOME mobile with ios6 styled icons and wallpaper

                                  Jay 🚩 :runbsd: boosted

                                  [?]Dark Blue Project » 🌐
                                  @darkblue@mastodon.fediblue.de

                                  *** Repost on new instance ***

                                  Hello Fediverse,

                                  I'm happy to announce our very own Mastodon instance called "FediBlue", a new friendly place in the Fediverse for all people that are interested in free and open source software, especially Linux, BSD and illumos.

                                  FediBlue is part of our ongoing effort to strengthen the FOSS community by publishing content about it and help projects gaining visibility in a time where many companies try to force their services on users, train AIs with people's data and collect as many data as they could.

                                  Alongside the wonderful BSD Cafe community, where I'm also at, FediBlue should provide another very friendly and welcoming place in the Fediverse. In the next days, the Dark Blue Project presence will move completely to FediBlue.

                                  mastodon.fediblue.de

                                    [?]knoppix » 🌐
                                    @knoppix95@mastodon.social

                                    Euro-Office, a fork of OnlyOffice backed by European vendors including Nextcloud and IONOS, is set to launch June 9 as a sovereignty-focused office suite. 🇪🇺
                                    The project aims to provide an open-source alternative to Microsoft Office and Google Docs while supporting EU digital sovereignty efforts. 📄

                                    🔗 fossforce.com/2026/05/euro-off

                                      [?]Eric The IT Guy » 🌐
                                      @itguyeric@mastodon.social

                                      Shoutout to the unpaid open source devs holding everything together.
                                      You know who you are. We owe you more than a GitHub star.

                                        [?]Ari Sovijärvi » 🌐
                                        @apz@some.apz.fi

                                        Last week I installed Linux onto a new laptop. Nothing special about that, but it got me thinking how with all the negative sides of technology we also have plenty of positive ones.

                                        I downloaded a close to 5 gigabyte .iso from the distro's site, wrote it onto an USB drive with dd and booted off it. In less than 10 minutes later a working desktop installation was done.

                                        The first computer I've ever installed Linux on was a 486. My modem was 2400bps so I did not download an .iso. Instead I went to bank, got US dollars, stuffed those and a order form I had clipped off a computer magazine into an envelope and mailed that. As fast as 3 weeks I was holding a CD box of Slackware, with two CDs and a booklet that was to become the source of frustration for months to come.

                                        I recently installed Alpine onto an old Thinkpad I have at the arcade and that got me thinking if I still had it to build a system from scratch to that old Slackware level. I may have to find a period accurate PC and see how it all looked like back then.

                                          #netbsd boosted

                                          [?]vermaden » 🌐
                                          @vermaden@mastodon.social

                                          Latest 𝗩𝗮𝗹𝘂𝗮𝗯𝗹𝗲 𝗡𝗲𝘄𝘀 - 𝟮𝟬𝟮𝟲/𝟬𝟲/𝟬𝟴 (Valuable News - 2026/06/08) available.

                                          vermaden.wordpress.com/2026/06

                                          Past releases: vermaden.wordpress.com/news/

                                            [?]vermaden » 🌐
                                            @vermaden@mastodon.bsd.cafe

                                            Latest 𝗩𝗮𝗹𝘂𝗮𝗯𝗹𝗲 𝗡𝗲𝘄𝘀 - 𝟮𝟬𝟮𝟲/𝟬𝟲/𝟬𝟴 (Valuable News - 2026/06/08) available.

                                            vermaden.wordpress.com/2026/06

                                            Past releases: vermaden.wordpress.com/news/

                                              [?]⚓💾 Tueddelmors 💾⚓ » 🌐
                                              @reeeen@norden.social

                                              22 Uhr Abends, und mir fällt auf: `tldr` statt `man` ist wie der Unterschied zwischen "ich erkläre dir die ganze Philosophie des Befehls" und "hier sind die 5 Beispiele, die du wirklich brauchst".

                                              `tldr tar` hat mir mehr Lebenszeit gerettet als jeder Energy-Drink. Endlich entpacke ich Archive ohne im Kopf nach der richtigen Buchstabensuppe zu kramen. 🗜️

                                              Installiert via Paketmanager, gibt's für fast alles.

                                                [?]Janne Moren » 🌐
                                                @jannem@fosstodon.org

                                                So I've been using Shotwell as my photo organizer for many years. But it's old, creaky and only barely supported.

                                                What should I use instead? What do you use? I need:

                                                * Photo management (sorting, ranking, deleting)

                                                * Handles 10k+ images fine

                                                * edit with external editor (gimp)

                                                * RAW support

                                                * Runs locally on Linux

                                                * Ideally, import from camera

                                                * Ideally, export to Flickr

                                                * Ideally, a way to export from shotwell/import to the new organizer

                                                Any ideas?

                                                  [?]JdeBP » 🌐
                                                  @JdeBP@mastodonapp.uk

                                                  @paul

                                                  There's also the part where you discover the Linux Documentation Project and the joy of doco that is convincing but a quarter century or more out of date when you check all of the version numbers of the stuff that it tells you about. (-:

                                                  @rl_dane

                                                    [?]r1w1s1 » 🌐
                                                    @r1w1s1@snac.bsd.cafe

                                                    If you use ed, bc, dc, sqlite3, or other line-oriented tools, take a look at rlwrap.

                                                    sh
                                                    rlwrap ed


                                                    Arrow keys, command history, Ctrl-R search, and readline editing for programs that never had those features.

                                                    One of those small Unix tools that's easy to overlook.


                                                      [?]izzy [she/her] » 🌐
                                                      @izder456@fe.disroot.org

                                                      xterm.vt100.translations: #override \
                                                          Ctrl Shift <Key> equal: larger-vt-font() \n\
                                                          Ctrl <Key> minus: smaller-vt-font() \n\
                                                          Ctrl <Key> 0: set-vt-font(d) \n\
                                                          Ctrl Shift <Key> C: copy-selection(CLIPBOARD) \n\
                                                          Ctrl Shift <Key> V: insert-selection(CLIPBOARD)
                                                      

                                                      xterm(1) on #Linux or #BSD doesn’t support easy font resize and CUA copy-paste? uhh.

                                                        [?]dan_nanni » 🌐
                                                        @dan_nanni@mastodon.social

                                                        Unix is a long-standing family of stable, multiuser, multitasking operating systems known for its command-line power and clean design. “Unix-based” means an OS directly descends from Unix code or certified Unix lineage

                                                        Here are known Unix-based OS 😎👇 Some are discontinued, while others are still active, especially in the BSD family

                                                        Find high-res pdf ebooks with all my related infographics from study-notes.org

                                                          Jay 🚩 :runbsd: boosted

                                                          [?]Dark Blue Project » 🌐
                                                          @r1os@mastodon.bsd.cafe

                                                          Hello Fediverse,

                                                          I'm happy to announce our very own Mastodon instance called "FediBlue", a new friendly place in the Fediverse for all people that are interested in free and open source software, especially Linux, BSD and illumos.

                                                          FediBlue is part of our ongoing effort to strengthen the FOSS community by publishing content about it and help projects gaining visibility in a time where many companies try to force their services on users, train AIs with people's data and collect as many data as they could.

                                                          Alongside the wonderful BSD Cafe community, where I'm also at, FediBlue should provide another very friendly and welcoming place in the Fediverse. In the next days, the Dark Blue Project presence will move completely to FediBlue.

                                                          mastodon.fediblue.de

                                                            [?]Graham Perrin » 🌐
                                                            @grahamperrin@mastodon.bsd.cafe

                                                            How to add things such as wget and apt to Ubuntu 26.04 LTS in Linuxulator on FreeBSD?

                                                            reddit.com/r/Ubuntu/comments/1

                                                            What's the easiest way to install apt, in the absence of wget?

                                                            Alternatively: what's the easiest way to install wget, in the absence of apt?

                                                              dch :flantifa: :flan_hacker: boosted

                                                              [?]Jay 🚩 :runbsd: » 🌐
                                                              @jaypatelani@bsd.network

                                                              The NetBSD 🚩 Foundation wrapped up its 2026 AGM! 🚀 Quick recap of milestones & future plans:
                                                              📦 NetBSD-11 (RC4) is on the horizon.
                                                              🌳 The massive migration from CVS to Git/Mercurial is officially complete!
                                                              🎓 : 5 students onboarded (working on Wi-Fi stack upgrades, porting the desktop @E , and more).
                                                              🛡️ Security: Onboarding as a MITRE CNA, preparing for the EU CRA, and enforcing "Anti-Slop" (no unreviewed AI code) protocols.
                                                              🔬 Long-term: Long-term plans to use formal verification tools, with Core open to funding active code audits.

                                                              Full log: blog.netbsd.org/tnf/entry/annu

                                                                [?]ada » 🌐
                                                                @cmdada@blahaj.zone

                                                                I'ts been a fairly long time since i've used this acc but one of my friends told me I should promote a project i've been working on, so... yeah!

                                                                I wrote a 3ds homebrew that boots a full linux environment in a risc v emulator in a few c files and only aboout ~170kb of code including all of the builtin nonessential example stuff like a js environment, fizzbuzz, cli doom, and more.

                                                                it's called 3DS-CLI, and it can be installed from universal updater or built from source and manually installed, and it's all open source cause free software is awesome!

                                                                https://github.com/cmdada/3ds-cli

                                                                please interact with the github repo if you like it!

                                                                3ds-cli running on a red new nintendo 3ds xl listing files and having booted linux

                                                                Alt...3ds-cli running on a red new nintendo 3ds xl listing files and having booted linux

                                                                  [?]R.L. Dane :Debian: :OpenBSD: :FreeBSD: 🍵 :MiraLovesYou: [he/him/my good fellow] » 🌐
                                                                  @rl_dane@polymaths.social

                                                                  Don't tell me you think #Linux #Documentation is adequate.

                                                                  Go install CachyOS and somehow manage to change both the console font in Limine, and upon bootup, and then tell me the documentation is adequate.

                                                                  I give up. I'll just squint while logging in. You'd think stuff would be smart enough to say "Gee, the screen is 1080p, maybe let's not use an 8x16 console font. 🤦‍♂️

                                                                    [?]knoppix » 🌐
                                                                    @knoppix95@mastodon.social

                                                                    California lawmakers are considering exempting Linux and other open-source operating systems from the Digital Age Assurance Act after backlash over OS-level age verification requirements 🏛️
                                                                    Amendment could exempt major Linux distros, while proprietary platforms like SteamOS may still be covered 🐧

                                                                    🔗 tomshardware.com/software/linu

                                                                      [?]BoxyBSD » 🌐
                                                                      @BoxyBSD@mastodon.bsd.cafe

                                                                      Did you know - you can also grab free based VPS now!

                                                                      We took your feedback seriously and instead of breaking the philosophy at , @gyptazy crafted the @BoxedTux project with the same spirit and philosophy.

                                                                      Free Linux based instances for learning, testing and educational content. Supporting , , , , , and many more ones!

                                                                      is also powered by @gyptazy to support the community and beginners just focussing more on Linux based systems. No worries, remains as it is!

                                                                      Website: boxedtux.com
                                                                      Demo (YouTube): youtube.com/watch?v=-FEv3ANz5hc

                                                                        [?]Dendrobatus Azureus » 🌐
                                                                        @Dendrobatus_Azureus@mastodon.bsd.cafe

                                                                        Have you already enrolled on the Chat Mail service of BSD Café?

                                                                        ## No?

                                                                        Go read enroll, have fun!

                                                                        I've already enrolled / applied

                                                                        Compliments of @stefano who did a massive amount of work to make this a full BSD experience from the server side.

                                                                        This Café also runs in a BSD Jail

                                                                        chatmail.bsd.cafe/index.html

                                                                        [?]goetz [he/him] » 🌐
                                                                        @goetz@ipv6.social

                                                                        @stefano
                                                                        @jana

                                                                        Thank you Jana for this great talk and introduction to FreeBSD.

                                                                          [?]Stefano Marinelli » 🌐
                                                                          @stefano@mastodon.bsd.cafe

                                                                          Hello, BSD and Linux friends!

                                                                          Don't miss @jana 's great presentation later today: "How is FreeBSD different from Linux, what does it do well and why should I care?"

                                                                          The live stream can be found here: streaming.media.ccc.de/gpn24/v

                                                                          The recording will be available afterwards in: media.ccc.de/c/gpn24

                                                                          cfp.gulas.ch/gpn24/talk/ZSNZ89/

                                                                            [?]Nils Fuhrmann » 🌐
                                                                            @nfk@digitalcourage.social

                                                                            @david_chisnall

                                                                            2025 Schleswig-Holstein switched to Open Xchange, Thunderbird, LibreOffice and Nextcloud

                                                                            2026 Schleswig-Holstein started to switch from windows to Linux 💪

                                                                              [?]Colin the Mathmo [He/Him] » 🌐
                                                                              @ColinTheMathmo@mathstodon.xyz

                                                                              OK ... help needed.

                                                                              I'm trying to update my 20.04 machine to 22.04, thence to 24.04. I've run:

                                                                              $ apt update
                                                                              $ apt upgrade

                                                                              But I'm getting :

                                                                              E: The repository 'repo.skype.com/deb stable Release' no longer has a Release file.

                                                                              N: Updating from such a repository can't be done securely, and is therefore disabled by default.

                                                                              Then when I try:

                                                                              $ do-release-upgrade

                                                                              I get:

                                                                              Checking for a new Ubuntu release

                                                                              Please install all available updates for your release before upgrading.

                                                                              Help?

                                                                              Should I somehow work to expunge all knowledge of skype (and I'd be more than happy to do that) or should I somehow force the upgrade?

                                                                              TIA

                                                                                [?]Jesse Skinner [he/him] » 🌐
                                                                                @JesseSkinner@toot.cafe

                                                                                Wondering if anyone knows of any good active virtual tech meetups? Like zoom calls, or maybe discord voice etc.. Anything related to , , etc. etc. I'm open to hearing about any and all. They seem hard to find..

                                                                                  [?]Debby ‬⁂📎🐧:disability_flag: » 🌐
                                                                                  @debby@hear-me.social

                                                                                  [?]Jay 🚩 :runbsd: » 🌐
                                                                                  @jaypatelani@bsd.network

                                                                                  This World Environment Day, combat e-waste by recycling your old tech with . Don't let planned obsolescence dictate your hardware's lifespan. Give that old machine a second life as a rock-solid firewall, file server, or lightweight workstation. 🖥️🌱

                                                                                    [?]Lukas » 🌐
                                                                                    @lukas@social.tchncs.de

                                                                                    Is there any good Linux (no Android) tablet out there? Sadly Fairphone doesn't offer one.

                                                                                      [?]matthew - retroedge.tech » 🌐
                                                                                      @matthew@social.retroedge.tech

                                                                                      Situation Update:

                                                                                      A hard line "I don't use anything with LLM generated code" stance will be difficult to maintain if you are a Linux user.

                                                                                      #Linux #LLM #AI

                                                                                        [?]Jonathan Dowland » 🌐
                                                                                        @jmtd@pleroma.debian.social

                                                                                        New blog post: mount namespace for backup jobs (by hand)
                                                                                        https://jmtd.net/log/mount_namespace_backup/
                                                                                        I make a small adjustment to my backup jobs in order to run them all in a separate, dedicated mount namespace. #backups #linux

                                                                                          [?]Seize [He/Him] » 🌐
                                                                                          @Seize@mastodon.social

                                                                                          @rl_dane @ianthetechie and *raw* mobile is nowhere near ready for primetime

                                                                                            Back to top - More...