Buckle spring keyboard sound on Fedora Wayland

Get bucklespring from: https://github.com/zevv/bucklespring

Install dependencies:

sudo dnf install gcc openal-soft-devel alure-devel libX11-devel libXtst-devel libinput-devel

Build with libinput:

make libinput=1

Add user to input group:

sudo usermod -a -G input $(whoami)

Logout and re-login to new group has effect.

Run application:

./buckle

Upgrade Fedora 36 to Fedora 37

  • Update Fedora 36:

    sudo dnf upgrade --refresh
    
  • Reboot.

  • Install dnf-plugin-system-upgrade if not installed:

    sudo dnf install dnf-plugin-system-upgrade
    
  • Download Fedora 37 packages:

    sudo dnf system-upgrade download --releasever=37
    
  • Start upgrading. This will reboot machine:

    sudo dnf system-upgrade reboot
    
  • Wait until upgrading finish.

References

https://docs.fedoraproject.org/en-US/quick-docs/dnf-system-upgrade/

fedora 

Set up Bumblebee for NVIDIA Optimus on Fedora

This post is obsolete. Please check the new manual at this post

If you don’t care to battery and want to use NVIDIA card fulltime, check this post.

Install Bumblebee and NVIDIA driver

Add RPMFusion repositories

$ sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
[Read More]

Restore grub on Fedora

Boot to live USB

Mount the partition we want to restore grub (assume /dev/sda1)

sudo mount /dev/sda1 /mnt
# If /boot folder in another partition (assume /dev/sda2)
# you need to mount it too
# sudo mount /dev/sda2 /mnt/boot
[Read More]
grub  fedora