Rsync Command Examples

Rsync Command Examples

rsync is a powerful, efficient tool for copying files and directories — and it’s especially useful for transferring files between locations (like across different machines or storage systems) while preserving…
Install Docker

Install Docker

Looking at Docker over the past year or so I decided to install Docker and play with it. However I had troubles finding a simple and correct way to install…
Installing Deluge on Ubuntu Server

Installing Deluge on Ubuntu Server

Source: https://www.linuxbabe.com/ubuntu/install-deluge-bittorrent-client-ubuntu-20-04 You can install Deluge BitTorrent daemon on a server and manage the program via the Deluge web interface (You control it in a web browser). Use the following…
Install rtorrent + rutorrent

Install rtorrent + rutorrent

ruTorrent is a web-based front-end for the powerful command line-based torrent client “rTorrent.” It allows you to create, upload, and manage all your torrent downloads in one place through a…
Download-Streaming Server Setup

Download-Streaming Server Setup

You have a new project that requires you to provide a way to distribute several large files or videos but you do not want to use the "free" services as…
Load Balancing with Caddy

Load Balancing with Caddy

Source: https://www.linuxtrainingacademy.com/caddy-load-balancing-tutorial/ Understanding and Implementing Caddy Load Balancing We will be building a load balancer that will accept requests from clients, routes those requests to a web server for processing,…
htaccess enable directory listing

htaccess enable directory listing

To enable directory listing for a specific folder on a web server, you can create or edit an .htaccess file within that folder and add the directive Options +Indexes. This tells the server to…
How to Rsync with non-standard SSH Port

How to Rsync with non-standard SSH Port

Run the following command from the terminal to sync files/folders using Rsync with non-standard ssh port. Syntax: # rsync -arvz -e 'ssh -p <port-number>' --progress --delete user@remote-server:/path/to/remote/folder /path/to/local/folder For the…