Advanced Search
Search Results
126 total results found
Useful scripts for VPS VPN Servers
Below there are some useful script that you can run to your Linux VPS or VPN or what ever Linux machine or server you have. Unattended Upgrades Debian - Ubuntu To install these packages, run the following command as root: apt-get install -y unattended-upgra...
Custom Website Builder
Custom Website Builder
Amnezia VPN Server settings
Download and update adblocker list for dnscrypt proxy Creating the script Open the terminal and type the below command : nano update-adblocker.sh and then copy / paste the below code inside the file "update-adblocker.sh" #!/bin/bash # Name: update-adbloc...
N8N
Tutorial and various scripts relative to N8N and also some ready workflows.
Settings dnscrypt-proxy.toml
This is a working example, copy / paste the below code inside your file dnscrypt-proxy.toml # Empty listen_addresses to use systemd socket activation listen_addresses = ['127.0.0.1:53'] #listen_addresses = ['127.0.0.1:53', '172.29.172.1:53', '172.17.0.1:53'...
Self-Host Openclaw
Self-Host Openclaw (Clawdbot) in a Proxmox VM (The Secure Way)
Settings for resolv.conf
Below is the correct setting of the file resolv.conf so all the DNS request to resolve through the DNScrypt-proxy.The file is locate at the /etc/resolv.confOpen the terminal and type the below command : nano /etc/resolv.conf Remove EVERYTHING inside that fil...
OpenClaw
OpenClaw guide and tutorials.
Watchtower
Configure Watchtower Watchtower has various configuration options. You can customize its behavior by passing environment variables or command-line arguments. Here’s an example of running Watchtower with a few additional options: # Stop and remove old contai...
Clients applications and configure
Windows App Go to the below link and download the application WireSock Secure Connect. https://wiresock.net/wiresock-secure-connect/download Android App Go to the below link and download the application WG Tunnel. From Google Play https://play.google.co...
Disk Space Monitoring Script to HA
Download Script proxmox_subscription_autofix.sh 🚀 One-Line Download & Execute clear && curl -fsSL https://docs.greenhome.stream/attachments/23 -o monitor_disk_space_to_ha.sh && chmod +x os-update.sh Create the script file. Disk Space Monitoring Script and ...
NFS share on OpenMediaVault
If anyone is looking for the way to make this work for an NFS share on OpenMediaVault, use the following share options: subtree_check,insecure,no_root_squash,anonuid=100,anongid=100 and make sure the folder you are sharing is owned by group 'users' (gid 100)...
Windows Office Activation
To activate ANY Windows or Office follow the below steps Open Powershell with Administrator rights.Go on search bar and copy / paste the below. powershell Then right click and open as Administrator Copy and paste the code below, then press enter. irm http...
Restore New Text Document context menu item
Restore New Text Document context menu item on right click. Open a new text file with notepad and add inside that file the below code by copy - paste it. Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\.txt\ShellNew] "ItemName"=hex(2):40,00,25,00...
Install RustDesk Server docker-compose.
https://github.com/lejianwen/rustdesk networks: rustdesk-net: external: false services: rustdesk: ports: - 21114:21114 - 21115:21115 - 21116:21116 - 21116:21116/udp - 21117:21117 - 21118...
Managing WireGuard Logs with Systemd and Logrotate
When managing a VPN like WireGuard, logging is crucial for monitoring activity, debugging issues, and ensuring security. But if left unchecked, logs can grow rapidly and become unmanageable. In this guide, we’ll set up Systemd to capture WireGuard logs dynami...
How to enable or disable public key authentication in SSH
SSH server in most systems is by default configured to allow public-key authentication. The method will enable you to use your public and private key pair to log in to an SSH server without using a username and password. You can disable public key authenticat...
Free Space from Docker container.
The below commands are useful to free up space from containers leave unused images, volumes, networks, logs.From the cli where there is Docker installed run the below commands. Commands docker image prune -f -a docker system prune --volumes -f -a find /var...