Nessuna descrizione

tteck c53da890ca Add files via upload 4 anni fa
LICENSE e5b943d13d Initial commit 4 anni fa
README.md e7b061588f Update README.md 4 anni fa
esphome_container.sh 87b2205759 Update esphome_container.sh 4 anni fa
esphome_setup.sh 807471e0a7 Update and rename setup1.sh to esphome_setup.sh 4 anni fa
haos_vm.sh c53da890ca Add files via upload 4 anni fa
mqtt_container.sh 9e2dde4d55 Add files via upload 4 anni fa
mqtt_setup.sh 9e2dde4d55 Add files via upload 4 anni fa
node-red_container.sh dcdec9c0ec Add files via upload 4 anni fa
node-red_setup.sh dcdec9c0ec Add files via upload 4 anni fa

README.md

Home Assistant OS VM

Proxmox VM with Home Assistant OS

To create a new Proxmox VM with the latest version of Home Assistant OS, run the following from Proxmox web shell ``` bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/haos_vm.sh)" ``` ###

:zap: Default Settings: 4GB RAM - 32GB Storage - 2vCPU :zap:

After the script completes, If you're dissatisfied with the default settings, click on the VM, then on the **_Hardware_** tab and change the **_Memory_** and **_Processors_** settings to what you desire. Once all changes have been made, **_Start_** the VM.

ESPHome LXC

Proxmox ESPHome LXC Container

To create a new Proxmox ESPHome LXC Container, run the following from Proxmox web shell. ``` bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/esphome_container.sh)" ```

MQTT LXC

Proxmox MQTT LXC Container

To create a new Proxmox MQTT LXC Container, run the following in the Proxmox web shell. ``` bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/mqtt_container.sh)" ``` ### The commands below are entered through the newly created mqtt lxc console. Mosquitto comes with a password file generating utility called mosquitto_passwd. ``` sudo mosquitto_passwd -c /etc/mosquitto/passwd ``` Password: < password > Create a configuration file for Mosquitto pointing to the password file we have just created. ``` sudo nano /etc/mosquitto/conf.d/default.conf ``` This will open an empty file. Paste the following into it. ``` allow_anonymous false password_file /etc/mosquitto/passwd ``` Save and exit the text editor with "Ctrl+O", "Enter" and "Ctrl+X". Now restart Mosquitto server. ``` sudo systemctl restart mosquitto ```

Node-Red LXC

Proxmox Node-Red LXC Container

To create a new Proxmox Node-RED LXC Container, run the following in the Proxmox web shell. ``` bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/node-red_container.sh)" ```