home · contact · privacy
Update bookworm setup to accommodate h610m.
authorChristian Heller <c.heller@plomlompom.de>
Sun, 17 Dec 2023 22:47:10 +0000 (23:47 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Sun, 17 Dec 2023 22:47:10 +0000 (23:47 +0100)
bookworm/apt-mark/thinkpad
bookworm/apt-mark/user
bookworm/setup_scripts/misc.sh
bookworm/setup_scripts/setup_desktop.sh
bookworm/setup_scripts/setup_firefox.sh

index 9e9f2e39dae05e180d24f61c06e993f9ced1b797..fa7bd389da1b70ce0084ae3999681e80968eb2cf 100644 (file)
@@ -1,7 +1,16 @@
 # for wifi
 firmware-iwlwifi
+network-manager
+wpasupplicant
 # for tlp
 tlp
 tp-smapi-dkms
+# for X to start at all
+xserver-xorg-video-intel
+# X input: keyboard and touchpad
+xserver-xorg-input-evdev
+xserver-xorg-input-synaptics
+# to use printer
+cups
 #
 
index 0b23a3be15b05fa15430e8ee312cd293c8e6754b..dac354a42fb0c52f7662ad8d2455b565f48d3df1 100644 (file)
@@ -1,16 +1,8 @@
 # to avoid booting problems with encrypted LVM, see <https://askubuntu.com/a/1105848>
 cryptsetup-initramfs
 lvm2
-# for wifi
-network-manager
-wpasupplicant
 # this provides setupcon which reads /etc/default/console-setup
 console-setup
-# for X to start at all
-xserver-xorg-video-intel
-# X input: keyboard and touchpad
-xserver-xorg-input-evdev
-xserver-xorg-input-synaptics
 # for startx
 xinit
 # for xrdb
@@ -41,8 +33,6 @@ libgtk-3-0
 libdbus-glib-1-2
 # for firefox to emit sound
 pulseaudio
-# to use printer
-cups
 # emacs
 emacs
 emacs-common-non-dfsg
index 641d7522b2031da1476f6ad13742ca7108727bae..4aad4a416eff402070a4717ad1ff170bf75b762e 100644 (file)
@@ -1,7 +1,7 @@
 #!/bin/sh
 set -e
 debian_version="bookworm"
-legal_system_names="x220 w530"
+legal_system_names="x220 w530 h610m"
 config_tree_prefix="${HOME}/public_repos/config/${debian_version}"
 if [ ! -d "${config_tree_prefix}" ]; then
     config_tree_prefix="${HOME}/config/${debian_version}"
index 637dfc242717cb9c8c2cec741504b575a3412258..a617e0e1d9f99f78215690e060adc390dd7c7e6e 100755 (executable)
@@ -7,18 +7,22 @@ get_system_name_arg "$1"
 
 # Set up system without user environment.
 cd "${setup_scripts_dir}"
-./_setup.sh "${system_name}" "" user desktop thinkpad "${system_name}"
+if [ "$system_name" = "w530" || "$system_name" = "x220"]; then
+    ./_setup.sh "${system_name}" "" user desktop thinkpad "${system_name}"
+else
+    ./_setup.sh "${system_name}" "" user desktop "${system_name}"
+fi
 
-# Set up printer.
-ppd_deb="hll2350dwpdrv-4.0.0-1.i386.deb"
-wget "https://download.brother.com/welcome/dlf103566/${ppd_deb}"
-dpkg --add-architecture i386
-apt update
-apt install -y "./${ppd_deb}"
-service cups restart
-# lpadmin -p 'Brother_HLL2350DW' -m 'brother-HLL2350DW-cups-en.ppd'
-rm "./${ppd_deb}"
-# TODO explore potential lpadmin options like -o 'OutputMode=NormalGray'
+# Set up printer.
+ppd_deb="hll2350dwpdrv-4.0.0-1.i386.deb"
+wget "https://download.brother.com/welcome/dlf103566/${ppd_deb}"
+dpkg --add-architecture i386
+apt update
+apt install -y "./${ppd_deb}"
+service cups restart
+# lpadmin -p 'Brother_HLL2350DW' -m 'brother-HLL2350DW-cups-en.ppd'
+rm "./${ppd_deb}"
+# TODO explore potential lpadmin options like -o 'OutputMode=NormalGray'
 
 # Set up NVIDIA eGPU config.
 if [ "$system_name" = "w530" ]; then
@@ -26,16 +30,19 @@ if [ "$system_name" = "w530" ]; then
     git clone https://github.com/NVIDIA/open-gpu-kernel-modules
     cd open-gpu-kernel-modules
     git checkout 337e28e
+    # git checkout 4c29105335610933e744f4ab2524ea63fc39edaf
     make modules -j$(nproc)
     make modules_install
     cd
     driver_version=535.86.05
+    # driver_version=545.29.06
     runscript=NVIDIA-Linux-x86_64-${driver_version}.run
     wget https://us.download.nvidia.com/XFree86/Linux-x86_64/${driver_version}/${runscript}
     rmmod nouveau
     chmod u+x ${runscript} 
     ./${runscript} --no-kernel-modules --silent
     depmod
+    # TODO I suspect that the GPU falling of the bus may be mildened by running nvidia-persistenced, check https://github.com/NVIDIA/nvidia-persistenced/tree/main/init  
 fi
 
 # Set up user environments.
index f3f1f7c4923f444ff5b397e03187348e7f2207f7..a3c8f6cb78984388288f8bb25f7eaf51fba843f2 100755 (executable)
@@ -3,7 +3,7 @@ set -e
 . ./misc.sh
 
 # Install Firefox directly from Mozilla.
-firefox_release="115.4.0esr"
+firefox_release="115.5.0esr"
 firefox_filename="firefox-${firefox_release}.tar.bz2"
 url_firefox="https://ftp.mozilla.org/pub/firefox/releases/${firefox_release}/linux-x86_64/en-US/${firefox_filename}"
 wget "${url_firefox}"