Plex

Introduction Plex Media Server is a software application that allows you to organize and stream your collection of movies, TV shows, music, and photos, from a central location. Think of it like having your own personal Netflix or Spotify server that you can access from various devices. It's…

What is Vim?

Vim is a free and open-source, screen-based text editor program. It is an improved clone of Bill Joy's vi. Vim's author, Bram Moolenaar, derived Vim from a port of the Stevie editor for Amiga and released a version to the public in 1991.  Understand the Vim…

Wordpress (with MySQL)

Introduction WordPress is a web content management system. It was originally created as a tool to publish blogs but has evolved to support publishing other web content, including more traditional websites, mailing lists and Internet forum, media galleries, membership sites, learning management systems and online stores. MySQL is an open-source…

FreshRSS

Introduction FreshRSS is a self-hosted RSS and Atom feed aggregator. It is lightweight, easy to work with, powerful, and customisable. The Docker Compose File --- services: freshrss: image: docker.io/freshrss/freshrss:latest container_name: freshrss hostname: freshrss restart: unless-stopped security_opt: - no-new-privileges:true environment: - TZ=Europe/Stockholm…

sudo Touch ID on MacBook

To allow TouchID on your Mac to authenticate you for sudo access instead of a password you need to do the following. * Open Terminal * Switch to the root user with sudo su - * Edit the /etc/pam.d/sudo file with a command-line editor such as nano * The contents of…

How to setup Automatic Updates on Debian

Introduction One central part of keeping Linux servers secure is installing security updates on time. This is one of the critical tasks for Linux admins to make the system up-to-date. In addition, it keeps your system more stable and secure. Therefore, as a system administrator, regularly updating the servers and…

File Browser

Introduction File Browser is an open-source, self-hosted file browser. The Docker Compose File --- services: filebrowser: image: docker.io/filebrowser/filebrowser:latest container_name: filebrowser hostname: filebrowser restart: unless-stopped security_opt: - no-new-privileges:true environment: - TZ=Europe/Stockholm - PUID=1000 - PGID=1000 ports: - 8080:8080/tcp…

Configuring the Zigbee2MQTT Docker container for use with Home Assistant

Introduction Zigbee is a standards-based wireless technology developed to enable low-cost, low-power wireless machine-to-machine (M2M) and internet of things (IoT) networks. Zigbee is for low-data rate, low-power applications and is an open standard. This, theoretically, enables the mixing of implementations from different manufacturers, but in practice, Zigbee products have been…