lots of fixes, improvements, t12 stuff
[distro-setup] / distro-end
index d99e6a14e84a864fdb73507b76d42fba6def310c..dcf919893dab0ae2946d9c52c60433a9ca21addc 100755 (executable)
@@ -18,6 +18,7 @@
 
 # SPDX-License-Identifier: GPL-3.0-or-later
 
+# shellcheck disable=SC2317 # false positive
 export LC_USEBASHRC=t
 source /a/bin/ds/.bashrc
 
@@ -205,10 +206,10 @@ EOF
       rm -rf $tmpdir
     fi
 
-    if [[ ! -e /usr/share/debootstrap/scripts/bookworm ]]; then
+    if [[ ! -e /usr/share/debootstrap/scripts/noble ]]; then
       t=$(mktemp -d)
       cd $t
-      m aptitude download debootstrap/bookworm
+      m aptitude download debootstrap/noble
       m ex ./*
       sudo cp ./usr/share/debootstrap/scripts/* /usr/share/debootstrap/scripts
     fi
@@ -748,13 +749,22 @@ EOF
       # Pin-Priority: 1001
       # EOF
       #
-      # TODO: I had to uninstall linux-image-generic-hwe-20.04 because of a conflict
-      # about linux-firmware. Should probably install it to begin with in fai if
-      # i'm going to use.
-      pi system76-driver system76-firmware
+      # s fwupdmgr get-updates
+      # says I have 3 "devices with no available firmware updates"
+      # if there were updates, install with: s fwupdmgr update
+      pi system76-firmware system76-driver fwupd
+      # system76-driver: on a modern kernel, it seems to mainly just do
+      # some power settings, I haven't looked entirely through it. it
+      # might also change fan speed. Of its recommended packages,
+      # system76-power is the only one I haven't looked at, the others
+      # do nothing for laptops i have. they have models hardcoded in
+      # source, so you can just grep for it. pkx package; caf | less.
+      #
       # if you get a notice about a firmware update, the notifier on i3
-      # is too dumb to do anything when you click it. so to see
-      # a changelog, cd to
+      # is too dumb to do anything when you click it.
+      # to manually get new firmware,
+      # system76-firmware-cli schedule --open
+      # to see a changelog, cd to
       # /var/cache/system76-firmware-daemon
       # extract the xz files there, one will contain a changelog.
       # then to install an update:
@@ -796,15 +806,18 @@ case $distro in
     # box type: scale to width of bounds. alignment in bounding box:
     # bottom left. bounding box size 1920 x 1080.
 
-    # ppa:obsproject/obs-studio
-    if [[ ! -s /etc/apt/sources.list.d/obs.list ]]; then
-      # https://blog.zackad.dev/en/2017/08/17/add-ppa-simple-way.html
-      sd /etc/apt/sources.list.d/obs.list <<EOF
+    # as of 2024-06, noble repo doesn't exist yet
+    if [[ $codename_compat != noble ]]; then
+      # ppa:obsproject/obs-studio
+      if [[ ! -s /etc/apt/sources.list.d/obs.list ]]; then
+        # https://blog.zackad.dev/en/2017/08/17/add-ppa-simple-way.html
+        sd /etc/apt/sources.list.d/obs.list <<EOF
 deb http://ppa.launchpad.net/obsproject/obs-studio/ubuntu $codename_compat main
 deb-src http://ppa.launchpad.net/obsproject/obs-studio/ubuntu $codename_compat main
 EOF
-      trysleep 4 15 s apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BC7345F522079769F5BBE987EFC71127F425E228
-      p update
+        trysleep 4 15 s apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BC7345F522079769F5BBE987EFC71127F425E228
+        p update
+      fi
     fi
     ;;
 
@@ -862,6 +875,39 @@ EOF
   jammy)
     # not yet bothering with mate
     pi lightdm-gtk-greeter lightdm
+    case $HOSTNAME in
+      sy|bo)
+        # todo: try removing this. also, see if system76-driver fixes this.
+
+        # on newer laptop, this config makes xorg load an intel module
+        # in Xorg.0.log and display nothing.  background:
+        #
+        # I dropped lightdm as I was trying to figure this out, why xorg was
+        # displaying nothing. I did a diff of a working Xorg.0.log from a
+        # popos is, which is in ~/.local/share/xorg/Xorg.0.log if it runs as
+        # a regular user. I noticed 2 differences, on the failing one it was
+        # loading the intel xorg module. On the successful one, it had a
+        # line systemd-logind: got fd for /dev/dri/card1 226:1, on the
+        # failing one it had a line about systemd-logind not knowing the
+        # seat or session or something. There was no search results about
+        # that, switching to xinit made that go away.  Note: gpg-agent seems
+        # to be working ok as an ssh agent. xsession has an option
+        # use-ssh-agent but perhaps it decides to leave gpg agent in charge.
+        cat >/etc/X11/xorg.conf.d/20-intel.conf <<'EOF'
+# iank:
+# https://forums.linuxmint.com/viewtopic.php?f=208&t=224942#p1197049
+# prevents konsole from being borderline unusable on system76 intel graphics + i3
+Section "Device"
+   Identifier  "Intel Graphics"
+   Driver      "intel"
+   Option      "TearFree"    "true"
+EndSection
+EOF
+        ;;
+    esac
+    ;;
+  noble)
+    pi xinit
     ;;
 esac
 
@@ -886,6 +932,29 @@ case $distro in
     esac
     ;;
   ubuntu)
+    case $codename in
+      noble)
+        # mint firefox has a dependency which is totally not really
+        # needed, just some mint branding and maybe a random firefox
+        # setting.
+        tmpdir="$(mktemp -d)"
+        cd "$tmpdir"
+        # edited from output of equivs-control ubuntu-system-adjustments
+        cat >ubuntu-system-adjustments <<'EOF'
+Section: misc
+Priority: optional
+Version: 2030
+Standards-Version: 3.9.2
+Package: ubuntu-system-adjustments
+Description: ubuntu-system-adjustments-dummy
+EOF
+        equivs-build ubuntu-system-adjustments
+        sudo dpkg -i ubuntu-system-adjustments_2030_all.deb
+        rm -rf ./ubuntu-system-adjustments*
+        cd
+        rm -r "$tmpdir"
+        ;;
+    esac
     pi firefox
     ;;
   debian)
@@ -925,6 +994,19 @@ case $codename_compat in
 esac
 
 
+case $codename_compat in
+  aramo|buster)
+    # https://wiki.archlinux.org/title/bluetooth
+    pi pavucontrol paprefs pulseaudio-module-bluetooth pulsemixer
+    ;;
+  noble|bookworm)
+    pi pipewire-audio
+    # having pipewire installed prevents the recommends in these from installing pulse
+    pi pulsemixer pavucontrol
+    ;;
+esac
+
+
 # TODO: some of the X programs can be removed from pall when using wayland
 
 # depends gcc is a way to install suggests. this is apparently the only
@@ -938,19 +1020,21 @@ pi ${pall[@]} $(apt-cache search ruby[.0-9]+-doc| awk '{print $1}') $($src/distr
 # I dont want that.
 pi-nostart schroot
 
+## note: this bug doesn't exist in t12+
 # fix systemd unit failure. i dont know of any actual impact
 # other than systemd showing in degraded state. So, we dont bother
 # fixing the current state, let it fix on the next reboot.
 # https://gitlab.com/cjwatson/binfmt-support/-/commit/54f0e1af8a
-tmp=$(systemctl cat binfmt-support.service | grep ^After=)
-if [[ $tmp != *systemd-binfmt.service* ]]; then
-  s u /etc/systemd/system/binfmt-support.service.d/override.conf <<EOF
+if pcheck binfmt-support; then
+  tmp=$(systemctl cat binfmt-support.service | grep ^After=)
+  if [[ $tmp != *systemd-binfmt.service* ]]; then
+    s u /etc/systemd/system/binfmt-support.service.d/override.conf <<EOF
 [Unit]
 $tmp systemd-binfmt.service
 EOF
+  fi
 fi
 
-
 # commented, not worth the hassle i think.
 #seru enable psd
 #seru start psd
@@ -1274,7 +1358,8 @@ fi
 # it asks if it should make users in it's group capture packets without root,
 # which is arguably more secure than running wireshark as root. default is no,
 # which is what i prefer, since I plan to use tcpdump to input to wireshark.
-s DEBIAN_FRONTEND=noninteractive pi wireshark-gtk
+# note: t10 called this wireshark-gtk, i don't care about t10 anymore.
+s DEBIAN_FRONTEND=noninteractive pi wireshark
 
 # /run and /dev/shm are listed as required for pulseaudio. All 4 in the group
 # listed in the default config as suggested.
@@ -1654,9 +1739,15 @@ DEVICESCAN -a -o on -S on -n standby,q $sched \
 ########### misc stuff
 
 
-xdg-settings set default-web-browser abrowser.desktop
 # see current with:
 # xdg-settings get default-web-browser
+# not sure this is needed. will add other distros if necessary
+case $distro in
+  trisquel)
+    xdg-settings set default-web-browser abrowser.desktop
+    ;;
+esac
+
 
 # pressing tab after sdf here:
 # scp sdfbash: set +o noglob: command not found
@@ -1666,12 +1757,27 @@ sudo sed -ri 's/([[:space:]]*)(\$reset)$/\1set +o noglob #$reset/' /usr/share/ba
 rm -fv /home/iank/.mpv/watch_later
 rm -rf /home/iank/.mpv
 
-if [[ ! -e ~/.local/bin/pip ]]; then
-  tmp=$(mktemp)
-  wget -O$tmp https://bootstrap.pypa.io/get-pip.py
-  python3 $tmp --user
-  hash -r
-fi
+# apparently pip is deprecated in debian. try venv or pipx.
+## begin u24 message upon pip install
+# If you wish to install a non-Debian-packaged Python package,
+# create a virtual environment using python3 -m venv path/to/venv.
+# Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
+# sure you have python3-full installed.
+
+# If you wish to install a non-Debian packaged Python application,
+# it may be easiest to use pipx install xyz, which will manage a
+# virtual environment for you. Make sure you have pipx installed.
+
+# See /usr/share/doc/python3.12/README.venv for more information.
+## end
+
+# if [[ ! -e ~/.local/bin/pip ]]; then
+#   tmp=$(mktemp)
+#   wget -O$tmp https://bootstrap.pypa.io/get-pip.py
+#   python3 $tmp --user
+#   hash -r
+# fi
+
 
 ## begin beets
 # soo, apt install beets fails due to wanting a pip package,
@@ -1691,24 +1797,26 @@ fi
 # as of 2023-02, the tox dependency was removed in debian unstable, so
 # this hack will probably go away in t12.
 
-if pcheck beets; then
-  tmpdir="$(mktemp -d)"
-  cd "$tmpdir"
-  # edited from output of equivs-control tox
-  cat >tox <<'EOF'
+case $(debian-codename) in
+  aramo)
+    tmpdir="$(mktemp -d)"
+    cd "$tmpdir"
+    # edited from output of equivs-control tox
+    cat >tox <<'EOF'
 Section: python
 Priority: optional
 Standards-Version: 3.9.2
 Package: tox
 Description: tox-dummy
 EOF
-  equivs-build tox
-  sudo dpkg -i tox_1.0_all.deb
-  rm -rf ./tox*
-  pi beets python3-discogs-client
-  cd
-  rm -r "$tmpdir"
-fi
+    equivs-build tox
+    sudo dpkg -i tox_1.0_all.deb
+    rm -rf ./tox*
+    pi beets python3-discogs-client
+    cd
+    rm -r "$tmpdir"
+    ;;
+esac
 
 # get rid of annoying message
 s sed -ri "s/^([[:space:]]*ui.print_\('Playing)/#\1/" /usr/share/beets/beetsplug/play.py
@@ -1833,6 +1941,7 @@ case $HOSTNAME in
     # Font awesome is needed for the alertmanager ui.
     pi prometheus-alertmanager prometheus fonts-font-awesome
     /c/roles/prom/files/simple/usr/local/bin/fsf-install-prometheus
+
     # make it available for other machines
     rsync -a /usr/local/bin/amtool /a/opt/bin
     web-conf -p 9091 -f 9090 - apache2 b8.nz <<'EOF'
@@ -1882,10 +1991,9 @@ EOF
     ;;
 esac
 
-# cleanup old files. 2023-02
-x=(/var/lib/prometheus/node-exporter/*.premerge)
-if [[ -e ${x[0]} ]]; then
-  s rm /var/lib/prometheus/node-exporter/*
+# user specific file isn't installed until the user exists
+if [[ ! -e /etc/prometheus/ssl/prom_node_key.pem ]]; then
+  conflink
 fi
 
 
@@ -1933,25 +2041,26 @@ esac
 
 ### end prometheus ###
 
-### begin bitcoin ###
-
-case $HOSTNAME in
-  sy|kd|so)
-    sudo install -m 0755 -o root -g root -t /usr/bin /a/opt/bitcoin-27.0/bin/*
-    # Note: i leave it to system-status to start and stop bitcoin.
-    # note: the bitcoin user & group are setup in fai
-    sudo usermod -a -G bitcoin iank
-    # todo: make bitcoin have a stable uid/gid
-    sudo mkdir -p /var/lib/bitcoind
-    sudo chown bitcoin:bitcoin /var/lib/bitcoind
-    # 710 comes from the upstream bitcoin unit file
-    sudo chmod 710 /var/lib/bitcoind
-    # note, there exists
-    # /a/bin/ds/disabled/bitcoin
-    ;;
-esac
+# disabled
+# ### begin bitcoin ###
+
+# case $HOSTNAME in
+#   sy|kd|so)
+#     sudo install -m 0755 -o root -g root -t /usr/bin /a/opt/bitcoin-27.0/bin/*
+#     # Note: i leave it to system-status to start and stop bitcoin.
+#     # note: the bitcoin user & group are setup in fai
+#     sudo usermod -a -G bitcoin iank
+#     # todo: make bitcoin have a stable uid/gid
+#     sudo mkdir -p /var/lib/bitcoind
+#     sudo chown bitcoin:bitcoin /var/lib/bitcoind
+#     # 710 comes from the upstream bitcoin unit file
+#     sudo chmod 710 /var/lib/bitcoind
+#     # note, there exists
+#     # /a/bin/ds/disabled/bitcoin
+#     ;;
+# esac
 
-### end bitcoin
+# ### end bitcoin
 
 ### begin live streaming ###
 
@@ -2106,6 +2215,27 @@ EOF
   sudo exportfs -rav
 fi
 
+# very temporary fix.
+# should be gone in a few days
+# https://bugs.launchpad.net/ubuntu/+source/fail2ban/+bug/2055114
+case $codename_compat in
+  noble)
+    if [[ ! -e ~/fail2ban_1.1.0-1_all.deb ]]; then
+      cd
+      wget https://launchpad.net/ubuntu/+source/fail2ban/1.1.0-1/+build/28291332/+files/fail2ban_1.1.0-1_all.deb
+      sudo dpkg -i fail2ban_1.1.0-1_all.deb
+    fi
+    ;;
+esac
+
+case $codename_compat in
+  noble)
+    # this fails on startup. i don't use resolvconf, so it is totally pointless.
+    soff unbound-resolvconf.service
+    ;;
+esac
+
+host-info-update
 
 # if I was going to create a persistent vm, i might do it like this:
 # variant=something  # from: virt-install --os-variant list