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

[?]GNOME » 🌐
@gnome@floss.social

GNOME.Asia 2025 is live in Tokyo, Japan! The two day event has a fantastic schedule of talks and workshops.

events.gnome.org/event/303/

If you can’t attend in person, the sessions can also be viewed remotely; head over to the online registration to sign up and follow along:

events.gnome.org/event/303/reg

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

    Problem: I wanted to share music library between a work and personal laptops without storing the collection on a pay-per-month cloud service.

    Solution: I installed Navidrome on my home Linux server, then installed Supersonic app for Linux to access it. Success! Whole process took less then 30 minutes.

    navidrome.org/

    github.com/dweymouth/supersonic

      [?]Nils » 🌐
      @Nils@mastodon.xyz

      Et voici mon ! Merci à tout.e.s pour les subs, follows, likes, et soutiens de toutes sortes à commencer par celui de me regarder !

      Infographie récapitulative des statistiques de ma chaîne Twitch. 60 streams, 172 nouveaux followers, 48 subs, et plus de 1800 heures regardées.

      Alt...Infographie récapitulative des statistiques de ma chaîne Twitch. 60 streams, 172 nouveaux followers, 48 subs, et plus de 1800 heures regardées.

        [?]ARGVMI~1.PIF » 🌐
        @argv_minus_one@mastodon.sdf.org

        🤚 Logical volume management
        👉 Emotional volume management

          [?]Linh Pham » 🌐
          @qlp@linh.social

          Post: "My hardware isn't being detected"

          Commentor: "This is why I love immutable distros"

          Me: How the fsck is that helping the person asking the question? You're the kind of person who will drive away people who want to switch to Linux.

            [?]Pete Orrall » 🌐
            @peteorrall@mastodon.bsd.cafe

            @SrRochardBunson @ajroach42 @stefano

            The BSDs are *awesome* operating systems. is a high performance general purpose OS. It is modern . is for portability, it supports nearly every CPU architecture under the sun. is security-focused. is a FreeBSD fork focused on the desktop.

            Most of my experience is with FreeBSD, which I will enthusiastically share. It is unquestionably a solid server OS. As a desktop OS, it works quite well. It definitely does not feel like "Linux from 2004." The major desktop environments like are all supported and releases drivers for the OS too. Modern hardware is supported. For *cutting edge hardware*, may be the better bet here. It's a little slower to adopt cutting edge gear because it is focused on stability and elegant solutions, not trend-chasing.

            FreeBSD is an excellent OS to learn. It runs beautifully and it's more coherent and better designed. Documentation is *solid*.

              [?]Paolo Amoroso » 🌐
              @amoroso@oldbytes.space

              In 2002 Anders Jensen-Urstad asked some computing pioneers and well known programmers to share screenshots of their desktops, then did it again in 2015. This post presented and commented the screenshots.

              anders.unix.se/2015/12/10/scre

                [?]Justine Smithies » 🌐
                @justine@snac.smithies.me.uk

                I wonder if disabling TPM in the BIOS would make any difference to suspend and resume if it's enabled? Reason I'm wondering is because suspend resume worked on and without issues with this laptop.

                  [?]Alexander Dyas » 🌐
                  @alexanderdyas@mindly.social

                  Guy I used to work with had his terminal set to a proportional font.

                  This was over 20 years ago.

                  I still think about that.

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

                    @kaidenshi that's why didn't go for GPLv3 or AGPLv3

                      [?]Lars Wirzenius » 🌐
                      @liw@toot.liw.fi

                      I have a training course for the basics of Rust. In about four hours I can cover enough to enable the students to learn more on their own. Now that Rust is a core part of the Linux kernel, I imagine there are some Linux kernel developers who feel they need to learn Rust soon. They should talk to their employer to hire me to teach them.

                      liw.fi/training/rust-basics/

                      (Blatant ad. Feel free to boost.)

                        [?]OSNews » 🤖 🌐
                        @osnews@mstdn.social

                        What do Linux kernel version numbers mean?

                        If you're old enough, you no doubt remember that up until the 2.6.0 release of the Linux kernel, an odd number after the first version number indicated a pre-release, development version of the kernel. Even though this scheme was abandoned with the 2.6.0 release in 2003 and since then every single release has been a stable release, it seems the ghosts of

                        osnews.com/story/143992/what-d

                          [?]Neil Brown » 🌐
                          @neil@mastodon.neilzone.co.uk

                          Today's is a double whammy of shell-based "checking" utilities.

                          linkchecker (linux.die.net/man/1/linkchecker; probably get it from your distro) checks websites (recursively, as you wish) for broken links.

                          shellcheck (shellcheck.net/; available in browser or as a terminal tool) checks bash and other shell scripts for bugs.

                          Very simple, single purpose, very useful, tools.

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

                            Do you want to run a Linux or Unix/macOS program directly after some other process has ended? Use the pwait as follows:
                            ```pwait pid && new_app1```
                            For example, for demo run sleep for 1200 and wait to end and then run the app2:

                            ```sleep 1200 &
                            pwait pid_of_sleep_here && app2```

                            See the `pwait` man page for more info as syntax changes slightly between Linux and BSD version. This is very handy utility and not well known to many:
                            `man pwait`

                            a screenshot of the pwait manual page from Linux.  The screenshot reads:

