27. November 2019
Setting up Brother QL-550 Printer on Fedora 31

The setup on Fedora compared to Debian differs in the SELinux permissions I had to adjust. But besides that, the workflow is the same. 1. Download Linux drivers from the Brother home page (links bellow) 2. Install the drivers and fix SELinux permissions by running following commands: The reason I had to fix SELinux was […]

Read More
26. November 2019
How-to fix video playback on Fedora 31 and Firefox (70.0)

You should reboot afterwards. P.S. The above didn't work in zsh. You need to run it within a bash shell. Source: https://forums.fedoraforum.org/showthread.php?317721-fedora-28-and-firefox-video(h264-youtube-gstreamer1

Read More
11. November 2019
How to install Docker CE on Fedora 31

Install Docker CE https://docs.docker.com/install/linux/docker-ce/fedora/ sudo dnf -y install dnf-plugins-coresudo dnf config-manager \\n --add-repo \\n https://download.docker.com/linux/fedora/docker-ce.reposudo dnf install docker-ce docker-ce-cli containerd.iosudo systemctl start dockersudo systemctl status docker https://docs.docker.com/install/linux/linux-postinstall/ sudo groupadd dockersudo usermod -aG docker $USER newgrp dockersudo systemctl enable docker https://github.com/docker/cli/issues/297#issuecomment-547022631 Fix this error: docker: Error response from daemon: OCI runtime create failed: container_linux.go:346: starting container […]

Read More
26. Mai 2018
How To Create A Linux Bootable USB Drive

Use https://etcher.io/ - available on Windows, Mac and Linux.

Read More
21. April 2018
Install docker on Debian 9 and run docker without sudo

Install Docker on a Debian 9 machine $ sudo apt-get update $ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg2 \ software-properties-common $ curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - $ sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/debian \ $(lsb_release -cs) \ stable" $ sudo apt-get update $ sudo apt-get install docker-ce […]

Read More