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 #NetBSD

#netbsd boosted

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

One year ago, today.

"Why and how we're migrating many of our servers most of our servers from Linux to the BSDs" - aka, "I solve problems"

youtube.com/watch?v=UnVp25-6Qao

    Jay 🚩 :runbsd: boosted

    [?]Jun Nergahak 🌺🌺🌺 » 🌐
    @nergahak@mastodon.social

    Jay 🚩 :runbsd: boosted

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

    @moses_izumi @hikari @AnachronistJohn

    #NetBSD definitely deserves some love for being one of the very few, and perhaps the most featureful Operating Systems that has a strong #NOAi stance.❤️‍🔥

    I definitely want to start supporting them. I need to get on that.

      Jay 🚩 :runbsd: boosted

      [?]Dragon of BSDCafe :freebsd: [he/him] » 🌐
      @evgandr@mastodon.bsd.cafe

      Kinda postmortem:

      1) The maximal log size before rotation and count of gzipped logs to store should be increased in the newsyslogd configuration. This should be applied to any service, which is looking into the void^WInternet. So, I will not loss log records, related to the start of attack…

      2) Also, Asterisk log should be added to newsyslogd configuration first. It weren't added here, so *.log files became too big (> 1 Gb) and of course fail2ban ate a lot of memory while parsing these big logs. If they were rotated properly, then fail2ban will not eat so much memory, parsing small enough files.

      3) Since start of attack in logs were lost, then I could only imagine possible root cause of an attack. By default, any IP, which once failed to provide the proper credentials to login somewhere in my kitchen server, is banned immediately and forever.
      But somehow those attackers managed to use just 2 IPs to make an attack and they weren't banned before manual intervention :drgn_confused:

      According to fail2ban logs they were banned, but they were obviously not banned by npf. So, I think, they started attack right in time when my blacklists were successfully updated and npf was reloading — as a result their IPs appeared as "banned" in the fail2ban, but the fail2ban failed to ban them via npf, so "IRL" their IPs still weren't banned. Time to revisit my script to update blacklists :drgn_wrench:

      4) Looks like I need to install some Intrusion Detection System (possibly snort :drgn_think: since it is mature enough). It isn't good to rely only on one mechanism (fail2ban + blacklists + npf) to protect my precious machine.

        #netbsd boosted

        [?]Dragon of BSDCafe :freebsd: [he/him] » 🌐
        @evgandr@mastodon.bsd.cafe

        Kinda postmortem:

        1) The maximal log size before rotation and count of gzipped logs to store should be increased in the newsyslogd configuration. This should be applied to any service, which is looking into the void^WInternet. So, I will not loss log records, related to the start of attack…

        2) Also, Asterisk log should be added to newsyslogd configuration first. It weren't added here, so *.log files became too big (> 1 Gb) and of course fail2ban ate a lot of memory while parsing these big logs. If they were rotated properly, then fail2ban will not eat so much memory, parsing small enough files.

        3) Since start of attack in logs were lost, then I could only imagine possible root cause of an attack. By default, any IP, which once failed to provide the proper credentials to login somewhere in my kitchen server, is banned immediately and forever.
        But somehow those attackers managed to use just 2 IPs to make an attack and they weren't banned before manual intervention :drgn_confused:

        According to fail2ban logs they were banned, but they were obviously not banned by npf. So, I think, they started attack right in time when my blacklists were successfully updated and npf was reloading — as a result their IPs appeared as "banned" in the fail2ban, but the fail2ban failed to ban them via npf, so "IRL" their IPs still weren't banned. Time to revisit my script to update blacklists :drgn_wrench:

        4) Looks like I need to install some Intrusion Detection System (possibly snort :drgn_think: since it is mature enough). It isn't good to rely only on one mechanism (fail2ban + blacklists + npf) to protect my precious machine.

          #netbsd boosted

          [?]Jeff Armstrong » 🌐
          @jeff@toot.rainbow-100.com

          Finally updated my #netbsd install to RC4, which I assume means the actual release will be today or tomorrow.

          The upgrade went alright. The permissions on /dev/tap0 were rewritten, which took me a minute to realize and fix so virtual machines will work again.

          Also had some bad USB issues trying to boot the installer, but it's impossible to say whether the hardware (likely) or NetBSD (unlikely) is to blame.

          A screencap of neofetch output showing a 3rd-gen i5 with 16GB RAM and an Nvidia 7xx running NetBSD 11_RC4

          Alt...A screencap of neofetch output showing a 3rd-gen i5 with 16GB RAM and an Nvidia 7xx running NetBSD 11_RC4

            [?]Diane Bruce » 🌐
            @DianeBruce@bsd.network

            #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

              Jay 🚩 :runbsd: boosted

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

              I am looking for small computo, requirements are:
              • small screen, max 10 inch
              • runs or
              • has a keyboard
              • can connect to Internet
              • it works
              • price is reasonable
              I am aware of:
              • MNT Reform Pocket (if I will be super rich one day, then I will take entire stock)
              • HP Jornada (especially 720, but availability is not great)
              • Zaurus machines (availability is almost zero and might not fill condition "it works")
              If you have any respond for me, the prize is guaranteed!

                [?]Dragon of BSDCafe :freebsd: [he/him] » 🌐
                @evgandr@mastodon.bsd.cafe

                Some graphs :drgn_aww: from with LLM-bots attacking my kitchen server.
                Graphs spans to the whole week, so on the left there is a normal state of my server. And on the right — attack is happening.

                Graph of CPU usage, which going high after LLM bots attack (at near 08 Jan Monday). At near 2 CPU cores were used by LLM bots, trying to abuse my  PBX as an Web-server.

                Alt...Graph of CPU usage, which going high after LLM bots attack (at near 08 Jan Monday). At near 2 CPU cores were used by LLM bots, trying to abuse my PBX as an Web-server.

                Graph with main network interface bits per minute — before attack there were almost no data receivin/transmitting, only some cron jobs at night. But after attack there are at near 20 Mb per minute both receiving and transmitting.

                Alt...Graph with main network interface bits per minute — before attack there were almost no data receivin/transmitting, only some cron jobs at night. But after attack there are at near 20 Mb per minute both receiving and transmitting.

                Graph with PostgreSQL connections. Active connections has green color. Before the attack there are almost no active connections, but after attack there are a lot of them, since Asterisk using PostgreSQL as a main backend.

                Alt...Graph with PostgreSQL connections. Active connections has green color. Before the attack there are almost no active connections, but after attack there are a lot of them, since Asterisk using PostgreSQL as a main backend.

                Load average for my server. After attack it increased at near 4 times.

                Alt...Load average for my server. After attack it increased at near 4 times.

                  Jay 🚩 :runbsd: boosted

                  [?]Bryan Steele » 🌐
                  @canadianbryan@mastodon.social

                  RE: social.treehouse.systems/@Asah

                  Heads up: This very likely also affects booting other non-Linux OS's on Apple silicon, don't upgrade to the macOS 27 beta.

                    [?]bkrawczyk » 🌐
                    @bkrawczyk@fosstodon.org

                    There is some progress on the matter. Thomas Klausner suggested an OpenSSL patch he had found and Martin Husemann helped fix my `build.sh` problems. Testing it all since yesterday and so far it hasn't crashed! 🤞

                      #netbsd boosted

                      [?]bkrawczyk » 🌐
                      @bkrawczyk@fosstodon.org

                      It's been almost 2 days since applying the patch to 11.0_RC4's and so far is still up and running. It'll be pulled up to netbsd-11 branch before the release!

                        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

                          Jay 🚩 :runbsd: boosted

                          [?]Jim Spath » 🌐
                          @jspath55@chaos.social

                          As the pkg of the postgis extension is not tied to a database version and the one seems to be, I moved the geo databases to the former. The rest, to NetBSD.
                          Zabbix, on the other hand, might need to be a little more performant. We'll see.

                          1204605:20260608:155730.445 slow query: 6.477221 sec, [...]

                          Plan is to move Zabbix back to the faster machine when is set.

                          (15 minutes down time for export, copy, import, restart).

                          Temperature of a CPU, with a gap for the database switcheroo.

                          Alt...Temperature of a CPU, with a gap for the database switcheroo.

                            Jay 🚩 :runbsd: boosted

                            [?]Diane Bruce » 🌐
                            @DianeBruce@bsd.network

                            Who was at BSDCan.org 2016?
                            Remember this?

                            cbc.ca/news/canada/ottawa/ten-

                            Those of us in Desmarais remember the lights flickering!

                            Speaking of which, the conference is open to anyone walking in off the street. Might interest some Ottawa natives as well.

                              [?]Peter N. M. Hansteen » 🌐
                              @pitrh@mastodon.social

                              Do you want to come to Brussels, mingle with BSD people, perhaps do a talk, a tutorial or a BOF session?

                              The Call for papers 2026.eurobsdcon.org/cfp/ is open until June 20th, for the conference in Brussels September 9-13, 2026.

                              We also offer pre-submission guidance/mentoring, see within.

                              Wonder what BSD and the conferences are about? See nxdomain.no/~peter/what_is_bsd

                              @EuroBSDCon

                                #netbsd boosted

                                [?]David Cantrell 🏏 » 🌐
                                @DrHyde@fosstodon.org

                                I got the world's cutest little computer over the weekend thanks to @murble! It's a of some kind, equivalent to a fast #486, and is genuinely so I shall no longer have to rely on emulation or running 32-bit kernels and libraries on 64-bit hardware for 32-bit testing! Gonna put on there.

                                But first, because it has no serial port and the only video output is VGA, I need to find a VGA monitor.

                                No because I don't like bananas. Have an aniseed twist instead.

                                A photograph of a ridiculously tiny computer sitting on a brown wooden desk. The computer measures 95 by 95 by 20mm. You can see the front, which has 2 USB ports, an SD card slot, pointless audio in/out, and a dinky little power button. The whole of the top surface is a heat sink and there are four screw holes going all the way through, presumably for mounting on the back of a monitor. There is a delicious aniseed twist on top for scale.

