Skip to content

Piero Bosio Social Web Site Personale Logo Fediverso

Social Forum federato con il resto del mondo. Non contano le istanze, contano le persone

#FreeBSD Users Do you run quarterly or latest packages on your #FreeBSD workstation?

Uncategorized
1 1 9

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    1 Posts
    10 Views
    🚨 Spring is upon us! 🚨 To celebrate this we want to announce, with a little more time this time, the next edition of the BSD-NL Conference.BSD-NL Conference - Spring 2026 🐡😈⛳📆 2026-05-09 / May 9th 2026🕐 10:00-23:00 CET📍 Brouwerij Maximus (Utrecht)🌐 https://bsdnl.nlIf you have a talk prepared already we want to hear from you! You can submit your abstract at https://events.bsdnl.nl/Hack! You can even register for the event already... the price we charge is to cover lunch. https://tickets.bsdnl.nl/bsdnl/early-26/#BSDNL #RUNBSD #BSD #OpenBSD #FreeBSD #NetBSD #HardenedBSD #SecBSD #DragonflyBSD
  • 0 Votes
    1 Posts
    6 Views
    @mwl@io.mwl.io’s post made me revisit RCS in a very small role: a safety net for individual files.Paired with nvi, a tiny wrapper lets me snapshot configs before risky edits. Simple, local, no magic.Example wrapper I’m using:#!/bin/sh## safeedit — RCS-backed safe editing with nvi#set -eif [ $# -ne 1 ]; then echo "usage: safeedit <file>" >&2 exit 1fiFILE="$1"if [ ! -f "$FILE" ]; then echo "safeedit: file not found: $FILE" >&2 exit 1fiDIR=$(dirname "$FILE")BASE=$(basename "$FILE")RCS_DIR="$DIR/RCS"RCS_FILE="$RCS_DIR/$BASE,v"mkdir -p "$RCS_DIR"chmod 700 "$RCS_DIR"if [ ! -f "$RCS_FILE" ]; then ci -l "$FILE"else ci -u "$FILE" || true co -l "$FILE"fiexec nvi "$FILE"nvi protects the session; RCS protects the decision.Original post by @mwl@snac.bsd.cafe: https://io.mwl.io/@mwl/115814245521209100#nvi #RCS #Unix #SysAdmin #ConfigManagement
  • 0 Votes
    1 Posts
    14 Views
    Is anyone using something like AMD Ryzen™ 7 8745HS in #freebsd? Does it work flawlessly?
  • 0 Votes
    1 Posts
    5 Views
    RFC: what are the highlights of FreeBSD 15.0-RELEASE? "In the 15.0-RELEASE announcement email, I list a few highlights. Obviously pkgbase is going to be one of them, but I'm looking for a list of 5 or 6 items, and I don't know what you as users care about the most."So… can you help out your release engineer and tell me what you personally thing is the most exciting change in 15.0?"― Colin Percival at <https://www.reddit.com/r/freebsd/comments/1pa8ait/what_are_the_highlights_of_150release/>(The announcement is scheduled for Tuesday 2nd December – <https://www.freebsd.org/releases/15.0R/>.)#FreeBSD #RELEASE #RFC #announcement