Salta al contenuto

Piero Bosio Social Web Site Personale Logo Fediverso

Social Forum federato con il resto del mondo. Non contano le istanze, contano le persone
  • 0 Votazioni
    1 Post
    17 Visualizzazioni
    Community Spotlight: How FreeBSD Is Inspiring New Users Through Real-World Experiences We’re pleased to see how the community is responding to our Executive Director Deb Goodkin’s ongoing series documenting her experience running FreeBSD 15.0 on the Framework 12" Mini laptop.Deb is now on Day 18 of her journey, sharing daily progress as she evaluates FreeBSD in everyday workflows.Follow her latest update here:https://www.linkedin.com/posts/deb-goodkin-b282924a_day-18-of-freebsd-150-on-my-framework-12-activity-7419942116832833536-KdPO#FreeBSD #OpenSource #FreeBSD15 #FrameworkLaptop
  • 0 Votazioni
    1 Post
    10 Visualizzazioni
    New in the Q4 2025 FreeBSD Journal: FreeBSD 15.0 Fixes and FeaturesWe’re pleased to highlight this article from our Q4 2025 Journal. It provides an in-depth look at the key fixes and enhancements included in FreeBSD 15.0, outlining meaningful improvements to system stability, hardware support, and the overall user experience. It’s a valuable overview for anyone upgrading or evaluating the release.Read the full article:https://freebsdfoundation.org/our-work/journal/browser-based-edition/freebsd-15-0/freebsd-15-0-fixes-and-features/#FreeBSD #FreeBSDJournal #FreeBSD15
  • 0 Votazioni
    1 Post
    9 Visualizzazioni
    Getting my #freebsd laptop ready with kde 🥳#freebsd15 #digitalsovereignty Cc @emaste @dch @stefano
  • Bringin' Mastodon to FreeBSD desktop.

    Mondo freebsd tuba freebsd15
    1
    0 Votazioni
    1 Post
    10 Visualizzazioni
    Bringin' Mastodon to FreeBSD desktop.Trying to use Mastodon on #freebsd desktop and found zero GUI clients available in current (2025.Q4) packages.However, it is always possible to build one thanks to open source software and active community.After ducking around I have decided to build the #tuba client to work with XFCE desktop, which requires few more packages to be present:- Meson build system is must-have to compile and install the app.- Gnome libraries are required as listed in project README.- Unfortunately, you could not build from main branch since the GTK4 version is a bit outdated in packages then set in project requirements, but version v.0.9.2 is fine (checkout the relevant tag).- Don't forget to install GNU gettext package which is not listed in dependencies, but is mandatory to build project translations.- Vala compiler is a must, which is installed with vala package as well.Installation process is smooth and simple after that:- Install required packages (probably you might need a bit more, check the project README): pkg install gettext gtk4 meson vala- Clone the branch with git clone --depth 1 --branch v0.9.2 git@github.com:GeopJr/Tuba.git && cd Tuba- Setup build system (I'm using target since familiar to Java project structure): meson setup target && cd target- Build and install application, it will require super-user privileges to install binaries and resources to /usr/local/* directories: meson compile && meson installTo run Tuba you might need to setup Gnome Keyring (see https://github.com/GeopJr/Tuba/wiki/keyring-issues for guidance). But first you might need to install both SeaHorse and Gnome Keyring packages with pkg install seahorse gnome-keyring. After the keyring setup the application is running smoothly on #freebsd15 desktop.BTW, I see that the net-im/tuba is also available, but I found no package with it.