Update HOST_SPECIFIC_INSTRUCTIONS.md (#676)

The most recent version of bullseye requires you to activate network manager after install.. just the reboot alone isn't enough apparently.  These added commands fixed this guide for me.
This commit is contained in:
psiberfunk
2024-06-08 21:28:59 -04:00
committed by GitHub
parent ea46386005
commit f1fca957b6

View File

@@ -27,11 +27,14 @@ dhcp=internal
managed=true
```
4. Reboot the pi `sudo reboot` then reaccess.
5. Install Docker with `curl -fsSL https://get.docker.com -o get-docker.sh && sh get-docker.sh`
6. Install git `sudo apt install git`
7. Clone tuya-cloudcutter repo `git clone https://github.com/tuya-cloudcutter/tuya-cloudcutter`
8. (Optional as independent step) In the cloudcutter directory, build the docker image `sudo docker build --network=host -t cloudcutter .`
9. Run cloudcutter with `sudo ./tuya-cloudcutter.sh -r ...` (refer to [usage instructions](./INSTRUCTIONS.md))
5. Make sure network manager is enabled and running:
- `sudo systemctl enable NetworkManager.service`
- `sudo systemctl start NetworkManager.service`
7. Install Docker with `curl -fsSL https://get.docker.com -o get-docker.sh && sh get-docker.sh`
8. Install git `sudo apt install git`
9. Clone tuya-cloudcutter repo `git clone https://github.com/tuya-cloudcutter/tuya-cloudcutter`
10. (Optional as independent step) In the cloudcutter directory, build the docker image `sudo docker build --network=host -t cloudcutter .`
11. Run cloudcutter with `sudo ./tuya-cloudcutter.sh -r ...` (refer to [usage instructions](./INSTRUCTIONS.md))
## Pi Zero 2W with SSH over USB