Duplicati

Introduction Duplicati is a backup client that securely stores encrypted, incremental, compressed remote backups of local files on cloud storage services and remote file servers. Duplicati supports not only various online backup services like OneDrive, Amazon S3, Backblaze, Rackspace Cloud Files, Tahoe LAFS, and Google Drive, but also any servers…

Jellyfin

Introduction Jellyfin is the volunteer-built media solution that puts you in control of your media. Stream to any device from your own server, with no strings attached. Your media, your server, your way. The Docker Compose File --- services: jellyfin: image: jellyfin/jellyfin:latest container_name: jellyfin hostname: jellyfin restart:…

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: freshrss/freshrss:latest container_name: freshrss hostname: freshrss restart: unless-stopped security_opt: - no-new-privileges:true environment: - TZ=Europe/Stockholm - PUID=…

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 Set Up 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…