Skip to content

Instantly share code, notes, and snippets.

@leaanthony
Last active October 5, 2019 22:51
Show Gist options
  • Save leaanthony/90e203845f6eea36ad204ca3dd26ce4a to your computer and use it in GitHub Desktop.
Save leaanthony/90e203845f6eea36ad204ca3dd26ce4a to your computer and use it in GitHub Desktop.
Setup instructions for Metabox Alpha-X NH58RHQ

Metabox

Setup instructions for Metabox Alpha-X NH58RHQ.

Name Value
Model Metabox Alpha-X NH58RHQ
O/S Pop!_OS 19.04
Wifi Intel AX200

Wireless

The AX200 card is only supported on Kernels 5.1+. Pop!_OS 19.04 had lower than this so I installed a mainline kernel using ukuu. Once you are running on a 5.1+ kernel:

If an update nukes your updated kernel, on boot press ESC and select previous kernel. Reinstall your kernel using ukuu.

Touch pad Freezing after Sleep

A very annoying bug! However, a quick fix for my touch pad (which uses the i2c_hid kernel module):

sudo -H gedit /lib/systemd/system-sleep/touchpad

insert:

#!/bin/bash

if [[ $1 == post ]]; then
    modprobe -r i2c_hid
    modprobe i2c_hid
fi

reboot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment