Advanced Search
Search Results
22 total results found
Fixing DNS Leakage on Windows 10-11
Fixing DNS Leakage on Windows To fix dns leakage on windows 10-11 we must edit the following Registry Entries: HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\WindowsNT\DNSClient HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters D...
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...
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: ...
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)...
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...
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...
Proxmox Host iGPU Drivers & Modifications
Finish and make sure the Container doesn’t start after creation. The container for Jellyfin on Proxmox is configured, but we need to make a few host changes first. This is going to be the most difficult part as the drivers you need to install will depend on...
Proxmox Backup Server PBS enlarge root disk
How to enlarge an EXT4 or LVM disk on an PBS Proxmox VM Quick TL;DR Guide First resize the disk in Proxmox Then in the PBS VM terminal:parted /dev/sdX (probably a) example parted /dev/sda print / yes to fix / resizepart Y (probably 1)quit resize2fs /...
Removing Proxmox Subscription Notice
First method To remove the “You do not have a valid subscription for this server” popup message while logging in and when refreshing packages to do updates. You’ll need to SSH to your Proxmox server or use the node console through the PVE web interface. One ...
Proxmox Backup Server Disable Subscription
Description The script will give options to Disable the Enterprise Repo, Add/Correct PBS Sources, Enable the No-Subscription Repo, Add Test Repo, Disable Subscription Nag, Update Proxmox Backup Server and Reboot PBS. Proxmox Backup Server ONLYExecute within ...
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...
Immich docker-compose.yml
Installing For installing Immich with a docker container follow the below instructions. Step 1 - Making directory Go to the docker folder where you create your containers and make a folder. mkdir immich-app cd immich-app Step 2 - Create the docker-compos...
How to Install & Configure TURN Server (coTURN)
Install coTURN Server Audio / Video based services requires a wide range of UDP ports to be available for WebRTC. In some network restricted sites, such as those behind NAT or a firewall that restricts outgoing UDP connections, users may be unable to make out...
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...
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 ...
Amnezia VPN Client setup guide.
Downloading Amnezia VPN Client Go to the below link and download the version for your OS your running. https://amnezia.org/en/downloads Android App https://play.google.com/store/apps/details?id=org.amnezia.vpn iOS App https://apps.apple.com/us/app/amnezi...
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...
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...