Dnf by default does not choose the fastest mirror, but this can be changed by editing the dnf.conf file.
Tag: linux
Install Deno on Arch Linux
Deno is a secure runtime for JavaScript and TypeScript. Deno is basically Node reversed. We will install Deno on Arch Linux. Enter the following commands in Terminal. Next step is specifying Deno’s path to bash. Open .bashrc and add the lines below to it. Open a new Terminal instance. Enter the following command. To check… Continue reading Install Deno on Arch Linux
What is $$ in Bash?
$$ is an internal variable, it stores the process ID of the script itself or the current bash instance. Here is an example use case The output prompted.
How to install Rust on Fedora Linux
Rust is a more recent programming language focused on performance and memory safely, mainly safe concurrency.
How to install Pygame on Fedora Linux
Pygame is an open source cross-platform Python module used for designing and scripting video games. Pygame can be a great module to use on a device like Raspberry Pi. I tried using Pip to install Pygame, but that did not work, here is the right way to get it installed on Fedora. Pygame is available… Continue reading How to install Pygame on Fedora Linux