NAME
     pwait — wait for processes to terminate

SYNOPSIS
     pwait [-v] [-c] pid ...

DESCRIPTION
     pwait waits until each of the given processes has terminated.

     The options are as follows:

     -v      Print the exit status when each process terminates.

     -c      Return 111 if any process exited non-successfully.

EXIT STATUS
     The pwait utility exits 0 on success, and >0 if an error occurs.

     Invalid pids elicit a warning message but are otherwise ignored.

ERRORS
     Check these prerequisites if you see this error:

           binding sk_nl error: Operation not permitted

     pwait requires special permissions to run, either root or the Linux CAP_NET_ADMIN capability.

     pwait only works on Linux kernels with the kernel options

           CONFIG_CONNECTOR=y
           CONFIG_PROC_EVENTS=y

                            Alt...a screenshot of the pwait manual page from Linux. The screenshot reads: NAME pwait — wait for processes to terminate SYNOPSIS pwait [-v] [-c] pid ... DESCRIPTION pwait waits until each of the given processes has terminated. The options are as follows: -v Print the exit status when each process terminates. -c Return 111 if any process exited non-successfully. EXIT STATUS The pwait utility exits 0 on success, and >0 if an error occurs. Invalid pids elicit a warning message but are otherwise ignored. ERRORS Check these prerequisites if you see this error: binding sk_nl error: Operation not permitted pwait requires special permissions to run, either root or the Linux CAP_NET_ADMIN capability. pwait only works on Linux kernels with the kernel options CONFIG_CONNECTOR=y CONFIG_PROC_EVENTS=y

                              [?]Tomáš » 🌐
                              @prahou@merveilles.town

                              Fish Alpinism

                              How I make digital art.

                              triapul.cz/_/1765291397

                              artist keyboard

                              Alt...artist keyboard

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

                                Twelve Days of Shell: Test your shell knowledge by taking the command line challenges. Are you ready?

                                * source code repo to host it locally gitlab.com/jarv/cmdchallenge
                                * Or do it online 12days.cmdchallenge.com/

                                Good luck, CLI lovers!

                                A screenshot of 'Twelve Days of Shell' command line challenge page.

                                Alt...A screenshot of 'Twelve Days of Shell' command line challenge page.

                                  [?]It's FOSS » 🌐
                                  @itsfoss@mastodon.social

                                  Discover the best GUI tools to search your Linux system without touching the terminal.

                                  itsfoss.com/linux-gui-search-t

                                    [?]Leonid » 🌐
                                    @leonid@norden.social

                                    Ich bin auf der Suche nach einem refurbished , auf dem (vermutlich Ubuntu) laufen soll. Für einfache Büroarbeit und etwas Webentwicklung. Überwiegend am Monitor angeschlossen. So bis 500 Euro. Habt ihr Empfehlungen? Die ThinkPads sehen ganz nett aus, aber ich steige nicht mehr durch, welches Modell geeigneter wäre. Und welches gut mit Linux zusammenspielt (Power Management etc).

                                    Ergänzung: AMD und kein Intel.

                                      #netbsd boosted

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

                                      Latest 𝗩𝗮𝗹𝘂𝗮𝗯𝗹𝗲 𝗡𝗲𝘄𝘀 - 𝟮𝟬𝟮𝟱/𝟭𝟮/𝟬𝟴 (Valuable News - 2025/12/08) available.

                                      vermaden.wordpress.com/2025/12

                                      Past releases: vermaden.wordpress.com/news/

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

                                        Latest 𝗩𝗮𝗹𝘂𝗮𝗯𝗹𝗲 𝗡𝗲𝘄𝘀 - 𝟮𝟬𝟮𝟱/𝟭𝟮/𝟬𝟴 (Valuable News - 2025/12/08) available.

                                        vermaden.wordpress.com/2025/12

                                        Past releases: vermaden.wordpress.com/news/

                                          [?]HP van Braam » 🌐
                                          @hp@mastodon.tmm.cx

                                          You know, I "lived through this" on before , but I honestly forgot just how ridiculously better 3.4 is than gcc 2.95.3.

                                          I remember the upgrade when this was all current.

                                          But hot damn, how did we ever manage with GCC 2.95. (No shade at the GCC project here, a large part of that was just how garbage older C/C++ is)

                                            [?]Bradley Taunt » 🌐
                                            @bt@mastodon.bsd.cafe

                                            Why am I only learning about DuckDuckGo custom mascots for Linux, FreeBSD, OpenBSD etc.

                                            DuckDuckGo mascot as FreeBSD

                                            Alt...DuckDuckGo mascot as FreeBSD

                                              [?]R.L. Dane :Debian: :OpenBSD: :FreeBSD: 🍵 :MiraLovesYou: » 🌐
                                              @rl_dane@polymaths.social

                                              @amin @spaceraser @jlw_the_jobber @mason

                                              Honestly, the #Linux kernel is just such an amazing accomplishment.

                                              I don't understand why userspace has to be such a gigantic ball of wax, and constantly changing, and subject to such insane politics and infighting*.

                                              Meanwhile, #OpenBSD is like, "Well, our kernel doesn't have a modern filesystem, or bluetooth, and it may just panic if you poke the wrong thing, but the manpages will make you weep with joy, and everything is more or less sane and nicely laid-out, and we don't change things unless the change is an improvement."

                                              * To be sure, right or wrong, I consider the constant push towards systemd-kitchensink to be very much political. And by "political," I mean "stupid office politics," not "your discussion of inherent issues of justice and ethics makes me uncomfortable in my privilege."

                                                Bill Seitz boosted

                                                [?]Matthew Sheffield » 🌐
                                                @mattsheffield@mastodon.social

                                                I had no idea that Borland's famous Turbo Vision text user interface from the 1990s was released into the public domain and has since been ported to and elsewhere, including this amazing terminal multiplexer that has the makings of a tmux on steroids github.com/magiblot/tvterm

                                                A screenshot featuring the Unix terminal application Konsole running the tvterm terminal multiplexer featuring two virtual terminals in a stacking window layout. The window on top features an HTML document being edited in a white on black interface. The background window features WordPerfect 8.0 for Unix editing a document with a white on blue colored interface.

