Notes on Setting Up Ryzen Home Server

Published: | Last Edited:
Category: tech

I’ve just got a Beelink SER3 AMD Ryzen™ 7 3750H and decided to replace Windows 11 Pro with Debian linux OS. The set up was mostly fine except a few hiccups that I documented below:

$ sudo nano /etc/apt/sources.list

...
deb http://deb.debian.org/debian/ buster main contrib non-free
deb http://deb.debian.org/debian/ buster main contrib non-free
...

Also run these after saving the changes.

$ sudo apt update
$ sudo apt install firmware-iwlwifi
$ git clone git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
$ sudo mkdir /lib/firmware/amdgpu
$ sudo cp linux-firmware/amdgpu/* /lib/firmware/amdgpu/ && sudo update-initramfs -k all -u -v

Now it should be in a good state.

Next Post: Jason's Notes Simplified
Previous Post: Connect to Localhost MySQL from Docker Container