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

[?]Bitslingers-R-Us ยป
@AnachronistJohn@zia.io

#NetBSD #pkgsrc 2025Q1 package building continues!

An unexpected power outage has caused some work to need to be restarted, plus has indicated that some new UPS batteries need to be purchased :P

Some new build machines will be coming online soon :)

    [?]Felix Palmen :freebsd: :c64: ยป
    @zirias@mastodon.bsd.cafe

    About the thingie ... I need random data in to generate unpredictable IDs.

    I previously had an implementation trying the -originating if available, with a fallback to a stupid internal , which could be disabled because it's obviously NOT cryptographically secure, and WAS disabled for the generation of session IDs.

    Then I learned is available on many systems nowadays (, , even Linux with a recent-enough glibc), so I decided to add a compile check for it and replace the whole mess with nothing but an arc4random call IF it is available.

    arc4random originates from and provides the only sane way to get cryptographically secure random data. It automatically and transparently (re-)seeds from OS entropy sources, but uses an internal CSPRNG most of the time (nowadays typically , so it's a misnomer, but hey ...). It never fails, it never blocks. It just works. Awesome.

      #netbsd boosted

      [?]Kevin Karhan :verified: ยป
      @kkarhan@infosec.space

      @dec_hl I know.

      Besides there's like @bunsenlabs / and me dabbling (@OS1337) tho technically they all are as they use kernels beyond the cutoff date for support.

      • propably still supports i386 and potentially even i286...

        #netbsd boosted

        [?]vermaden ยป
        @vermaden@mastodon.social

        Latest ๐—ฉ๐—ฎ๐—น๐˜‚๐—ฎ๐—ฏ๐—น๐—ฒ ๐—ก๐—ฒ๐˜„๐˜€ - ๐Ÿฎ๐Ÿฌ๐Ÿฎ๐Ÿฑ/๐Ÿฌ๐Ÿฐ/๐Ÿญ๐Ÿฐ (Valuable News - 2025/04/14) available.

        vermaden.wordpress.com/2025/04

        Past releases: vermaden.wordpress.com/news/

          #netbsd boosted

          [?]vermaden ยป
          @vermaden@mastodon.bsd.cafe

          Latest ๐—ฉ๐—ฎ๐—น๐˜‚๐—ฎ๐—ฏ๐—น๐—ฒ ๐—ก๐—ฒ๐˜„๐˜€ - ๐Ÿฎ๐Ÿฌ๐Ÿฎ๐Ÿฑ/๐Ÿฌ๐Ÿฐ/๐Ÿญ๐Ÿฐ (Valuable News - 2025/04/14) available.

          vermaden.wordpress.com/2025/04

          Past releases: vermaden.wordpress.com/news/

            [?]vermaden ยป
            @vermaden@mastodon.bsd.cafe

            Latest ๐—ฉ๐—ฎ๐—น๐˜‚๐—ฎ๐—ฏ๐—น๐—ฒ ๐—ก๐—ฒ๐˜„๐˜€ - ๐Ÿฎ๐Ÿฌ๐Ÿฎ๐Ÿฑ/๐Ÿฌ๐Ÿฐ/๐Ÿญ๐Ÿฐ (Valuable News - 2025/04/14) available.

            vermaden.wordpress.com/2025/04

            Past releases: vermaden.wordpress.com/news/

              #netbsd boosted

              [?]Stefan Scholl ยป
              @Stefan_S_from_H@mastodon.social

              Oops, almost forgot. My first was S.u.S.E. Linux April 1995. That was 30 years ago.

              Before that, I had on my 3000, but I only booted into it to play Hack.

                #netbsd boosted

                [?]Parade du Grotesque ๐Ÿ’€ ยป
                @ParadeGrotesque@mastodon.sdf.org

                @sborrill

                Interesting, though, that is associated with bearded warriors and orange flags on... fire?

                I thought was more of the flame war operating system?

                (I kid! I kid!)

                @bentsukun @stefano @justine

                  #netbsd boosted

                  [?]Justine Smithies ยป
                  @justine@snac.smithies.me.uk

                  Now look what you've done ! Added to the list of things to checkout. ๐Ÿ˜œ

                    #netbsd boosted

                    [?]Stephen Borrill ยป
                    @sborrill@justfollow.me.uk

                    @stefano @justine @stablehorde_generator generated the following artist's impression of the posse

                    Bearded warriors holding orange flags

                    Alt...Bearded warriors holding orange flags

                      #netbsd boosted

                      [?]Stephen Borrill ยป
                      @sborrill@justfollow.me.uk

                      @stefano @justine Or the guys are putting together a posse to convince you of the error of your ways

                        [?]Jay ๐Ÿšฉ :runbsd: ยป
                        @jaypatelani@bsd.network

                        ostan101, saw this Linux only meme added some flavour for BSDs ๐Ÿ˜œ

                          hubertf boosted

                          [?]Jay ๐Ÿšฉ :runbsd: ยป
                          @jaypatelani@bsd.network

                          ./build.sh

                            #netbsd boosted

                            [?]Dr. Brian Callahan ยป
                            @bcallah@bsd.network

                            #netbsd boosted

                            [?]Felix Palmen :freebsd: :c64: ยป
                            @zirias@mastodon.bsd.cafe

                            First change since 0.2 will actually be a (huge?) improvement to my lib. So far, it was hardwired to use the good old call. This is perfectly fine for handling around up to 100 (or at least less than 1000, YMMV) clients.

                            Some implementations offer defining the upper limit for checked file descriptors. Added support for that.

                            POSIX also specifies , which has very similar issues, but slightly different. Added support for this as well.

                            And then, I went on to add support for the -specific and -specific (, , , ...) which are both designed to *solve* any scalability issues ๐Ÿฅณ

                            A little thing that slightly annoyed me about kqueue was that there's no support for temporarily changing the signal mask, so I had to do the silly dance shown in the screenshot. OTOH, it offers changing event filters and getting events in a single call, which I might try to even further optimize ... ๐Ÿ˜Ž

                            kqueue client code, manually relaxing the signal mask for just the single kevent() call waiting for new events.

                            Alt...kqueue client code, manually relaxing the signal mask for just the single kevent() call waiting for new events.

                              #netbsd boosted

                              [?]Daniel Wayne Armstrong ยป
                              @dwarmstrong@fosstodon.org

                              On my new NetBSD install I'm using 'oksh' - the portable version of OpenBSD's ksh - as my shell and wondered what in the world was going on with my arrow keys and moving through the shell history!

                              Adding...

                              set -o emacs

                              ... to my ~/.kshrc sorted things out:

                              gitlab.com/dwarmstrong/dotfile

                              Slowly learning! :netbsd:

                                [?]Diane Bruce ยป
                                @DianeBruce@bsd.network

                                I had forgotten I still had this!

                                There are familiar names on this paper.

                                Introduction to Berkeley Kernel Modifications Unix - Seventh Edition

Last PDP-11 Kernel Distribution
July, 1981

Bob Kridle and William F. Jolitz

                                Alt...Introduction to Berkeley Kernel Modifications Unix - Seventh Edition Last PDP-11 Kernel Distribution July, 1981 Bob Kridle and William F. Jolitz

                                  [?]Parade du Grotesque ๐Ÿ’€ ยป
                                  @ParadeGrotesque@mastodon.sdf.org

                                  Framework Laptop 12 is now on pre-order:

                                  frame.work/fr/en/products/lapt

                                  That little machine looks gorgeous and the prices are surprisingly reasonable.

                                  I have to resist ordering such a machine for 7.7... :openbsd:

                                  What about 10.1? :netbsd:

                                  But is it supported by BSD...? Only one way to find out! ๐Ÿค“

                                    #netbsd boosted

                                    [?]Daniel Wayne Armstrong ยป
                                    @dwarmstrong@fosstodon.org

                                    A new day, another install of a BSD... This time NetBSD on a Thinkpad T430s. :netbsd: ๐Ÿ™‚

                                    Output of the `fastfetch` command showing system information on the console from a fresh install of NetBSD.

                                    Alt...Output of the `fastfetch` command showing system information on the console from a fresh install of NetBSD.

                                      [?]benz ยป
                                      @bentsukun@mastodon.sdf.org

                                      @ryoon I do but on my desktop, and I work on a laptop most of the time. I only have unaccelerated graphics, which is slow. But Chromium works well on current.

                                        #netbsd boosted

                                        [?]Andreas 'phix' Jonsson ยป
                                        @phix@fosstodon.org

                                        @netbsd a clean install of NetBSD 10.1 on AMD64 now seem to setup the terminal wrong? Is this a known issue? (I just pulled mc+bash using pkgin after clean install)

                                          #netbsd boosted

                                          [?]Lobsters ยป 🤖
                                          @lobsters@mastodon.social

                                          dreckly: pkgsrc fork focused on quality and portability to all UNIX-like platforms via @fs111 lobste.rs/s/spjeuv
                                          github.com/drecklypkg/dreckly

                                            #netbsd boosted

                                            [?]Ryo ONODERA ยป
                                            @ryoon@mastodon.sdf.org

                                            O.k. All my pkgsrc packages works fine under NetBSD/amd64-current of yesterday.

                                              [?]Dendrobatus Azureus ยป
                                              @Dendrobatus_Azureus@mastodon.bsd.cafe

                                              Another one in the BSD world has been released. Vermaden LVN

                                              Now Go, read and Learn

                                              vermaden.wordpress.com/2025/04

                                              ย ย 

                                              The screencap shows a screenshot of a mobile version of vermaden website. The background is black, and the text is in white, making it easy to read. At the top of the screen, there is a status bar displaying the time as 14:10, a Wi-Fi icon, a battery level of 90%, and signal strength indicators. Below the status bar, the text reads:

"The Valuable News weekly series is dedicated to provide summary about news, articles and other interesting stuff mostly but not always related to the UNIX/BSD/Linux systems. Whenever I stumble upon something worth mentioning on the Internet I just put it here.

Today the amount of information that we get using various information streams is at massive overload. Thus one needs to focus only on what is important without the need to grep(1) the Internet everyday. Hence the idea of providing such information 'bulk' as I already do that grep(1).

The Usual Suspects section at the end is permanent and have links to other sites with interesting UNIX/BSD/Linux news.

Past releases are available at the dedicated NEWS page."

The text is formatted in a simple, straightforward manner, with each paragraph clearly separated. The word "NEWS" is highlighted in blue, indicating a clickable link. The overall layout is clean and easy to read, with a focus on providing information about a weekly series related to UNIX/BSD/Linux systems.

 Ovis2-8B

๐ŸŒฑ Energy used: 0.325 Wh

                                              Alt...The screencap shows a screenshot of a mobile version of vermaden website. The background is black, and the text is in white, making it easy to read. At the top of the screen, there is a status bar displaying the time as 14:10, a Wi-Fi icon, a battery level of 90%, and signal strength indicators. Below the status bar, the text reads: "The Valuable News weekly series is dedicated to provide summary about news, articles and other interesting stuff mostly but not always related to the UNIX/BSD/Linux systems. Whenever I stumble upon something worth mentioning on the Internet I just put it here. Today the amount of information that we get using various information streams is at massive overload. Thus one needs to focus only on what is important without the need to grep(1) the Internet everyday. Hence the idea of providing such information 'bulk' as I already do that grep(1). The Usual Suspects section at the end is permanent and have links to other sites with interesting UNIX/BSD/Linux news. Past releases are available at the dedicated NEWS page." The text is formatted in a simple, straightforward manner, with each paragraph clearly separated. The word "NEWS" is highlighted in blue, indicating a clickable link. The overall layout is clean and easy to read, with a focus on providing information about a weekly series related to UNIX/BSD/Linux systems. Ovis2-8B ๐ŸŒฑ Energy used: 0.325 Wh

                                                [?]vermaden ยป
                                                @vermaden@mastodon.bsd.cafe

                                                Latest ๐—ฉ๐—ฎ๐—น๐˜‚๐—ฎ๐—ฏ๐—น๐—ฒ ๐—ก๐—ฒ๐˜„๐˜€ - ๐Ÿฎ๐Ÿฌ๐Ÿฎ๐Ÿฑ/๐Ÿฌ๐Ÿฐ/๐Ÿฌ๐Ÿณ (Valuable News - 2025/04/07) available.

                                                vermaden.wordpress.com/2025/04

                                                Past releases: vermaden.wordpress.com/news/

                                                  #netbsd boosted

                                                  [?]vermaden ยป
                                                  @vermaden@mastodon.social

                                                  Latest ๐—ฉ๐—ฎ๐—น๐˜‚๐—ฎ๐—ฏ๐—น๐—ฒ ๐—ก๐—ฒ๐˜„๐˜€ - ๐Ÿฎ๐Ÿฌ๐Ÿฎ๐Ÿฑ/๐Ÿฌ๐Ÿฐ/๐Ÿฌ๐Ÿณ (Valuable News - 2025/04/07) available.

                                                  vermaden.wordpress.com/2025/04

                                                  Past releases: vermaden.wordpress.com/news/

                                                    #netbsd boosted

                                                    [?]Peter N. M. Hansteen ยป
                                                    @pitrh@mastodon.social

                                                    EuroBSDCon 2025, Zagreb, September 2025 - Call for Talk and Presentation proposals is open

                                                    The Call for Talk and Presentation proposals for EuroBSDCon 2025 is now open.

                                                    Submit yours at events.eurobsdcon.org/2025/

                                                    Please also visit the main website 2025.eurobsdcon.org/ for information about the conference.

                                                    See you in Zagreb!

                                                    @eurobsdcon

                                                      #netbsd boosted

                                                      [?]Peter N. M. Hansteen ยป
                                                      @pitrh@mastodon.social

                                                      #netbsd boosted

                                                      [?]Stefano Marinelli ยป
                                                      @stefano@mastodon.bsd.cafe

                                                      Back to top - More...