Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

42 total results found

Almalinux LXC setup

Linux CLI tips

Here is a simple review of what should be done in a newly created LXC using the image from Proxmox VE. Step by step procedure Install important packages update and upgrade dnf update -y && dnf upgrade -y install basic packages dnf install -y vim git tar...

Create/extend SWAP using LVM

Linux CLI tips

This articles comes from 2daygeek.com. All rights belong to them. We use LVM for flexible volume management on Linux, so why not use LVM for swap space? This allows users to increase the swap partition whenever they want. Generally you need to create a swap s...

Almalinux install nodejs 22

Linux CLI tips

Enable nodejs version 22 in the dnf repository: dnf module enable nodejs:22 The result should be like that: Last metadata expiration check: 2:29:44 ago on Sun 01 Jun 2025 07:37:42 AM UTC. Dependencies resolved. ==============================================...

Reverse Proxy Installation

InfraSI B2

Antoine de Barbarin Certificate In the pfSense web configurator, go to System > Certificates > Authorities and click on Add, then fill it with the following values and click on Save Then go to Certificates and click on Add/Sign then fill the form with the fo...

pfSense Installation

InfraSI B2

Antoine de Barbarin Click on on the top right of the screen Fill the form with the name of the VM pfSense-infraSI and click Next Select the pfSense .iso image and click Next Click Next Select the disk in which install it and the size of the partition 32G...

AlmalinuxOS LXC Installation

InfraSI B2

Antoine de Barbarin On the Proxmox web interface, click on the button to create a new LXC (Linux container). Fill the form with the hostname, passwords and the tag, then click on Next Then choose the almalinux image and click on Next Set the disk configur...

Wiki.js Setup

InfraSI B2

Antoine de Barbarin Install nodejs Enable nodejs v22 in the dnf repository: dnf module enable nodejs:22 The result should be like that (type y when asked for confirmation): Last metadata expiration check: 2:29:44 ago on Sun 01 Jun 2025 07:37:42 AM UTC. Depen...

Vikunja Setup

InfraSI B2

Antoine de Barbarin Download the RPM image of Vikunja and install it using the dnf package manager wget https://dl.vikunja.io/vikunja/0.24.6/vikunja-0.24.6-x86_64.rpm dnf install ./vikunja-0.24.6-x86_64.rpm In the configuration file of Vikunja, change the da...

PostgreSQL Installation

InfraSI B2

Antoine de Barbarin Run the following script #!/bin/sh # Install the RPM repository: sudo dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-9-x86_64/pgdg-redhat-repo-latest.noarch.rpm # Disable the built-in PostgreSQL module: sudo dnf...

Tauri apps with blank screen on Linux

App configs

Description Multiple times, with my desktop computer running Archlinux with bspwm, I couldn't correctly open a Tauri app, it only showed a blank window with nothing inside. The app seemed to function well though, because I could see the cursor change in certai...

Running chronyd on Almalinux LXC (Proxmox)

Linux CLI tips

When running chronyd on AlmaLinux OS on a Proxmox Server, it may raise permission issues, because the container is not privileged. To resolve that issue, you only need to add -x to the options in the UNIT file of the chronyd service.

Create system user with custom home directory

Linux CLI tips

To create a system user to run an app, you can use the useradd command. Here is an example to create one with a custom home directory: sudo useradd -d /opt/app -m -r -G docker,www-data docker-website That docker-website user will have its home directory at /o...