Advanced Search
Search Results
173 total results found
Wireguard on Debian LXC - Proxmox
In Proxmox, create a new Linux container using an Debian template (version 13 was used here). The following configuration is perfectly adequate for home use. Depending on your needs, you can of course increase the number of cores and the amount of memory. unp...
Install Nextcloud on Debian LXC via Snap
Install Nextcloud on Debian LXC via Snap
Hi, I had several problems with my Nextcloud installs. So I decided today that I'll try the Snap Package. There are some tweaks to do, in order to run Snapd on LXC. But I'll walk you trough this. I assume you already have a working Debian LXC container. Prepar...
Unboudn DNS Resolver
Unbound DNS Resolver
Unbound is a fast, secure, validating, recursive, and caching DNS resolver. It's commonly used for privacy (no third-party logs), DNSSEC validation, and performance via local caching. Installation apt update && apt dist-upgrade -y apt install sudo vim unbound ...
rclone
favourite flags
rclone copy -v --progress --transfers=4 /source/ rclone-remote:/path/to/folder/
Hardening
Apply a layered hardening methodology for Debian/Ubuntu systems. Includes firewalling, automatic updates, intrusion prevention, malware scanning, rootkit detection, and auditing. Audit the current system configuration: sudo lynis audit system Configure a restr...
Install Docker on Debian Trixie
Install using the apt repository Before you install Docker Engine for the first time on a new host machine, you need to set up the Docker apt repository. Afterward, you can install and update Docker from the repository. Set up Docker's apt repository. # Add...
Docker
How to use UFW with Docker // ufw-docker
Why you need it Docker publishes ports by inserting its own iptables rules before UFW can see them. A normal ufw deny 8080 does nothing. ufw-docker fixes this by making Docker traffic go through UFW’s rules. PrerequisitesUbuntu / Debian (or any distro with UF...