Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

19 total results found

Empty ALL LOGs on a Linux Server

Scripts

Download Script proxmox_subscription_autofix.sh 🚀 One-Line Download & Execute: clear && curl -fsSL https://docs.greenhome.stream/attachments/2 -o empty_log_files.sh && chmod +x empty_log_files.sh && clear && ./empty_log_files.sh The below script is scan all...

Linux
Scripts

Auto Update - Upgrade a Linux machine

Scripts

Download Script os-update.sh 🚀 One-Line Download & Execute: The below script is to auto update - upgrade - remove - clean and auto add a cronjob at Linux machine or Server.Also add a cron job to run every Saturday on 09:00. apt update && apt install -y curl...

Linux
Scripts

Linux Shell Script for VM Health Monitoring

Scripts

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 ...

Linux
Proxmox
Scripts

Universal Health Monitor - Configuration File Based

Scripts

Download Script universal-health-monitor.sh 🚀 One-Line Download & Execute clear && curl -fsSL https://docs.greenhome.stream/attachments/26 -o universal-health-monitor.sh && chmod +x universal-health-monitor.sh && clear && curl -fsSL https://docs.greenhome.st...

Linux
Proxmox
Scripts

NFS share on OpenMediaVault

Proxmox

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)...

Linux
Tutorial

Step-by-Step Guide: Running Ollama in Proxmox Debian 12 LXC with Intel iGPU (i5-1240P)

Proxmox

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...

Proxmox
Linux
Tutorial

Useful Docker commands

Docker

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...

Linux
Tutorial

Proxmox customize shell

Proxmox

🚀 One-Line Download & Execute : apt update && apt install -y curl && clear && curl -s https://docs.greenhome.stream/attachments/52 | bash Option one Go to the below path  cd /etc/profile.d/ Create file 00_lxc-details.sh and then create a file 00_lxc-deta...

Proxmox
Linux
Scripts

Disk Space Monitoring Script to HA

Scripts

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 ...

Home Assistant
Linux
Scripts

Free Space from Docker container.

Docker

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...

Linux
Tutorial

Immich docker-compose.yml

Guides- Dockers - LXC

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...

Linux
Tutorial

How to Install & Configure TURN Server (coTURN)

Guides- Dockers - LXC

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...

Linux
Tutorial

Install RustDesk Server docker-compose.

Guides- Dockers - LXC

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...

Linux
Tutorial

RAG + Embedding with AnythingLLM and Ollama

Guides- Dockers - LXC

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 ...

Linux
Tutorial

Useful scripts for VPS VPN Servers

Amnisia VPN

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...

Linux
Tutorial
Scripts

Amnezia VPN Server settings

Amnisia VPN

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...

Linux
Tutorial
Scripts

Settings dnscrypt-proxy.toml

Amnisia VPN

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'...

Linux
Tutorial

Settings for resolv.conf

Amnisia VPN

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...

Linux
Tutorial

Managing WireGuard Logs with Systemd and Logrotate

WireGuard

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...

Linux
Tutorial