Blame

003a0f luxmiyu 2026-02-22 09:59:46
1
# Troubleshooting
2
3
Some fixes we've found for possible issues.
4
2d605c luxmiyu 2026-02-22 10:14:29
expand sections
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
690778 luxmiyu 2026-02-22 10:20:30
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
2d605c luxmiyu 2026-02-22 10:14:29
expand sections
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
43930f luxmiyu 2026-02-22 10:00:30
add link to niri screen tearing fix
27
## Discord Push to Talk
1975c5 luxmiyu 2026-02-21 20:36:51
create ptt-fix page
28
29
https://github.com/DeedleFake/ptt-fix
43930f luxmiyu 2026-02-22 10:00:30
add link to niri screen tearing fix
30
690778 luxmiyu 2026-02-22 10:20:30
31
## Niri Screen Tearing
43930f luxmiyu 2026-02-22 10:00:30
add link to niri screen tearing fix
32
33
https://github.com/niri-wm/niri/issues/2477
2d605c luxmiyu 2026-02-22 10:14:29
expand sections
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