Advanced Search
Search Results
71 total results found
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...
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'...
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...
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: docker run -d \ --name wa...
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...
Useful Docker commands
Stop all Docker containers To stop all Docker containers from the command line, you can use the following command: docker stop $(docker ps -q) Explanation: docker ps -q: This command lists the container IDs of all running containers. docker stop: This s...
Volatility Zero Trend Close-to-Close
English version What it mean "Volatility Zero Trend Close-to-Close" at cryptocurrency trade. "Volatility Zero Trend Close-to-Close" is a complex term used in the context of cryptocurrency trading, specifically relating to volatility, market trends, and price...
Volatility Close-to-Close
English version "Volatility Close-to-Close" 1. Volatility Volatility refers to the amount of price fluctuation or variation in the price of an asset (like cryptocurrency) over a given period. High volatility means the price is moving up and down ra...
Step-by-Step Guide: Running Ollama in Proxmox Debian 12 LXC with Intel iGPU (i5-1240P)
Step-by-Step Guide: Running Ollama in Proxmox Debian 12 LXC with Intel iGPU (i5-1240P)This guide will show you how to: Enable Intel iGPU passthrough to an LXC container in Proxmox. Set up the latest Intel graphics drivers on both the Proxmox host and the c...
RAG + Embedding with AnythingLLM and Ollama
AnythingLLM - is an all-in-one AI application that simplifies the interaction with Large Language Models (LLMs) for business intelligence purposes. It allows users to chat with any document, such as PDFs or Word files, using various LLMs, including enterprise ...
Notify Mobile App.
Notify Mobile App using image and button. The below is a notification using the Android APP of Home Assistant to notify with an image from API of the camera or a photo from a screenshot saved local. Camera API image. action: notify.mobile_app_kostas data: ...
Linux Shell Script for VM Health Monitoring
Linux Shell Script for VM Health Monitoring I've created two shell scripts for you to monitor the VoIP service and automatically reboot your Proxmox VM when needed. Simple Version. Here's the basic script that does exactly what you asked for: #!/bin/bash ...