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

[?]Larvitz :fedora: :redhat: »
@Larvitz@burningboard.net

I use Jails with Ansible to automate their creation, their lifecycle management and automation of the jailed applications and I highly enjoy, how comfortable and easy it is.

No immutable images, no “Dockerfiles”, no weird volume mounts or image registries and no constant re-creation of images and new deployments just to update something. Just some simple, well isolated operating systems to run my applications in 🙂

I don’t say that Linux containers are bad. There’s for sure situations, where they shine. Just for my personal use-case, they are more effort in comparison to BSD jails and I’m a fan of “using the right tool for a task”

And the idempotent nature of Ansible automation makes it easy to describe them in a declarative way and manage them at scale.

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

    vnStat is a console-based network traffic monitor for Linux/BSD/UNIX, logging usage hourly, daily, and monthly on the server or router

    * Linux installation
    cyberciti.biz/faq/ubuntu-insta or cyberciti.biz/faq/centos-redha

    * FreeBSD installation cyberciti.biz/faq/freebsd-inst

    Alt...vnstat command demo showing daily, monthly and yearly traffic keeping on your Linux or FreeBSD or Unix machines.

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

      Improving network filtering performance with Bpfilter
      (free link) https://lwn.net/SubscriberLink/1017705/ca0af831379ca794/

      From servers in a data center to desktop computers, many devices communicating on a network will eventually have to filter traffic, whether for security or performance reasons. Bpfilter is a project that allows packet filtering to be done with BPF, which can be faster than other mechanisms. Even small performance improvements in this area can lead to significant gains.


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

        Google Chrome was not following the notification spec on Linux for years. This went unnoticed by most of users as services worked it around to accommodate Chrome.

        @dnkl took the stand with his notification service that notifications from Chrome wouldn’t work until they followed the spec. After a few years this led to Chrome getting patched to follow the spec.

        social.treehouse.systems/@dnkl

          [?]Wesley Moore »
          @wezm@mastodon.decentralised.social

          I've been talking about it for months, but I finally followed Jami Kettunen's instructions and got Chimera Linux installed in my Yoga Slim 7x ARM laptop.

          Windows was crashing every few days (while unattended) with the error "The system has rebooted without cleanly shutting down first. This error is caused because the system stopped responding and the hardware watchdog triggered a system reset." even after a full restore.

          I'm hoping Linux is more stable.

          Screenshot of the the default Chimera Linux GNOME desktop with a terminal running. The terminal is showing the output of fastfetch.

          Alt...Screenshot of the the default Chimera Linux GNOME desktop with a terminal running. The terminal is showing the output of fastfetch.

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

            Here is a quick useful tip for developers and sysadmins/devops folks. Install `dnf-automatic` package on your RHEL/CentOS/Rocky/Oracle/Fedora or Alma to automate updates and patching:

            sudo dnf install dnf-automatic
            sudo systemctl enable --now dnf-automatic.timer

            This simple tip can help you manage your packages more efficiently and keep your system up-to-date with less manual intervention, which is especially useful when you are on holidays. See cyberciti.biz/faq/install-enab

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

              What's the lifespan of a "temporary" workaround in IT?

              Approximately the same as the universe, according to the ancient IT proverb: "There's nothing as permanent as a temporary solution."

                [?]Jan Schaumann »
                @jschauma@mstdn.social

                Pffft *spits coffee all over keyboard*

                So apparently on , usernames starting with "0x" are interpreted as hex numbers under certain circumstances. 🤪 That seems like asking for trouble...

                Terminal output highlighting how username 0x3E8 maps to uid 1000 when passed to the ps(1) command:

jschauma@ubuntu:~$ id
uid=1000(jschauma) gid=1000(jschauma) groups=1000(jschauma),27(sudo)
jschauma@ubuntu:~$ id 0x3E8
uid=1002(0x3E8) gid=1002(0x3E8) groups=1002(0x3E8)
jschauma@ubuntu:~$ id 0x0
uid=1001(0x0) gid=1001(0x0) groups=1001(0x0)
jschauma@ubuntu:~$ sudo -u 0x3E8 sleep 600 &
[1] 1384
jschauma@ubuntu:~$ ps -o pid,uid,cmd -u 0x3E8
    PID   UID CMD
    868  1000 /usr/lib/systemd/systemd --user
    869  1000 (sd-pam)
    953  1000 sshd: jschauma@pts/0
    957  1000 -bash
   1365  1000 sshd: jschauma@pts/1
   1366  1000 -bash
   1387  1000 ps -o pid,uid,cmd -u 0x3E8
jschauma@ubuntu:~$ ps -ax -o pid,uid,cmd | grep [s]leep
   1384     0 sudo -u 0x3E8 sleep 600
   1385     0 sudo -u 0x3E8 sleep 600
   1386  1002 sleep 600
