I got Ubuntu 24.04 install on my framework 16 and steam is not opening but system monitor shows it running. I try to run it through the command it says “failed to load driver z ink”
also it is looping this
"BuildCompleteAppOverviewChange: 262 apps
RegisterForAppOverview 1: 4ms
RegisterForAppOverview 2: 4ms
"
please help
while the alias was fine, i wrote a little script to run on startup. i set it up to run on startup via systemd. you could probably remove the echo commands. i just had them in there for testing purposes
#!/bin/bash
# log file to write in when this script fixes the trackpad
logfile="/home/username/trackpad.log"
# loop in case it doesn't work correctly on the first try
while true; do
hid_search=$(lsmod | grep hid_multitouch)
if [[ -n "$hid_search" ]]; then
echo "TRACKPAD WORKING"
break
else
echo "FIXING TRACKPAD"
rmmod i2c_hid_acpi && modprobe i2c_hid_acpi
if [[ ! -f "${logfile}" ]]; then
touch "${logfile}"
fi
date >> "${logfile}"
echo "TRACKPAD FIXED I GUESS"
sleep 3
fi
done
I’ve been running Ubuntu 24 since the day I got my FW16 in March. When it was pre-release there were some minor issues but since 24.04 was released I’ve not had any problems at all.
It seems like the Touchpad problem is specific to certain timing or ordering between pre-boot and boot environment due to kernel modules. Seems to be a regression rather than a long standing issue as per your experience
What I see here is that in unsuccessful start PIXA3854 does not load at all, however FRMW0003 loads as hidraw0 instead (in contrast to hidraw1 otherwise). Not sure if this can help or not. Would try to send these to support assuming that they would take my ticket at all (I have no idea what is the order id or whatever).
I take it that this log is happening here - linux/drivers/hid/hid-core.c at master · torvalds/linux · GitHub
What we can surmise is that apparently hid_connect was not called for PIXA3854 at all. Just guessing here as it all looks like black magic, but could it be that device saw hidraw0 taken and decided not to load?
Touchpad for me then does not work at all, clicking or moving.
(Ubuntu 24.04 , framework 16)
Commands with modprobe from the internet do not seem to help any. Tried to find ps/2 configuration to disable it that is sometimes recommended - but nothing like that exists in BIOS.
I believe that stability here should be changed to Not Stable or Risky - Framework | Fix Consumer Electronics . Desktop becomes somewhat unusable when touchpad does not work and it does not work a lot.
Hi. What have FW support said about this problem?
It sounds to me like a loose cable / connector somewhere or a faulty touchpad.
If it a faulty part, FW might replace it.
Since nobody reported this problem with 23.10 (including me), it does sound like a kernel/driver regression, and not hardware. Hopefully they figure it out soon…