Adding a new phlog, adding a changelog. - gopherhole - My website source code.
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
 (DIR) commit ed547ff3bcb7b4cda9a4b027373d8db20d818b2d
 (DIR) parent 7c1112267381d2dc219cfb10025e50908e861964
 (HTM) Author: Jay Scott <me@jay.scot>
       Date:   Fri,  3 Feb 2023 20:06:39 +0000
       
       Adding a new phlog, adding a changelog.
       
       Diffstat:
         M index.gph                           |       1 +
         A meta/changelog.txt                  |       6 ++++++
         A phlog/013.txt                       |      72 +++++++++++++++++++++++++++++++
       
       3 files changed, 79 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/index.gph b/index.gph
       @@ -10,6 +10,7 @@
        
        PHLOG
        
       +[0|2023-02-03 ... Finally, I switched over to OpenBSD|phlog/013.txt|server|port]
        [0|2023-01-29 ... Automating my infra deployment and configuration|phlog/012.txt|server|port]
        [0|2023-01-14 ... Reducing my footprint, using a mini-pc|phlog/011.txt|server|port]
        [0|2022-09-28 ... Convert mbox to maildir using fdm|phlog/010.txt|server|port]
 (DIR) diff --git a/meta/changelog.txt b/meta/changelog.txt
       @@ -0,0 +1,6 @@
       +
       +--[ 4rd Feb 2023
       +        Adding finger daemon
       +
       +--[ 30th Jan 2023
       +        Added a changelog!
 (DIR) diff --git a/phlog/013.txt b/phlog/013.txt
       @@ -0,0 +1,72 @@
       +[jay.scot]
       +[013]
       +
       +
       +--[ Finally, I switched over to OpenBSD
       +
       +
       +I have been wanting to move my daily driver over to one of the BSDs for
       +some time now, I have written in the past about my experience's with
       +FreeBSD [0]. At the time, the limiting factor was the hardware I was
       +running and the issues that caused. However, now that I have the mini-pc
       +new hardware I thought this would a good week to try it out. One evening
       +I took the plunge, backed up $HOME on my current Alpine Linux setup and
       +installed OpenBSD. It was super simple, and I was up and running in
       +a shell within 15 minutes.
       +
       +
       +Everything seemed to work well at first, but I later discovered my sound
       +wasn't working. A look over the man pages and OpenBSD FAQ, I soon
       +figured out that I needed to change the default audio device to snd/1.
       +Once that was done, I went ahead and installed X and all the other
       +tooling I use.
       +
       +
       +One of the big changes I made was the switch back to Xorg from Wayland,
       +I really didn't want to mess about with getting that running in OpenBSD,
       +and I am really not fussed about one over the other. I still had my old
       +Makefiles for building the standard X suite I used for years, dwm, dmenu
       +and st, it only needed a few tweaks to config.mk, and they all complied
       +without issue [1]. I changed from the ASH shell to the default KSH
       +shell, again, nothing really needed to change.
       +
       +
       +I really like the package management, for Alpine Linux I had my own
       +bootstrap script [2] to get me up and running. On OpenBSD I am nearly
       +done right off the bat with just one command, a list of user packages
       +really to install. On Linux I feel that this would be including a heap
       +of system libraries and dependencies.
       +
       +
       +        $ pkg_info -mz | tee openbsd_pkg
       +
       +        castget--
       +        colorls--
       +        curl--
       +        fdm--
       +        firefox--
       +        fzf--
       +        git--
       +        hack-fonts--
       +        lynx--
       +        mpv--
       +        mupdf--
       +        mutt--gpgme-sasl
       +        nnn--
       +        password-store--
       +        quirks--
       +        qutebrowser--
       +        sfeed--
       +        vim--no_x11
       +        wireguard-tools--
       +        yt-dlp--
       +
       +
       +Anyway am off to learn more about the inner workings of OpenBSD!
       +
       +
       +0. gopher://jay.scot/0/phlog/005.txt
       +1. git clone git://jay.scot/dotfiles.git
       +2. git clone git://jay.scot/alpine-bootstrap.git
       +
       +.EOF