jschauma@ubuntu:~$ ps -o pid,uid,cmd -u 0x0
    PID   UID CMD
      1     0 /sbin/init
      2     0 [kthreadd]
      3     0 [pool_workqueue_release]
      4     0 [kworker/R-rcu_g]
      5     0 [kworker/R-rcu_p]
      6     0 [kworker/R-slub_]
      7     0 [kworker/R-netns]
      8     0 [kworker/0:0-cgroup_destroy]
      9     0 [kworker/0:1-events]

                Alt...Terminal output highlighting how username 0x3E8 maps to uid 1000 when passed to the ps(1) command: jschauma@ubuntu:~$ id uid=1000(jschauma) gid=1000(jschauma) groups=1000(jschauma),27(sudo) jschauma@ubuntu:~$ id 0x3E8 uid=1002(0x3E8) gid=1002(0x3E8) groups=1002(0x3E8) jschauma@ubuntu:~$ id 0x0 uid=1001(0x0) gid=1001(0x0) groups=1001(0x0) jschauma@ubuntu:~$ sudo -u 0x3E8 sleep 600 & [1] 1384 jschauma@ubuntu:~$ ps -o pid,uid,cmd -u 0x3E8 PID UID CMD 868 1000 /usr/lib/systemd/systemd --user 869 1000 (sd-pam) 953 1000 sshd: jschauma@pts/0 957 1000 -bash 1365 1000 sshd: jschauma@pts/1 1366 1000 -bash 1387 1000 ps -o pid,uid,cmd -u 0x3E8 jschauma@ubuntu:~$ ps -ax -o pid,uid,cmd | grep [s]leep 1384 0 sudo -u 0x3E8 sleep 600 1385 0 sudo -u 0x3E8 sleep 600 1386 1002 sleep 600 jschauma@ubuntu:~$ ps -o pid,uid,cmd -u 0x0 PID UID CMD 1 0 /sbin/init 2 0 [kthreadd] 3 0 [pool_workqueue_release] 4 0 [kworker/R-rcu_g] 5 0 [kworker/R-rcu_p] 6 0 [kworker/R-slub_] 7 0 [kworker/R-netns] 8 0 [kworker/0:0-cgroup_destroy] 9 0 [kworker/0:1-events]

                  Sadukie boosted

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

                  Quick tip: You can use the last argument of the previous command at the CLi. The syntax is:
                  command1 !$

                  For example, make a new dir:
                  mkdir foo_dir1

                  Then:
                  cd !$

                  which becomes cd foo_dir1, thus saving you typing time. Give it a try.

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

                    Heads up: Multiple Security Issues in GNU Screen - mostly affecting release
                    5.0.0 and setuid-root installations (Local Root Exploit and others) openwall.com/lists/oss-securit

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

                      You can quickly toggle between your two most recent directories with ‘cd -‘:

                      If you find yourself frequently jumping back and forth between two directories, stop typing out long paths repeatedly! Simply use the command:
                      cd -

                      This command will take you to the directory you were in just before your current one. Executing it again will take you back. It saves me a lot of typing and time so give it a try 😌

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

                        or users will understand this one 😅

                        A glass bottle of "Chmod 777" liquor with a silver cap shows a label with an image of a man and a woman.

                        Alt...A glass bottle of "Chmod 777" liquor with a silver cap shows a label with an image of a man and a woman.

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

                          Linux removes support for the 486, and now I’m curious what that means for Vortex86 processors

                          I had to dig through our extensive archive - OSNews was founded in 2007, after all - to see if we reported on it at the time, but it turns out we didn't: in 2006, Intel announced that in 2007, it would cease production of a range of old chips, includi

                          osnews.com/story/142343/linux-

                            [?]Rob Pumphrey »
                            @robpumphrey@mastodonapp.uk

                            Our household living room computer runs Debian 12 and KDE and we each have our own sessions and use CTRL-ATL-F7 CTRL-ATL-F8 ... to switch between sessions.
                            Generally it works really well, but every so often, a Plasma process consumes all the RAM causing the PC to lock up. Sometimes it recovers, but the fastest thing to do is a hard reboot.
                            Any suggestions how I might find out what is going on and how to fix? The PC is usually so nailed, that is it is not possible to run any commands.


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

                              Realize the following; **you** are in control of the fun you have when you are computing.

                              The only way you can guarantee that is by running an Open Source Operating System on that device.

                              If you happen to be in a closed Source operating system with an open source kernel {Android} there are ways to dechain yourself fully

                              They will probably be hard or painful but they are worth the effort.

                              If it seems to be too hard, plan your next device to be one that is designed to run with an open source operating system especially if you are going to buy your next Android.

                              First check if your device is supported by an open source operating system, fully supported!, then you buy it.

                              Make sure that the grip of the closed Source operating system underlords on you is released Free yourself

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

                                yes. the op mentioned somewhere down only browser is needed. so, RHEL workstation is a great choice combined with firewalld + SELinux. It offers great protection + privacy. Just install Adblocker on FF and your gradma will thank you. this is another way to support opensource. No Recall. No spyware. No Ads. Nothing. It saves elderly from scams reddit.com/r/redhat/comments/1

                                Is Redhat workstation good for a grandma PC?