Modern aniseed twists taste good, but are a pale imitation of the deep red that they used to be back in the good old days before all this woke nonsense about poisoning children with lead-based food colourings. It is ORANGE, which is wrong. And PALE ORANGE at that. I shall write a stern letter to my MP.

                                Alt...A photograph of a ridiculously tiny computer sitting on a brown wooden desk. The computer measures 95 by 95 by 20mm. You can see the front, which has 2 USB ports, an SD card slot, pointless audio in/out, and a dinky little power button. The whole of the top surface is a heat sink and there are four screw holes going all the way through, presumably for mounting on the back of a monitor. There is a delicious aniseed twist on top for scale. Modern aniseed twists taste good, but are a pale imitation of the deep red that they used to be back in the good old days before all this woke nonsense about poisoning children with lead-based food colourings. It is ORANGE, which is wrong. And PALE ORANGE at that. I shall write a stern letter to my MP.

                                  #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/

                                      Jay 🚩 :runbsd: boosted

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

                                      @dfloyd888

                                      Au contraire, mon frère!

                                      #FreeBSD has a handbook that covers almost every basic config situation you'd face.
                                      #OpenBSD has man pages covering nearly everything
                                      I haven't gotten very deep into #NetBSD, but I'm sure its documentation is on point.
                                      #9front has... 9front has... 9front has some very nice people on fedi who will tell you turn back now while there's still time 😂

                                      The documentation experience on Linux is various forum posts telling you to try various things, none of which work, and maybe some obtuse documentation text file on kernel.org. Egad.

                                        #netbsd boosted

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

                                        @MaddieM4

                                        Even easier for those who have learned the modern BSD ftp command. (-:

                                        The BSDs decided that since the tool for fetching files was named ftp, they'd just augment the protocols that it was capable of speaking.

                                        has an extra fetch command as well. But all of them — , , and the derivatives of those three — have ftp commands that speak HTTP, originating in a lukemftp (later tnftp) project by Luke Mewburn for NetBSD in the 1990s.

                                        It's also in .

                                          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

                                            Jay 🚩 :runbsd: boosted

                                            [?]Scott VE3QBZ » 🌐
                                            @scott@mastodon.clitheroe.ca

                                            Sitting in on the NetBSD agm IRC, and excited to see that 11.0 release is maybe less than 2 weeks out! This will be my jumping off point into NetBSD.

                                              [?]NetBSD Foundation 🚩 » 🌐
                                              @netbsd@mastodon.sdf.org

                                              Reminder: we have our Annual General Meeting today!

                                              Saturday, June 6th at 14:00 UTC in the -agm channel
                                              on irc.libera.chat. You can use your preferred Internet Relay Chat
                                              program, or join directly at: web.libera.chat/#netbsd-agm

                                              There will be a series of presentations about followed by a
                                              moderated Q&A session.

                                              mail-index.netbsd.org/netbsd-a

                                                Jay 🚩 :runbsd: boosted

                                                [?]Bitslingers-R-Us » 🌐
                                                @AnachronistJohn@zia.io

                                                Did some yak shaving today.

                                                I want to use a USB to TTL serial adapter to let one Rasbperry Pi handle the serial console of another Raspberry Pi. But I’m using my USB to TTL serial adapter to talk to my Plextor PX-EH25L (SuperH machine) because the IDE disk in it died.

                                                I found a couple of USB / Firewire IDE enclosures, but couldn’t find the PSUs. I tried an old AMD motherboard with IDE (and floppy!), but that POSTed once and never again.

                                                I looked everywhere for something with IDE. My Amigas are busy, so I decided to set up a Cobalt Raq (MIPS). In order to use that to install NetBSD to an IDE disk for the Plextor, I first had to install NetBSD on it. However, NetBSD’s infrastructure was down, so I had to find a copy of the NetBSD Cobalt restore CD ISO elsewhere.

                                                But I finally got #NetBSD installed on the Cobalt, which allowed me to install NetBSD for SuperH on the IDE disk for the Plextor, which freed up the USB to TTL serial for the Raspberry Pis, which I’m finally setting up now :)

                                                SuperH binary pkgsrc building will resume soon!

                                                  #netbsd boosted

                                                  [?]Jonathan Perkin » 🌐
                                                  @jperkin@federate.me.uk

                                                  @smurfd some network outage I think, haven't been able to get to mail for many hours.

                                                    #netbsd boosted

                                                    [?]nicklas boman » 🌐
                                                    @smurfd@mastodon.social

                                                    cdn and wiki maintenance or disturbance?

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

                                                      agc boosted

                                                      [?]Leonardo Taccari » 🌐
                                                      @iamleot@mastodon.sdf.org

                                                      EuroBSDCon 2025 in Zagreb, Croatia was great!

                                                      At NetBSD devsummit I have presented «Running Docker (and more) in NetBSD via Lima». Lima (<lima-vm.io/>) permits to run Linux virtual machines (as guests) - with port forwarding and volumes sharing - and I have showed how NetBSD is supported and works as host!

                                                      Slides available at <NetBSD.org/gallery/presentatio>.

                                                      I have now also imported Lima in pkgsrc as sysutils/lima.

                                                        [?]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. 🖥️🌱

                                                          Jay 🚩 :runbsd: boosted

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

                                                          Agreed.

                                                          I plan on doing more with NetBSD, but I had decided on that long before the AI generated code issue. NetBSD has a policy that forbids AI generated code from being contributed.

                                                          #NetBSD #BSD

                                                            #netbsd boosted

                                                            [?]Jeff Armstrong » 🌐
                                                            @jeff@toot.rainbow-100.com

                                                            What a chore trying to rip a CD in #netbsd! Finally found an ancient mailing list post where a user asked why they had to add write permissions to /dev/rcd* to rip a CD. Sure enough, adding write permissions fixed everything!

                                                              Jay 🚩 :runbsd: boosted

                                                              [?]Jeff Armstrong » 🌐
                                                              @jeff@toot.rainbow-100.com

                                                              I daily-drove #netbsd 11RC2 today for work. Aside from a very odd USB issue that seems to kill my USB3 ports at some random point (it's happened before), everything was delightful.

                                                                Jay 🚩 :runbsd: boosted

                                                                [?]Jeff » 🌐
                                                                @overeducatedredneck@bitbang.social

                                                                I just updated my wip packaging for the 8.3.0 release. It's working just fine on my 11 dev host.

                                                                If you want to test it, see the pkgsrc.org/wip/ docs here. I'm going to live with for a couple days and see about getting it pulled into main.

                                                                  Back to top - More...