Patreon Logo Support us on Patreon to keep GamingOnLinux alive. This ensures all of our main content remains free for everyone. Just good, fresh content! Alternatively, you can donate through PayPal Logo PayPal. You can also buy games using our partner links for GOG and Humble Store.
Latest Comments by Shmerl
Metro Exodus is still planned to release for Linux and macOS
25 Nov 2020 at 7:03 pm UTC Likes: 1

I hope it will come out on GOG and not like the usual "unfortunately, we can't support GOG release, please buy it you know where".

Explore a nightmarish world of twisted religion in Blasphemous - now available for Linux
25 Nov 2020 at 5:06 pm UTC Likes: 2

Quoting: scaineWhat on earth causes that situation?? Why would they only release Win only on GOG when they support all three platforms on Steam?
This is starting to happen all the time now. Mark Of the Ninja remastered just came out on GOG. No Linux version in sight...

AMD Radeon RX 6800 and the RX 6800 XT are out today
23 Nov 2020 at 6:45 pm UTC

Very nice. If only they'd be available in stores :)

AMD Radeon RX 6800 and the RX 6800 XT are out today
23 Nov 2020 at 6:17 am UTC

5700XT is close to 2070, even better in some cases. Basically comparable.

AMD Radeon RX 6800 and the RX 6800 XT are out today
22 Nov 2020 at 7:28 pm UTC

My Sapphire Pulse RX 5700XT turns fans off under low load, without any custom fan curves.

AMD Radeon RX 6800 and the RX 6800 XT are out today
20 Nov 2020 at 9:04 pm UTC

They didn't announce lower end cards yet. But I'd guess next year.

AMD Radeon RX 6800 and the RX 6800 XT are out today
20 Nov 2020 at 8:50 pm UTC

Quoting: Avehicle7887My Debian 9 dinosauric OS is ready :grin:
Yeah, I'm now waiting for Sapphire Pulse RX 6800 XT to come out and actually be in stock. It might take some weeks or even months though.

AMD Radeon RX 6800 and the RX 6800 XT are out today
20 Nov 2020 at 8:34 pm UTC Likes: 1

Updating amdgpu firmware from upstream on Debian is not hard. Seriously.

Here is an example how you can do it:

#!/bin/bash

base_dir="$HOME/archive/debian"
firmware_dir="linux-firmware"

mkdir -p "$base_dir"
cd "$base_dir"

git clone git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git $firmware_dir
cd $firmware_dir
git pull --rebase --prune

sudo cp -v amdgpu/*.bin /usr/lib/firmware/amdgpu/
sudo chown root:root /usr/lib/firmware/amdgpu/*.bin

sudo update-initramfs -u