I am looking for an install and forget distro for my mother's pc. Is it a good choice to install Rhel with no cost developer account? Rhel is bullet proof for servers, how is it for workstations?

                                Alt...Is Redhat workstation good for a grandma PC? I am looking for an install and forget distro for my mother's pc. Is it a good choice to install Rhel with no cost developer account? Rhel is bullet proof for servers, how is it for workstations?

                                  dch :flantifa: :flan_hacker: boosted

                                  [?]Mina »
                                  @mina@berlin.social

                                  @graste

                                  I hate that: In the late 90s, the community was proud to be better at than commercial operating systems.

                                  Nowadays, the total lack of it, makes Linux an absolute NoGo for institutional and corporate environments.

                                  I believe that the task of fixing that is too much for a community of volunteers.

                                  If states (or the EU) don't fund the necessary developments, it will be the end of Linux and FOSS in many professional settings.

                                    #netbsd boosted

                                    [?]vermaden »
                                    @vermaden@mastodon.social

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

                                    vermaden.wordpress.com/2025/05

                                    Past releases: vermaden.wordpress.com/news/

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

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

                                      vermaden.wordpress.com/2025/05

                                      Past releases: vermaden.wordpress.com/news/

                                        [?]Nils »
                                        @Nils@mastodon.xyz

                                        Jay 🚩 :runbsd: boosted

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

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

                                        Another 12 year old Mac Mini brought back into a working life - even if only temporarily - thanks to .

                                        runs beautifully on it.

                                        Thank goodness for , keeping old hardware useful.

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

                                          Just shared a glimpse of my desktop setup over on https://deskto.ps!
                                          Currently rocking a cool bitmap wallpaper from the bitmap-walls(https://github.com/dkeg/bitmap-walls) collection
                                          something about those simple patterns just clicks for me.

                                          Plus, everything feels so snappy with my trusty TWM. What does your desktop look like?
                                          Share your screenshots! ☻☻☻

                                          Mine -> https://deskto.ps/u/r1w1s1/d/pfpn2j

                                            🗳

                                            [?]mms :runbsd: :emacs: :c64: »
                                            @mms@mastodon.bsd.cafe

                                            as an xorg-bro: what made worse impact on linux?

                                            SystemD:25
                                            Wayland:7
                                            They are both great!:34

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

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

                                              This is a good news. Progress towards universal Copy/Paste shortcuts on Linux mark.stosberg.com/universal-co

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

                                                Do not fall for the trap of the ClosedSource operating system underlords. Your computing hardware is perfectly capable of Running a proper operating system maintained currently and run on full open source components

                                                Just go to the following Place read learn and adapt

                                                Stop using closed Source operating systems and software; dechain yourself become unslaved

                                                When you program in C++ use GCC when you write text use markdown. Go full platform independent and full OpenSource and remain dechained

                                                @kde
                                                @gnome
                                                @xfce

                                                endof10.org/

                                                 The screencap displays a mobile phone screen with a blue background and white text. At the top, the time is shown as 06:05, and the battery is at 89%. The text "END OF 10" is prominently displayed in large white letters. Below this, there are three navigation options: "Places," "Events," and "DIY Install," with "DIY Install" underlined. The main text reads: "Support for Windows 10 ends on October 14, 2025. Microsoft wants you to buy a new computer. But what if you could make your current one fast and secure again?" At the bottom of the screen, the website address "endof10.org" is visible, along with a search bar and navigation icons.

 Ovis2-8B

🌱 Energy used: 0.202 Wh

                                                Alt... The screencap displays a mobile phone screen with a blue background and white text. At the top, the time is shown as 06:05, and the battery is at 89%. The text "END OF 10" is prominently displayed in large white letters. Below this, there are three navigation options: "Places," "Events," and "DIY Install," with "DIY Install" underlined. The main text reads: "Support for Windows 10 ends on October 14, 2025. Microsoft wants you to buy a new computer. But what if you could make your current one fast and secure again?" At the bottom of the screen, the website address "endof10.org" is visible, along with a search bar and navigation icons. Ovis2-8B 🌱 Energy used: 0.202 Wh

                                                  #netbsd boosted

                                                  [?]​izzy »
                                                  @izder456@ieji.de

                                                  be wary of blaming the tool when the real tool may have just been yourself

                                                    [?]chesheer »
                                                    @chesheer@mastodon.bsd.cafe

                                                    removes Deepin from and later due to numerous violations of packaging policy.
                                                    Sounds probably bad for Deepin users, but what surprised me is this:
                                                    "In January 2025, during routine reviews, we stumbled upon the deepin-feature-enable package, which was introduced on 2021-04-27 without consulting us or even informing us."
                                                    This package basically asked user permission and then injected D-Bus configs and Polkit policies from custom tarballs to circumvent openSUSE strict policy about new D-Bus and Polkit. Sounds shady, right?
                                                    But it has been happening for four years! It seems modern OSes and in particular are overbloated.
                                                    How can we expect normal user to know their system, if even maintainers have no idea what's happening behind the curtains?
                                                    It's good to see this resolved at last, but man, four years!
                                                    What's funny, this "shady" package description plainly states that it asks the user if they agree to openSUSE security circumvention to install D-Bus configs and PolKit policies.

                                                    security.opensuse.org/2025/05/

                                                      Back to top - More...