Blame
|
1 | # Troubleshooting |
||||||
| 2 | ||||||||
| 3 | Some fixes we've found for possible issues. |
|||||||
| 4 | ||||||||
|
5 | ## Not enough space in EFI partition |
||||||
| 6 | ||||||||
| 7 | https://wiki.archlinux.org/title/EFI_system_partition#Typical_mount_points |
|||||||
| 8 | ||||||||
| 9 | - mount the EFI partition on /mnt/efi instead |
|||||||
|
10 | - install refind (e.g. refind-install in chroot) |
||||||
| 11 | - install kernel normally (on /boot) (e.g. pacman -S linux) |
|||||||
| 12 | - config refind to point to it |
|||||||
|
13 | - don't forget to fix fstab accordingly |
||||||
| 14 | ||||||||
| 15 | Here's my (luxmiyu) refind menuentry for reference: |
|||||||
| 16 | ||||||||
| 17 | ```c |
|||||||
| 18 | menuentry "Arch Linux" { |
|||||||
| 19 | icon /EFI/refind/refind-theme/icons/os_arch.png |
|||||||
| 20 | volume "arch miyu" |
|||||||
| 21 | loader /boot/vmlinuz-linux |
|||||||
| 22 | initrd /boot/initramfs-linux.img |
|||||||
| 23 | options "rw root=UUID=9d0ab243-1d12-4db4-a4e4-4020517e9b6a loglevel=3 nvidia-drm.modeset=1" |
|||||||
| 24 | } |
|||||||
| 25 | ``` |
|||||||
| 26 | ||||||||
|
27 | ## Discord Push to Talk |
||||||
|
28 | |||||||
| 29 | https://github.com/DeedleFake/ptt-fix |
|||||||
|
30 | |||||||
|
31 | ## Niri Screen Tearing |
||||||
|
32 | |||||||
| 33 | https://github.com/niri-wm/niri/issues/2477 |
|||||||
|
34 | |||||||
| 35 | Add this to your niri config: |
|||||||
| 36 | ||||||||
| 37 | ```c |
|||||||
| 38 | debug { |
|||||||
| 39 | // wait-for-frame-completion-before-queueing |
|||||||
| 40 | render-drm-device "/dev/dri/renderD129" // note renderD129 is my NVIDIA GPU, yours can be different! |
|||||||
| 41 | } |
|||||||
| 42 | ``` |
|||||||
| 43 | ||||||||
| 44 | Choose either `wait-for-frame-completion-before-queueing` (can introduce input lag), or `render-drm-device` to render exclusively on selected gpu. |
|||||||
| 45 | ||||||||
| 46 | Note: for consistent gpu label, follow this comment: https://github.com/niri-wm/niri/issues/2477#issuecomment-3734221349 |
|||||||
