Linux - increase USB mouse pooling

Published on Author admin

To increase USB polling rate under Linux: Check current value: cat /sys/module/usbhid/parameters/mousepoll #or systool -avm usbhid Change temporary: echo 2 > /sys/module/usbhid/parameters/mousepoll Then disconnect the mouse from the USB port and plug it in again To make it permanent add above line to /etc/rc.local echo 'echo 2 > /sys/module/usbhid/parameters/mousepoll' >> /etc/rc.local Values meaning: 1 -… Continue reading Linux - increase USB mouse pooling

UEFI - Linux and Windows dual boot - tips

Published on Author admin

restore "Fedora" entry using efibootmgr boot your favourite Linux distro in UEFI mode restore "Fedora" entry using efibootmgr #assuming that /dev/sda is your drive, and /dev/sda1 is UEFI partition sudo efibootmgr -c -L "Fedora" -l \\EFI\\fedora\\shimx64.efi -d /dev/sda -p 1 restore "Windows Boot Manager" entry using efibootmgr boot your favourite Linux distro in UEFI mode… Continue reading UEFI - Linux and Windows dual boot - tips