From fc34628a3b1386263615b1cc830240ff790f2911 Mon Sep 17 00:00:00 2001 From: tube0013 Date: Mon, 20 May 2019 11:05:52 -0400 Subject: [PATCH 1/5] Add Host ModemManager fix --- source/_components/zha.markdown | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/_components/zha.markdown b/source/_components/zha.markdown index 79df7194824..2b2d6019ebe 100644 --- a/source/_components/zha.markdown +++ b/source/_components/zha.markdown @@ -102,3 +102,8 @@ enable_quirks: To add new devices to the network, call the `permit` service on the `zha` domain. Do this by clicking the Service icon in Developer tools and typing `zha.permit` in the **Service** dropdown box. Next, follow the device instructions for adding, scanning or factory reset. In case you want to add Philips Hue bulbs that have previously been added to another bridge, have a look at: [https://github.com/vanviegen/hue-thief/](https://github.com/vanviegen/hue-thief/) + + +## {% linkable_title ZHA Start up issue with Home-Assistant Docker/Hass.io installs on linux hosts %} + +On Linux hosts ZHA can fail to start during HA startup or restarts because the HUSBZB-1 device is being claimed by the host's modemmanager service. To fix this disable the modemmanger on the host system. From 59bc6f1777af8326bdb6577ad6fb9f46b6af26e0 Mon Sep 17 00:00:00 2001 From: Klaas Schoute Date: Mon, 20 May 2019 17:29:34 +0200 Subject: [PATCH 2/5] :pencil2: Tweak --- source/_components/zha.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/zha.markdown b/source/_components/zha.markdown index 2b2d6019ebe..2ef214ad062 100644 --- a/source/_components/zha.markdown +++ b/source/_components/zha.markdown @@ -106,4 +106,4 @@ In case you want to add Philips Hue bulbs that have previously been added to ano ## {% linkable_title ZHA Start up issue with Home-Assistant Docker/Hass.io installs on linux hosts %} -On Linux hosts ZHA can fail to start during HA startup or restarts because the HUSBZB-1 device is being claimed by the host's modemmanager service. To fix this disable the modemmanger on the host system. +On Linux hosts ZHA can fail to start during HA startup or restarts because the HUSBZB-1 device is being claimed by the host's modemmanager service. To fix this disable the modemmanger on the host system. From 161194978442f9f00fc67b5f6e3ed87cf6536433 Mon Sep 17 00:00:00 2001 From: tube0013 Date: Tue, 21 May 2019 09:19:44 -0400 Subject: [PATCH 3/5] Add @newlund suggested changes --- source/_components/zha.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/zha.markdown b/source/_components/zha.markdown index 2ef214ad062..7835c397cee 100644 --- a/source/_components/zha.markdown +++ b/source/_components/zha.markdown @@ -106,4 +106,4 @@ In case you want to add Philips Hue bulbs that have previously been added to ano ## {% linkable_title ZHA Start up issue with Home-Assistant Docker/Hass.io installs on linux hosts %} -On Linux hosts ZHA can fail to start during HA startup or restarts because the HUSBZB-1 device is being claimed by the host's modemmanager service. To fix this disable the modemmanger on the host system. +On Linux hosts ZHA can fail to start during HA startup or restarts because the zigbee USB device is being claimed by the host's modemmanager service. To fix this disable the modemmanger on the host system. From cbf66444fa0acde7781f6c7954b661548ae081aa Mon Sep 17 00:00:00 2001 From: tube0013 Date: Thu, 23 May 2019 13:02:47 -0400 Subject: [PATCH 4/5] Add command to remove modemmanger from host --- source/_components/zha.markdown | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/_components/zha.markdown b/source/_components/zha.markdown index 7835c397cee..9f7a3e08441 100644 --- a/source/_components/zha.markdown +++ b/source/_components/zha.markdown @@ -107,3 +107,8 @@ In case you want to add Philips Hue bulbs that have previously been added to ano ## {% linkable_title ZHA Start up issue with Home-Assistant Docker/Hass.io installs on linux hosts %} On Linux hosts ZHA can fail to start during HA startup or restarts because the zigbee USB device is being claimed by the host's modemmanager service. To fix this disable the modemmanger on the host system. + +To remove modemmanager from an Debian/Ubuntu host run this command: +``` +sudo apt-get purge modemmanager +``` From 07fa2b4128fe2fb1ab2c920af357e6e8253e9f77 Mon Sep 17 00:00:00 2001 From: Klaas Schoute Date: Thu, 30 May 2019 00:16:44 +0200 Subject: [PATCH 5/5] :pencil2: Tweak --- source/_components/zha.markdown | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/_components/zha.markdown b/source/_components/zha.markdown index 9f7a3e08441..2355771d4bc 100644 --- a/source/_components/zha.markdown +++ b/source/_components/zha.markdown @@ -103,12 +103,14 @@ To add new devices to the network, call the `permit` service on the `zha` domain In case you want to add Philips Hue bulbs that have previously been added to another bridge, have a look at: [https://github.com/vanviegen/hue-thief/](https://github.com/vanviegen/hue-thief/) +## {% linkable_title Troubleshooting %} -## {% linkable_title ZHA Start up issue with Home-Assistant Docker/Hass.io installs on linux hosts %} +### {% linkable_title ZHA Start up issue with Home-Assistant Docker/Hass.io installs on linux hosts %} On Linux hosts ZHA can fail to start during HA startup or restarts because the zigbee USB device is being claimed by the host's modemmanager service. To fix this disable the modemmanger on the host system. To remove modemmanager from an Debian/Ubuntu host run this command: -``` + +```bash sudo apt-get purge modemmanager ```