A popup menu appears on top with controls for:
New Term
Close Term
Next Term
Previous Term

and other menu items

                                                Alt...A screenshot featuring the Unix terminal application Konsole running the tvterm terminal multiplexer featuring two virtual terminals in a stacking window layout. The window on top features an HTML document being edited in a white on black interface. The background window features WordPerfect 8.0 for Unix editing a document with a white on blue colored interface. A popup menu appears on top with controls for: New Term Close Term Next Term Previous Term and other menu items

                                                  [?]GNOME » 🌐
                                                  @gnome@floss.social

                                                  This year brought great improvements to in GNOME, including:

                                                  • Accessibility from the start on the login screen
                                                  • Full accessibility of GNOME Web
                                                  • Tons of improvements to Calendar
                                                  • Screen reader integration for Notifications
                                                  • Configure screen reader from Settings
                                                  • GTK apps integrated w/Windows & macOS accessibility

                                                  Help us reach 1,500 so we can focus on accessibility even more in 2026!

                                                  donate.gnome.org

                                                    [?]Pete Orrall » 🌐
                                                    @peteorrall@mastodon.bsd.cafe

                                                    @JdeBP It's an older HP tablet-laptop thing. It runs and fine. The problem is the system cannot proceed after receiving the error. It just sits there until I reboot.

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

                                                      Do you Patch machines regularly? Even when your bandwidth is constrained take the time to patch them and be safe.

                                                      In this example I photographed the patching of one of the micro SD Cards of the SBC.

                                                      I've patched all of them.

                                                      For the X86 machines the Os on the main 2280 SSD is patched. Other SSD and HDD will follow. The BSD HDDs need patch Love 💕 too. They will get it

                                                        [?]Akseli :quake_verified::kde: » 🌐
                                                        @aks@scalie.zone

                                                        KDE has reached 100k euros in donations! Love to see it. Thanks for your support, the money will be used well.

                                                        kde.org/fundraisers/yearend202

                                                          Sam Cranford boosted

                                                          [?]It's FOSS » 🌐
                                                          @itsfoss@mastodon.social

                                                          Is Linux Mint the perfect distro for beginners? Comment! 🐧

                                                          There is a picture of the Hulk standing near the Ant-Man (not in suit), with this being asked by him: 
Which distro should I use as a beginner?

In the second picture, Hulk (called Linux community here) is shown handing out a taco called "Linux Mint".

                                                          Alt...There is a picture of the Hulk standing near the Ant-Man (not in suit), with this being asked by him: Which distro should I use as a beginner? In the second picture, Hulk (called Linux community here) is shown handing out a taco called "Linux Mint".

                                                            [?]Michael Dexter » 🌐
                                                            @dexter@bsd.network

                                                            WOW by @hayzam is making good progress!

                                                            Now on to Jails support, including -compatible jails:

                                                            bsd.network/@dexter/1156592106

                                                            From the call, “I avoided FreeBSD because I thought it would break things but it fixed lots of issues I was having!” (Paraphrased)

                                                            Thank you @FreeBSDFoundation for support his work!

                                                            trifecta

                                                              Jay 🚩 :runbsd: boosted

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

                                                              As you can see the build process is smooth, the execution is blazingly fast. What more could I ask for?

                                                                Back to top - More...