Skip to content

Instantly share code, notes, and snippets.

@tachesimazzoca
Last active May 18, 2019 02:43
Show Gist options
  • Save tachesimazzoca/62ba768a48fedbc39410b1af4c9ed9a0 to your computer and use it in GitHub Desktop.
Save tachesimazzoca/62ba768a48fedbc39410b1af4c9ed9a0 to your computer and use it in GitHub Desktop.

CloudReady Cheat Sheet

Tips & Tricks

Common Problems

Fix "bad trackpad package"

Press the keys CTRL + ALT + t to open a terminal (crosh). Type shell and hit the ENTER key to open a command line shell.

crosh> shell
chronos@localhost / $

Find the module ID at the lines containing "bad trackpad package". In the following example, the ID is bcm5974.

$ dmesg
...
[  364.799139] bcm5974: bad trackpad package, length: 8

Remove and reload the module with the rmmod command and the modprobe command respectively.

$ sudo rmmod bcm5974
$ sudo modprobe bcm5974

See also:

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