-
Notifications
You must be signed in to change notification settings - Fork 115
Linux mint xfce installation issues #501
Description
Linux Mint Installer Issues Report — HP EliteBook 840 G3
Date: April 2, 2026
Edition: Linux Mint 22.3 Xfce 64-bit
Hardware: HP EliteBook 840 G3, Intel Core i5-6300U, 8GB RAM, SanDisk 256GB SSD
Issue #1: Touchpad Left-Click Failure in Live Session
Description
The laptop touchpad (SynPS/2 Synaptics) has a critical bug where left-click does not function. Right-click works, cursor movement works, but left-click is completely non-functional. Additionally, touching the touchpad causes the external USB mouse's left-click to stop working.
Steps to Reproduce
- Boot Linux Mint 22.3 Xfce live session
- Attempt to left-click with touchpad — no response
- Connect external USB mouse — left-click works
- Touch the touchpad — external mouse left-click stops working
Error Details
xinput listshows the touchpad detected asSynPS/2 Synaptics TouchPad(id=12)xevshows keyboard events but no mouse button events when touching the touchpad- Xorg log shows driver
libinputis loaded but with multipleUnloadModule: "libinput"entries psmousemodule loaded but shows0usage count
Attempted Fixes (None Successful in Live Session)
xinput disable/enable— temporarily works for external mouse only- Kernel parameters:
i8040.nopnp=1,nomodeset— no improvement - BIOS touchpad setting — not available in this BIOS version
- Accessibility settings — no issues found
sudo modprobe -r psmouse && sudo modprobe psmouse— live session limitations prevented full testing
Possible Cause
This appears to be a kernel/driver-level compatibility issue between the Synaptics PS/2 touchpad and the libinput driver on this specific HP EliteBook 840 G3 hardware. Similar issues have been reported with kernel updates breaking touchpad functionality (citation:22).
Issue #2: Installer (Ubiquity) Crash at Language Selection
Description
The Linux Mint installer crashes immediately at the language selection screen with multiple Perl/debconf errors.
Error Messages
ubiquity: Use of uninitialized value in concatenation (.) or string at /usr/share/perl5/Debconf/DbDriver/File.pm line 53
ubiquity: debconf: DbDriver "targetdb": could not open
ubiquity: localechooser: 133: echo: echo: I/O error
ubiquity: dbfilter_handle_status: response -7
ubiquity: Failed to update apt indexes to run ubuntu-drivers
Steps to Reproduce
- Boot Linux Mint 22.3 Xfce live session
- Launch installer via desktop icon or
sudo ubiquity - Installer crashes at language selection step
Attempted Fixes (None Successful)
sudo ubiquity -b— same crashLANG=C ubiquity— same crashubiquity --no-migration-assistant— option not recognizedubiquity --no-check-hardware— same crash- Running from desktop icon — same crash
Possible Cause
Likely related to Issue #1 — the unstable input driver state may be causing cascading failures in the installer's debconf system. Similar ubiquity crashes have been reported with debconf database errors (citation:6)(citation:7).
Issue #3: USB Drive Partition Corruption After ISO Flash
Description
After flashing Linux Mint ISO using balenaEtcher, the 14GB USB drive shows only ~5MB capacity in Windows. Windows cannot format the drive and shows "Unknown capacity."
Steps to Reproduce
- Flash Linux Mint ISO to USB using balenaEtcher
- Insert USB into Windows machine
- USB appears with limited capacity and cannot be formatted
Fix Attempted
Used diskpart in Windows to restore the drive:
diskpart
select disk X
clean
create partition primary
format fs=fat32 quick
assign
exit
Possible Cause
This is a known behavior — Linux ISOs create a partition layout that Windows doesn't fully understand. The clean command wipes the layout and rebuilds it.
Summary Table
| # | Issue | Severity | Status | Likely Component |
|---|---|---|---|---|
| 1 | Touchpad left-click failure | High | Unresolved | Kernel/libinput driver |
| 2 | Installer crash at language step | Critical | Unresolved | Ubiquity/debconf |
| 3 | USB partition corruption in Windows | Low | Resolved | ISO flashing (expected) |