Search This Blog

Sunday, April 26, 2026

Raspberry Pi hardware-related problems and settings adjustment to address them

Using a Raspberry Pi 4 as a desktop computer, I faced a few hardware-related issues. I diagnosed and fixed them with the help of AI assistants, which suggested specific commands and configurations.

Low Monitor Resolution

The first was the low resolution of the monitor. I have BenQ PD2500Q with a native resolution of 2560x1440, but RPi recognised it only as Full HD (1920x1080).

After some research, I found a suggestion to check the output of edid file from the /sys subsystem:

sudo cat /sys/class/drm/card*/card*HDMI*/edid| edid-decode

The output revealed the issue: the monitor was advertising 2560×1440 as a DTD (Detailed Timing Descriptor) in Block 0, but the CTA-861 extension block (Block 1) only listed standard HD modes up to 1920×1080 as native. The Pi's Wayland compositor (the display server protocol used by Raspberry Pi OS) was prioritizing the CTA block and stopping at 1080p.

The DTD timing can be explicitly set in the /boot/firmware/config.txt:


[HDMI:0]
hdmi_group=2
hdmi_mode=87
hdmi_force_hotplug=1
hdmi_timings=2560 1 47 32 81
             1440 1 3 5 33 0 0 0
             60 0 241500000 6

However, after a restart, the resolution reverted to 1080p. Further investigation revealed that the window manager (labwc) also needed the custom mode to be set. I added the following line to ~/.config/labwc/autostart:

wlr-randr --output HDMI-A-1 --custom-mode 2560x1440@59.95 &

Very Slow Mouse

My mouse was lagging significantly. I first tried adjusting the mouse speed in the desktop environment settings, but it didn’t help.

After some research, I found that the issue could be resolved by adjusting the usbhid.mousepoll parameter in /boot/firmware/cmdline.txt. This parameter controls how often the USB mouse is polled for input (in milliseconds). Lower values mean more frequent polling and smoother cursor movement, but setting it too low can cause system instability.

I ended up with the following setting:

usbhid.mousepoll=4

Network Card Dropping Connection

The third problem was much easier to diagnose. I left RPi running, but when I returned, the WiFi connection had dropped. The logs revealed repeated failures during the 4-way handshake authentication process, with NetworkManager unable to retrieve the stored WiFi password.

The root cause was that the connection details were saved into a user session keyring (e.g., GNOME Keyring) rather than the system keyring. A user keyring unlocks when you log in and stays unlocked while your session is active; then it locks again, and NetworkManager cannot retrieve the password.

The solution was to set the password storage to system-level keyring using the nmcli tool:

sudo nmcli connection modify "YOUR_network" wifi-sec.psk "your-password"
sudo nmcli connection modify "YOUR_network" connection.permissions ""

The first command sets the WiFi password for the specified network connection, while the second removes any permission restrictions, allowing all users to access the connection.

Note: For security, avoid hardcoding passwords in commands. Instead, use nmcli interactively or a secure password manager.

Links

Saturday, April 18, 2026

Crux cnijfilter2 package (Canon cups drivers)

I don't longer have a Canon printer, so I remove the cnijfilter2 package from my repo. To help any potential Canon printer user the Pkgfile is below. There is also a patch required by the build process.

Pkgfile

# Description: Drivers for Canon printers
# URL: https://www.canon-europe.com/support/consumer_products/operating_system_information/#linux
# Maintainer: Wawrzek Niewodniczanski, main at wawrzek dot name
# Depends on: cups

name=cnijfilter2
version=6.80-1
release=1
source=(https://gdlp01.c-wss.com/gds/2/0100012302/02/$name-source-$version.tar.gz
	add-missing-import.patch
	)

dirs="cmdtocanonij2 cmdtocanonij3 cnijbe2 lgmon3 rastertocanonij tocanonij tocnpwg"
build() {
	patch -p0 -i add-missing-import.patch
	cd $name-source-$version
	sed -i '/po\/Makefile.in/d' lgmon3/configure.in
	sed -i /SUBDIRS/s/po// lgmon3/Makefile.am
	sed -i '/GET_PROTOCOL/s/^int /static int/' lgmon3/src/cnij{lgmon3,ifnet2}.c
	export LDFLAGS="-L../../com/libs_bin_x86_64"
	for dir in $dirs
	do
	        cd $dir
	        ./autogen.sh \
		                --prefix=/usr \
		                --enable-progpath=/usr/bin \
		                --datadir=/usr/share
	        make
	        make DESTDIR=$PKG install
	        cd ../
	done
	rm -rf $PKG/usr/share/locale
	cd com/libs_bin_x86_64/
	rm lib*.so
	install -c lib*.so* $PKG/usr/lib
	declare -a libs
	libs=$(ls -1 lib*.so.*)
	for baselib in $libs
	do
	        shortlib=$baselib
	        while extn=$(echo $shortlib | sed -n '/\.[0-9][0-9]*$/s/.*\(\.[0-9][0-9]*\)$/\1/p')
	        [ -n "$extn" ]
	        do
		                shortlib=$(basename $shortlib $extn)
		                ln -s $baselib $PKG/usr/lib/$shortlib
	        done
	done
	cd -
	mkdir -p $PKG/usr/lib/bjlib2
	install -c -m 644 com/ini/cnnet.ini $PKG/usr/lib/bjlib2
	mkdir -p $PKG/usr/share/ppd/$name
	install -c -m 644 ppd/*.ppd $PKG/usr/share/ppd/$name
}
Patch

--- cnijfilter2-source-6.80-1/lgmon3/src/keytext.c	2024-09-20 07:28:40.000000000 +0100
+++ cnijfilter2-source-6.80-1/lgmon3/src/keytext.c.fix	2025-06-11 23:21:28.361664234 +0100
@@ -37,6 +37,7 @@
 #include <unistd.h>
 #include <libxml/parser.h>  /* Ver.2.80 */
 #include <string.h>
+#include <stdlib.h>

 #include "keytext.h"