Proxmox/README.md

641 lines
20 KiB
Markdown
Raw Normal View History

2021-10-30 18:38:31 +02:00
<h1 align="center" id="heading"> Select a Proxmox Helper Below </h1>
2021-09-30 19:12:34 +02:00
2021-10-28 11:20:45 +02:00
2021-09-30 19:12:34 +02:00
<details>
2021-10-28 11:47:27 +02:00
<summary markdown="span">Proxmox VE 7 Post Install</summary>
2021-10-28 13:08:07 +02:00
2021-10-28 16:25:06 +02:00
<p align="center"><img src="https://www.proxmox.com/images/proxmox/Proxmox_logo_standard_hex_400px.png" alt="Proxmox Server Solutions" height="55"/></p>
2021-09-30 19:12:34 +02:00
<h1 align="center" id="heading"> Proxmox VE 7 Post Install </h1>
This script will Disable the Enterprise Repo, Add & Enable the No-Subscription Repo, Add & Disable Test Repo (repo's can be enabled/disabled via the UI in Repositories)
and attempt the *No-Nag* fix.
2021-11-29 17:14:04 +01:00
Run the following in the Proxmox Web Shell. ⚠️ **PVE7 ONLY**
2021-09-30 19:12:34 +02:00
```
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/post_install.sh)"
```
It's recommended to update Proxmox after running this script, before adding any VM/CT.
2021-11-29 16:20:26 +01:00
2021-11-29 16:18:36 +01:00
____________________________________________________________________________________________
2021-09-30 19:12:34 +02:00
</details>
2021-10-28 11:20:45 +02:00
2021-08-12 16:02:12 +02:00
2021-08-12 17:04:01 +02:00
<details>
2021-10-28 11:47:27 +02:00
<summary markdown="span">Home Assistant OS VM</summary>
2021-08-12 17:04:01 +02:00
2021-10-28 13:08:07 +02:00
<p align="center"><img src="https://avatars.githubusercontent.com/u/13844975?s=200&amp;v=4" alt="@home-assistant" width="100" height="100"/></p>
2021-11-07 20:56:03 +01:00
<h1 align="center" id="heading"> Proxmox Home Assistant OS VM </h1>
2021-08-12 17:04:01 +02:00
To create a new Proxmox VM with the latest version of Home Assistant OS, run the following from Proxmox web shell
```
2021-08-12 17:06:33 +02:00
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/haos_vm.sh)"
2021-08-12 17:04:01 +02:00
```
2021-10-28 11:56:32 +02:00
<h3 align="center" id="heading">⚡ Default Settings: 4GB RAM - 32GB Storage - 2vCPU ⚡</h3>
2021-08-12 18:56:21 +02:00
2021-08-12 17:04:01 +02:00
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.
2021-10-30 18:44:20 +02:00
**Home Assistant Interface - IP:8123**
2021-11-29 16:20:26 +01:00
2021-11-29 16:18:36 +01:00
____________________________________________________________________________________________
2021-08-12 17:04:01 +02:00
</details>
2021-10-28 11:20:45 +02:00
2021-08-12 17:04:01 +02:00
2021-11-28 06:13:35 +01:00
<details>
<summary markdown="span">Home Assistant Container LXC (Podman)</summary>
<p align="center"><img src="https://heise.cloudimg.io/width/223/q50.png-lossy-50.webp-lossy-50.foil1/_www-heise-de_/imgs/18/2/5/8/2/8/1/0/podman_logo-670078d7ea1d15a6.png" width="100" height="100"/>
<img src="https://avatars.githubusercontent.com/u/13844975?s=200&amp;v=4" alt="@home-assistant" width="100" height="100"/><img/></p>
<h1 align="center" id="heading"> Proxmox Podman Home Assistant Container LXC </h1>
2021-11-28 14:17:51 +01:00
To create a new Proxmox Podman Home Assistant Container, run the following from Proxmox web shell.
2021-11-28 14:15:04 +01:00
2021-11-28 14:45:16 +01:00
([What is Podman?](https://github.com/tteck/Proxmox/blob/main/Podman.md))
2021-11-28 06:13:35 +01:00
```
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/podman_ha_container.sh)"
```
<h3 align="center" id="heading">⚡ Default Settings: 2GB RAM - 8GB Storage - 2vCPU ⚡</h3>
After the script completes, If you're dissatisfied with the default settings, click on the LXC, then on the **_Resources_** tab and change the **_Memory_** and **_Cores_** settings to what you desire. Changes are immediate.
**Home Assistant Interface - IP:8123**
2021-11-29 17:14:04 +01:00
⚙️ **Path to HA /config**
2021-11-28 06:13:35 +01:00
```
/var/lib/containers/storage/volumes/hass_config/_data
```
2021-11-29 17:14:04 +01:00
⚙️ **To edit the HA configuration.yaml**
Run from the LXC console
2021-11-28 06:13:35 +01:00
```
nano /var/lib/containers/storage/volumes/hass_config/_data/configuration.yaml
```
Save and exit the editor with “Ctrl+O”, “Enter” and “Ctrl+X”
2021-11-29 17:14:04 +01:00
⚙️ **To autostart Home Assistant at every boot:**
Run from the LXC console
2021-11-28 06:13:35 +01:00
```
podman generate systemd \
--new --name homeassistant \
> /etc/systemd/system/homeassistant.service
systemctl enable homeassistant
```
2021-11-29 17:14:04 +01:00
⚙️ **Check the status of homeassistant service:**
Run from the LXC console
2021-11-28 06:13:35 +01:00
```
systemctl status homeassistant
```
2021-11-29 16:23:23 +01:00
2021-11-29 17:14:04 +01:00
⚙️ **To install HACS:**
2021-11-29 16:23:23 +01:00
2021-11-29 17:14:04 +01:00
Run the from the LXC console
2021-11-29 16:23:23 +01:00
```
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/podman_hacs.sh)"
```
After install, reboot Home Assistant and **clear browser cache** then Add HACS integration.
2021-11-28 06:13:35 +01:00
2021-11-29 16:18:36 +01:00
____________________________________________________________________________________________
2021-11-28 06:13:35 +01:00
</details>
2021-08-12 18:14:36 +02:00
<details>
2021-11-07 20:59:19 +01:00
<summary markdown="span">Home Assistant Container LXC </summary>
2021-10-28 13:08:07 +02:00
2021-10-28 16:41:05 +02:00
<p align="center"><img src="https://www.docker.com/sites/default/files/d8/2019-07/vertical-logo-monochromatic.png" alt="Docker Logos | Docker" width="100" height="100"/>
<img src="https://avatars.githubusercontent.com/u/13844975?s=200&amp;v=4" alt="@home-assistant" width="100" height="100"/><img src="https://avatars1.githubusercontent.com/u/22225832?s=400&amp;v=4" alt="GitHub - portainer/portainer-docs: Portainer documentation" width="100" height="100"/></p>
2021-08-12 18:14:36 +02:00
2021-11-07 20:59:19 +01:00
<h1 align="center" id="heading"> Proxmox Home Assistant Container LXC </h1>
2021-08-12 18:14:36 +02:00
2021-11-29 16:12:25 +01:00
To create a new Proxmox Home Assistant Container, run the following from Proxmox web shell.
2021-08-12 18:14:36 +02:00
```
2021-11-28 07:30:19 +01:00
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/ha_container.sh)"
2021-08-12 18:14:36 +02:00
```
2021-08-12 18:16:25 +02:00
2021-10-28 11:47:27 +02:00
<h3 align="center" id="heading">⚡ Default Settings: 4GB RAM - 16GB Storage - 2vCPU ⚡</h3>
2021-08-12 18:55:48 +02:00
2021-08-12 18:54:15 +02:00
After the script completes, If you're dissatisfied with the default settings, click on the LXC, then on the **_Resources_** tab and change the **_Memory_** and **_Cores_** settings to what you desire. Changes are immediate.
2021-08-12 18:14:36 +02:00
2021-10-30 18:44:20 +02:00
**Home Assistant Interface - IP:8123**
2021-08-12 18:16:25 +02:00
2021-10-30 18:44:20 +02:00
**Portainer Interface - IP:9000**
2021-08-12 18:16:25 +02:00
2021-11-29 17:14:04 +01:00
⚙️ **Path to HA /config**
2021-08-12 18:16:25 +02:00
```
/var/lib/docker/volumes/hass_config/_data
2021-08-12 18:18:59 +02:00
```
2021-11-29 17:14:04 +01:00
⚙️ **To edit the HA configuration.yaml**
Run from the LXC console
2021-11-15 10:28:44 +01:00
```
nano /var/lib/docker/volumes/hass_config/_data/configuration.yaml
```
Save and exit the editor with “Ctrl+O”, “Enter” and “Ctrl+X”
2021-11-15 10:06:06 +01:00
2021-11-29 17:14:04 +01:00
⚙️ **To allow device passthrough:**
2021-11-29 16:12:25 +01:00
2021-11-29 17:14:04 +01:00
In the Proxmox web shell run (**replace `106` with your LXC ID**)
2021-11-29 16:12:25 +01:00
```
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/autodev.sh)" -s 106
```
2021-08-12 18:17:10 +02:00
2021-11-29 16:12:25 +01:00
Reboot the LXC to apply the changes
2021-11-29 17:14:04 +01:00
⚙️ **To install HACS:**
2021-11-29 16:12:25 +01:00
2021-11-29 17:14:04 +01:00
Run the from the LXC console
2021-11-29 16:12:25 +01:00
```
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/hacs.sh)"
```
After install, reboot Home Assistant and **clear browser cache** then Add HACS integration.
____________________________________________________________________________________________
2021-08-12 18:14:36 +02:00
</details>
2021-10-28 11:20:45 +02:00
2021-08-12 18:14:36 +02:00
2021-08-12 16:02:12 +02:00
<details>
2021-10-28 11:47:27 +02:00
<summary markdown="span">ESPHome LXC</summary>
2021-10-28 13:08:07 +02:00
2021-10-28 16:25:06 +02:00
<p align="center"><img src="https://esphome.io/_static/logo-text.svg" alt="Logo" height="90"/></p>
2021-08-12 16:02:12 +02:00
<h1 align="center" id="heading"> Proxmox ESPHome LXC Container </h1>
To create a new Proxmox ESPHome LXC Container, run the following from Proxmox web shell.
```
2021-08-12 16:26:46 +02:00
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/esphome_container.sh)"
2021-08-12 16:02:12 +02:00
```
2021-10-28 11:47:27 +02:00
<h3 align="center" id="heading">⚡ Default Settings: 1GB RAM - 4GB Storage - 2vCPU ⚡</h3>
2021-08-12 16:02:12 +02:00
2021-10-30 18:44:20 +02:00
**ESPHome Interface - IP:6052**
2021-11-29 16:18:36 +01:00
____________________________________________________________________________________________
2021-09-17 16:30:52 +02:00
2021-08-12 16:02:12 +02:00
</details>
2021-09-03 21:33:46 +02:00
<details>
2021-10-28 11:47:27 +02:00
<summary markdown="span">Nginx Proxy Manager LXC</summary>
2021-10-28 13:08:07 +02:00
2021-10-28 13:15:10 +02:00
<p align="center"><img src="https://nginxproxymanager.com/logo.png" alt="hero" height="100"/></p>
2021-10-28 13:08:07 +02:00
2021-09-03 21:33:46 +02:00
<h1 align="center" id="heading"> Proxmox Nginx Proxy Manager LXC Container </h1>
To create a new Proxmox Nginx Proxy Manager LXC Container, run the following from Proxmox web shell.
```
curl -sL https://raw.githubusercontent.com/ej52/proxmox/main/lxc/nginx-proxy-manager/create.sh | bash -s
```
2021-10-28 11:47:27 +02:00
<h3 align="center" id="heading">⚡ Alpine Default Settings: 512MiB RAM - 2GB Storage - 1vCPU ⚡</h3>
2021-09-04 17:03:40 +02:00
____________________________________________________________________________________
2021-09-03 21:38:43 +02:00
2021-09-04 15:18:21 +02:00
Forward port `80` and `443` from your router to your Nginx Proxy Manager LXC IP.
Add the following to your `configuration.yaml` in Home Assistant.
```
http:
use_x_forwarded_for: true
trusted_proxies:
- 192.168.100.27 ###(Nginx Proxy Manager LXC IP)###
```
2021-10-30 18:44:20 +02:00
**Nginx Proxy Manager Interface - IP:81**
2021-10-29 05:11:22 +02:00
2021-09-03 21:54:58 +02:00
**Initial Login**
2021-09-03 21:52:58 +02:00
2021-09-03 21:54:58 +02:00
**username**
2021-09-03 21:53:35 +02:00
```
2021-09-03 21:52:58 +02:00
admin@example.com
```
2021-09-03 21:54:58 +02:00
**password**
2021-09-03 21:53:35 +02:00
```
2021-09-03 21:52:58 +02:00
changeme
```
2021-09-03 21:56:06 +02:00
Thanks to [ej52](https://github.com/ej52/proxmox-scripts/blob/main/lxc/nginx-proxy-manager/README.md) for his hard work.
2021-09-03 21:33:46 +02:00
2021-11-29 16:18:36 +01:00
____________________________________________________________________________________________
2021-09-03 21:33:46 +02:00
</details>
2021-08-12 16:02:12 +02:00
2021-10-28 11:20:45 +02:00
2021-08-12 16:02:12 +02:00
<details>
2021-10-28 11:47:27 +02:00
<summary markdown="span">MQTT LXC</summary>
2021-10-28 13:08:07 +02:00
2021-10-28 13:15:10 +02:00
<p align="center"><img src="https://mqtt.org/assets/img/mqtt-logo-transp.svg" height="75"/></p>
2021-10-28 13:08:07 +02:00
2021-08-12 16:02:12 +02:00
<h1 align="center" id="heading"> Proxmox MQTT LXC Container </h1>
To create a new Proxmox MQTT LXC Container, run the following in the Proxmox web shell.
```
2021-08-12 16:53:46 +02:00
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/mqtt_container.sh)"
2021-08-12 16:02:12 +02:00
```
2021-10-28 11:47:27 +02:00
<h3 align="center" id="heading">⚡ Default Settings: 512MiB RAM - 2GB Storage - 1vCPU ⚡</h3>
2021-08-12 19:15:56 +02:00
2021-08-12 16:02:12 +02:00
Mosquitto comes with a password file generating utility called mosquitto_passwd.
```
sudo mosquitto_passwd -c /etc/mosquitto/passwd <usr>
```
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
2021-08-21 15:22:49 +02:00
persistence true
2021-08-12 16:02:12 +02:00
password_file /etc/mosquitto/passwd
2021-08-21 14:37:19 +02:00
listener 1883
2021-08-12 16:02:12 +02:00
```
Save and exit the text editor with "Ctrl+O", "Enter" and "Ctrl+X".
Now restart Mosquitto server.
```
sudo systemctl restart mosquitto
```
2021-11-29 16:18:36 +01:00
____________________________________________________________________________________________
2021-08-12 16:02:12 +02:00
</details>
2021-10-28 11:20:45 +02:00
2021-08-12 16:02:12 +02:00
<details>
2021-10-28 11:47:27 +02:00
<summary markdown="span">Node-Red LXC</summary>
2021-10-28 13:08:07 +02:00
<p align="center"><img src="https://avatars.githubusercontent.com/u/5375661?s=200&amp;v=4" alt="@node-red" width="100" height="100"/></p>
2021-08-12 16:02:12 +02:00
<h1 align="center" id="heading"> Proxmox Node-Red LXC Container </h1>
2021-10-28 13:08:07 +02:00
2021-08-12 16:02:12 +02:00
To create a new Proxmox Node-RED LXC Container, run the following in the Proxmox web shell.
```
2021-08-12 16:44:59 +02:00
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/node-red_container.sh)"
2021-08-12 16:02:12 +02:00
```
2021-10-28 11:47:27 +02:00
<h3 align="center" id="heading">⚡ Default Settings: 1GB RAM - 4GB Storage - 1vCPU ⚡</h3>
2021-08-12 16:02:12 +02:00
2021-10-26 20:41:48 +02:00
From your nodered LXC console, the following commands can be run
`node-red-start` to start Node-Red
`sudo systemctl enable nodered.service` to autostart Node-RED at every boot
`node-red-restart` to restart Node-Red
`sudo systemctl disable nodered.service` to disable autostart on boot
2021-10-28 13:53:44 +02:00
`sudo npm install -g --unsafe-perm node-red` to update Node-Red (`node-red-restart` after update)
2021-10-26 20:41:48 +02:00
2021-10-30 18:44:20 +02:00
**Node-Red Interface - IP:1880**
2021-11-29 16:18:36 +01:00
____________________________________________________________________________________________
2021-10-29 05:11:22 +02:00
2021-08-12 17:23:54 +02:00
</details>
<details>
2021-10-28 11:47:27 +02:00
<summary markdown="span">Mariadb 10.5 LXC</summary>
2021-10-28 13:08:07 +02:00
<p align="center"><img src="https://mariadb.com/wp-content/webp-express/webp-images/doc-root/wp-content/themes/sage/dist/images/mariadb-logo-white.png.webp" alt="MariaDB"/></p>
2021-08-12 17:23:54 +02:00
2021-08-22 02:30:27 +02:00
<h1 align="center" id="heading"> Proxmox Mariadb 10.5 LXC Container </h1>
2021-08-12 17:23:54 +02:00
To create a new Proxmox Mariadb LXC Container, run the following in the Proxmox web shell.
```
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/mariadb_container.sh)"
```
2021-10-28 11:47:27 +02:00
<h3 align="center" id="heading">⚡ Default Settings: 1GB RAM - 4GB Storage - 1vCPU ⚡</h3>
2021-08-12 19:21:08 +02:00
2021-08-12 17:25:31 +02:00
To enable MariaDB to listen to remote connections, you need to edit your defaults file. To do this, open the console in your MariaDB lxc:
```
2021-08-22 02:30:27 +02:00
nano /etc/mysql/my.cnf
2021-08-12 17:25:31 +02:00
```
2021-08-22 02:30:27 +02:00
Un-comment `port =3306`
Save and exit the editor with "Ctrl+O", "Enter" and "Ctrl+X".
2021-08-12 17:25:31 +02:00
```
2021-08-22 02:30:27 +02:00
nano /etc/mysql/mariadb.conf.d/50-server.cnf
```
Comment `bind-address = 127.0.0.1`
Save and exit the editor with "Ctrl+O", "Enter" and "Ctrl+X".
2021-08-12 17:25:31 +02:00
For new MariaDB installations, the next step is to run the included security script. This script changes some of the less secure default options. We will use it to block remote root logins and to remove unused database users.
Run the security script:
```
sudo mysql_secure_installation
```
2021-08-24 22:39:02 +02:00
Enter current password for root (enter for none): `enter`
2021-08-22 02:32:22 +02:00
2021-08-24 22:39:02 +02:00
Switch to unix_socket authentication [Y/n] `y`
2021-08-22 02:32:22 +02:00
2021-08-24 22:39:02 +02:00
Change the root password? [Y/n] `n`
2021-08-22 02:32:22 +02:00
2021-08-24 22:39:02 +02:00
Remove anonymous users? [Y/n] `y`
2021-08-22 02:32:22 +02:00
2021-08-24 22:39:02 +02:00
Disallow root login remotely? [Y/n] `y`
2021-08-22 02:32:22 +02:00
2021-08-24 22:39:02 +02:00
Remove test database and access to it? [Y/n] `y`
2021-08-22 02:32:22 +02:00
2021-08-24 22:39:02 +02:00
Reload privilege tables now? [Y/n] `y`
2021-08-12 17:25:31 +02:00
2021-08-22 02:30:27 +02:00
We will create a new account called admin with the same capabilities as the root account, but configured for password authentication.
2021-08-12 17:25:31 +02:00
```
sudo mysql
```
Prompt will change to ```MariaDB [(none)]>```
2021-08-22 02:42:54 +02:00
Create a new local admin (Change the username and password to match your preferences)
2021-08-22 02:30:27 +02:00
```
2021-08-22 02:37:57 +02:00
CREATE USER 'admin'@'localhost' IDENTIFIED BY 'password';
2021-08-12 17:25:31 +02:00
```
2021-08-22 03:13:59 +02:00
Give local admin root privileges (Change the username and password to match above)
2021-08-22 02:30:27 +02:00
```
2021-08-22 02:37:57 +02:00
GRANT ALL ON *.* TO 'admin'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION;
2021-08-22 02:30:27 +02:00
```
2021-08-27 11:59:26 +02:00
Now, we'll give the user admin root privileges and password-based access that can connect from anywhere on your local area network (LAN), which has addresses in the subnet 192.168.100.0/24. This is an improvement because opening a MariaDB server up to the Internet and granting access to all hosts is bad practice.. Change the **_username_**, **_password_** and **_subnet_** to match your preferences:
2021-08-22 02:30:27 +02:00
```
2021-08-22 02:37:57 +02:00
GRANT ALL ON *.* TO 'admin'@'192.168.100.%' IDENTIFIED BY 'password' WITH GRANT OPTION;
2021-08-12 17:25:31 +02:00
```
Flush the privileges to ensure that they are saved and available in the current session:
```
FLUSH PRIVILEGES;
```
Following this, exit the MariaDB shell:
```
exit
```
Log in as the new database user you just created:
```
mysql -u admin -p
```
Create a new database:
```
CREATE DATABASE homeassistant;
```
2021-08-22 02:30:27 +02:00
Following this, exit the MariaDB shell:
```
exit
```
2021-10-28 11:47:27 +02:00
⚠️ Reboot the lxc
2021-08-22 02:30:27 +02:00
2021-08-12 17:25:31 +02:00
Checking status.
```
sudo systemctl status mariadb
```
2021-08-22 11:54:33 +02:00
Change the recorder: `db_url:` in your HA configuration.yaml
2021-08-13 20:45:26 +02:00
2021-08-22 11:55:40 +02:00
Example: `mysql://admin:password@192.168.100.26:3306/homeassistant?charset=utf8mb4`
2021-08-12 17:23:54 +02:00
2021-11-29 16:18:36 +01:00
____________________________________________________________________________________________
2021-08-28 00:15:26 +02:00
</details>
2021-08-28 06:49:59 +02:00
2021-10-28 11:20:45 +02:00
2021-08-12 17:47:15 +02:00
2021-08-12 17:56:33 +02:00
<details>
2021-11-07 20:59:19 +01:00
<summary markdown="span">Zigbee2MQTT LXC </summary>
2021-10-28 13:08:07 +02:00
<p align="center"><img src="https://github.com/Koenkk/zigbee2mqtt/blob/master/images/logo.png?raw=true" alt="logo.png" width="100" height="100"/></p>
2021-08-12 17:56:33 +02:00
2021-11-07 20:59:19 +01:00
<h1 align="center" id="heading"> Proxmox Zigbee2MQTT LXC Container </h1>
2021-08-12 17:56:33 +02:00
2021-11-29 17:23:07 +01:00
To create a new Proxmox [Zigbee2MQTT](https://www.zigbee2mqtt.io/) LXC Container, run the following from Proxmox web shell.
2021-08-12 17:56:33 +02:00
```
2021-11-28 07:25:44 +01:00
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/zigbee2mqtt_container.sh)"
2021-08-12 17:47:15 +02:00
```
2021-10-28 11:47:27 +02:00
<h3 align="center" id="heading">⚡ Default Settings: 1GB RAM - 4GB Storage - 2vCPU ⚡</h3>
2021-08-12 19:57:28 +02:00
2021-11-29 16:30:08 +01:00
2021-11-29 17:14:04 +01:00
⚙️ **To allow device passthrough:**
2021-11-29 16:30:08 +01:00
2021-11-29 17:14:04 +01:00
In the Proxmox web shell run (**replace `106` with your LXC ID**)
2021-11-29 16:30:08 +01:00
```
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/autodev.sh)" -s 106
```
Reboot the LXC to apply the changes
2021-11-29 17:14:04 +01:00
⚙️ **Determine the location of your adapter**
Run in the zigbee2mqtt console
2021-08-12 17:47:15 +02:00
```
ls -l /dev/serial/by-id
```
Example Output: ```lrwxrwxrwx 1 root root 13 Jun 19 17:30 usb-1a86_USB_Serial-if00-port0 -> ../../ttyUSB0```
2021-08-23 04:34:15 +02:00
2021-11-29 16:33:11 +01:00
⚠️ **Before you can start Zigbee2MQTT you need to edit the [configuration.yaml](https://www.zigbee2mqtt.io/guide/configuration/)**
2021-08-12 17:47:15 +02:00
```
nano /opt/zigbee2mqtt/data/configuration.yaml
```
Example:
```
frontend:
port: 9442
homeassistant: true
permit_join: false
mqtt:
base_topic: zigbee2mqtt
server: 'mqtt://192.168.86.224:1883'
user: usr
password: pwd
keepalive: 60
reject_unauthorized: true
version: 4
serial:
port: /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0
advanced:
pan_id: GENERATE
network_key: GENERATE
channel: 20
```
2021-11-29 17:14:04 +01:00
⚙️ **Zigbee2mqtt can be started after completing the configuration**
2021-08-12 17:47:15 +02:00
```
sudo systemctl start zigbee2mqtt
```
2021-11-29 17:14:04 +01:00
⚙️ **To start Zigbee2MQTT automatically on boot**
2021-08-13 20:13:00 +02:00
```
2021-10-28 11:52:58 +02:00
sudo systemctl enable zigbee2mqtt.service
2021-08-13 20:13:00 +02:00
```
2021-11-29 17:14:04 +01:00
⚙️ **To update Zigbee2Mqtt**
2021-08-23 12:09:35 +02:00
```
2021-10-28 11:52:58 +02:00
cd /opt/zigbee2mqtt
bash update.sh
2021-08-23 12:09:35 +02:00
```
2021-11-29 16:18:36 +01:00
____________________________________________________________________________________________
2021-08-12 16:02:12 +02:00
</details>
2021-08-12 21:36:21 +02:00
2021-10-28 11:20:45 +02:00
2021-11-28 13:40:50 +01:00
<details>
<summary markdown="span">Zwavejs2MQTT LXC </summary>
<p align="center"><img src="https://github.com/zwave-js/zwavejs2mqtt/raw/master/docs/_images/zwavejs_logo.svg" height="100"/></p>
2021-11-28 15:09:56 +01:00
<h1 align="center" id="heading"> Proxmox Zwavejs2MQTT LXC Container </h1>
2021-11-28 13:40:50 +01:00
To create a new Proxmox Zwavejs2MQTT LXC Container, run the following from Proxmox web shell.
```
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/zwavejs2mqtt_container.sh)"
```
<h3 align="center" id="heading">⚡ Default Settings: 1GB RAM - 4GB Storage - 2vCPU ⚡</h3>
2021-11-29 17:14:04 +01:00
⚙️ **To start Zwavejs2Mqtt**
Run from the LXC console
2021-11-28 13:40:50 +01:00
```
cd zwavejs2mqtt
./zwavejs2mqtt
```
**Zwavejs2MQTT Interface - IP:8091**
2021-11-29 16:18:36 +01:00
2021-11-29 17:14:04 +01:00
⚙️ **To allow device passthrough:**
2021-11-29 16:37:46 +01:00
2021-11-29 17:14:04 +01:00
In the Proxmox web shell run (**replace `106` with your LXC ID)**
2021-11-29 16:37:46 +01:00
```
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/autodev.sh)" -s 106
```
Reboot the LXC to apply the changes
2021-11-29 16:18:36 +01:00
____________________________________________________________________________________________
2021-11-28 13:40:50 +01:00
</details>
2021-08-12 21:36:21 +02:00
<details>
2021-10-28 14:19:55 +02:00
<summary markdown="span">Debian 10+ LXC</summary>
2021-10-28 13:08:07 +02:00
<p align="center"><img src="https://www.debian.org/Pics/debian-logo-1024x576.png" alt="Debian" height="100"/></p>
2021-08-12 21:36:21 +02:00
<h1 align="center" id="heading"> Proxmox Debian 10 LXC Container </h1>
2021-08-12 21:38:04 +02:00
To create a new Proxmox Debian 10 (curl. sudo, auto login) LXC Container, run the following in the Proxmox web shell.
2021-08-12 21:36:21 +02:00
```
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/debian10_container.sh)"
```
2021-10-28 11:47:27 +02:00
<h3 align="center" id="heading">⚡ Default Settings: 512MiB RAM - 2GB Storage - 1vCPU ⚡</h3>
2021-08-12 21:36:21 +02:00
After the script completes, If you're dissatisfied with the default settings, click on the LXC, then on the **_Resources_** tab and change the **_Memory_** and **_Cores_** settings to what you desire. Changes are immediate.
2021-11-29 16:18:36 +01:00
____________________________________________________________________________________________
2021-08-12 21:36:21 +02:00
</details>
2021-08-19 14:37:01 +02:00
2021-10-28 11:20:45 +02:00
2021-08-19 14:37:01 +02:00
<details>
2021-10-28 14:19:55 +02:00
<summary markdown="span">Debian 11+ LXC</summary>
2021-10-28 13:08:07 +02:00
<p align="center"><img src="https://www.debian.org/Pics/debian-logo-1024x576.png" alt="Debian" height="100"/></p>
2021-08-19 14:37:01 +02:00
<h1 align="center" id="heading"> Proxmox Debian 11 LXC Container </h1>
To create a new Proxmox Debian 11 (curl. sudo, auto login) LXC Container, run the following in the Proxmox web shell.
```
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/debian11_container.sh)"
```
2021-10-28 11:47:27 +02:00
<h3 align="center" id="heading">⚡ Default Settings: 512MiB RAM - 2GB Storage - 1vCPU ⚡</h3>
2021-08-19 14:37:01 +02:00
After the script completes, If you're dissatisfied with the default settings, click on the LXC, then on the **_Resources_** tab and change the **_Memory_** and **_Cores_** settings to what you desire. Changes are immediate.
2021-11-29 16:18:36 +01:00
____________________________________________________________________________________________
2021-08-19 14:37:01 +02:00
</details>
2021-09-27 15:47:47 +02:00
2021-10-28 11:20:45 +02:00
2021-09-27 15:47:47 +02:00
<details>
2021-10-28 11:47:27 +02:00
<summary markdown="span">Pi-hole LXC</summary>
2021-10-28 13:08:07 +02:00
<p align="center"><img src="https://camo.githubusercontent.com/9426a93d32aa9f5ad757b2befcdb762a270d344efd6b8d287a2cea2c4c2233b8/68747470733a2f2f70692d686f6c652e6769746875622e696f2f67726170686963732f566f727465782f566f727465785f776974685f576f72646d61726b2e737667" alt="Pi-hole" width="100" height="100"/></p>
2021-09-27 15:47:47 +02:00
2021-09-30 19:12:34 +02:00
<h1 align="center" id="heading"> Pi-hole LXC </h1>
2021-09-27 15:47:47 +02:00
2021-09-30 19:12:34 +02:00
To create a new Proxmox Pi-hole LXC, run the following in the Proxmox web shell.
2021-09-27 15:47:47 +02:00
```
2021-09-30 19:12:34 +02:00
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/pihole_container.sh)"
2021-09-27 15:47:47 +02:00
```
2021-10-28 11:47:27 +02:00
<h3 align="center" id="heading">⚡ Default Settings: 512MiB RAM - 2GB Storage - 1vCPU ⚡</h3>
2021-09-30 19:12:34 +02:00
To set your password (Run in the pi-hole console)
2021-09-27 15:47:47 +02:00
2021-09-30 19:12:34 +02:00
```
pihole -a -p
```
2021-09-27 15:47:47 +02:00
2021-11-29 16:18:36 +01:00
____________________________________________________________________________________________
2021-09-27 15:47:47 +02:00
</details>
2021-09-30 19:12:34 +02:00
2021-11-29 16:18:36 +01:00
2021-10-29 00:27:08 +02:00
<details>
<summary markdown="span">AdGuard Home LXC</summary>
<p align="center"><img src="https://dashboard.snapcraft.io/site_media/appmedia/2020/04/256.png" width="100" height="100"/></p>
<h1 align="center" id="heading"> AdGuard Home LXC </h1>
To create a new Proxmox AdGuard Home LXC, run the following in the Proxmox web shell.
```
bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/adguard_container.sh)"
```
<h3 align="center" id="heading">⚡ Default Settings: 512MiB RAM - 2GB Storage - 1vCPU ⚡</h3>
2021-10-30 18:44:20 +02:00
**AdGuard Home Interface - IP:3000**
2021-10-29 00:27:08 +02:00
2021-11-29 16:18:36 +01:00
____________________________________________________________________________________________
2021-10-29 00:27:08 +02:00
</details>