Skip to content

Instantly share code, notes, and snippets.

@radavis
Created April 22, 2021 18:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radavis/27ea1b3fb4aaabddde297d95df1b7629 to your computer and use it in GitHub Desktop.
Save radavis/27ea1b3fb4aaabddde297d95df1b7629 to your computer and use it in GitHub Desktop.

ubuntu 20.10 notes

problem: "initramfs unpacking failed: Decoding failed" in sudo dmesg --level=err,warn output

try:

$ sudo nano /etc/initramfs-tools/initramfs.conf
COMPRESS=gzip
$ sudo update-initramfs -u -k all

then, reboot.

[bug]


problem: "i8042: PNP: PS/2 appears to have AUX port disabled" in dmesg output

try:

$ sudo cp /etc/default/grub /etc/default/grub.backup
$ sudo nano /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i8042.nopnp"
$ sudo update grub

problem: window flickering and tearing in gui after kernel v5.8.0-50-generic update

try:

reboot, press ESC/Shift to get to grub boot menu, select "Advanced", boot with a previous kernel.

/usr/share/X11/xorg.conf.d/20-intel.conf

Section "Device"
  Identifier "Intel Graphics"
  Driver "intel"
  Option "AccelMethod" "uxa"
EndSection

[askubuntu]

[wiki.archlinux.org]


get system infomation: inxi -Fza --no-host


show supported video modes: xrandr -d :0

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