Guides 11795 Published by Philipp Esselbach 0

These concise steps let you install MariaDB 10.9 on a fresh Debian 11 Bullseye system in minutes by adding the MariaDB repository and key before updating APT. The official Bullseye repo only ships MariaDB 10.3, so fetching the signing key from mariadb.org guarantees package integrity and avoids InnoDB incompatibilities that plagued older upgrades. After creating a dedicated list file for the 10.9 repo, running apt‑get update and installing mariadb-server pulls the correct package, and you can confirm it with mysql -u root -p -e "SELECT VERSION();" which should return something like 10.9.x-1~bullseye. Finally, lock down defaults with mysql_secure_installation, consider setting up daily backups, and watch for common pitfalls such as missing keys or stale cached packages that could prevent the service from starting.

Guides 11795 Published by Philipp Esselbach 0

The guide walks readers through installing Neofetch on CentOS 9 Stream, explaining that the script isn’t in the default repositories and must be pulled from the Community‑RPM‑Bundle (CRB) repository. It breaks the process into four clear steps: enable CRB with `dnf config-manager`, refresh the metadata cache, install the package using `dnf install neofetch -y`, and verify the installation by checking the version output. After covering these basics, the article offers optional customizations such as adding a rainbow‑colored banner to the shell prompt or editing the configuration file to tweak which system details appear, and it shares a real‑world anecdote where a kernel update caused Neofetch to fail until CRB was reenabled. Finally, it encourages readers to enjoy the colorful snapshot of their system each time they open a terminal, emphasizing how quick and straightforward the whole process is.

Guides 11795 Published by Philipp Esselbach 0

On a fresh CentOS 9 Stream machine you can bring in the official RAR extractor quickly by enabling EPEL, turning on RPM Fusion free, then installing the unrar package with dnf; this gives you a statically linked binary at /usr/bin that works out of the box. If you need the absolute newest features or 64‑bit support for very large archives, download the latest source tarball from Rarlab, build it with make after installing Development Tools, and copy the unrar executable into /usr/local/bin so that it supersedes any older version. Before installing remember to confirm you have sudo rights, check your firewall isn’t blocking repository access, and clear dnf’s cache if previous attempts failed; missing GPG keys or conflicting binaries are common stumbling blocks that can be fixed by re‑enabling the repo or choosing a single location for the binary. After installation simply run unrar x on a test archive to confirm everything extracted cleanly, and enjoy reliable extraction of legacy .rar files without corrupting data.

Guides 11795 Published by Philipp Esselbach 0

The guide takes you step‑by‑step through installing a legacy Telnet client on CentOS 9 Stream, stressing that root or sudo privileges are required and that the network must be reachable before you start. It shows how to confirm that both AppStream and BaseOS repositories are enabled, then simply pulls the telnet package with dnf from the standard repository. A quick test against time.nist.gov on port 13 verifies that the client works, while the article supplies troubleshooting advice—such as reinstalling missing plugins or checking firewall rules—if you encounter a “telnet: command not found” error or connectivity problems. Finally, it covers installing a Telnet server with telnet-server and xinetd, but reminds readers that the protocol is unencrypted and should never be exposed to the open Internet.

Guides 11795 Published by Philipp Esselbach 0

The guide shows how to install a lightweight Xfce desktop on CentOS 9 Stream, pointing out that it can speed up boot times and cut RAM usage after a heavy GNOME update. It lists the prerequisites of root or sudo access and internet connectivity, then explains enabling EPEL before running `dnf groupinstall "Xfce Desktop"` to bring in core components and a display manager. Optionally it demonstrates swapping GDM for LightDM with `dnf install lightdm` and systemctl commands, followed by a reboot so the new session loads correctly. The final sections give quick tests, troubleshooting advice for missing desktops or crashes, and conclude that Xfce offers an efficient, familiar environment suitable for modest hardware.

Guides 11795 Published by Philipp Esselbach 0

The guide explains how to add the Remi repository to a CentOS 9 Stream system so you can install newer PHP, MariaDB, and other packages that the base repositories do not provide yet. It begins with prerequisites—root or sudo access and a clean environment—then shows installing EPEL, downloading the signed remi-release‑9.rpm to populate /etc/yum.repos.d, resetting any existing PHP module, and enabling the desired Remi stream such as php:remi‑8.2. After confirming that the repository is listed as enabled with dnf repolist, cleaning the cache, and updating, the article lists common pitfalls like omitting EPEL or using legacy yum-config-manager commands that can cause module conflicts. Finally, it weighs the benefits of quick access to cutting‑edge software against potential compatibility issues, noting that hobby projects may stick with default repos while developers needing PHP 8.2 or newer MariaDB will find importing Remi a simple and reliable solution.