flash: Can't make HypriotOS 1.12.1 work. So many different problems
TLDR:
- I’ve spent 2 full days trying to use HypriotOS. I’ve had so many problems that I can’t give a summary, so please read the full issue.
- After all of this, I’m still unable to run HypriotOS.
- I’ve encountered a lot of missing, outdated, obscure, and contradictory documentation. Please read carefully the full issue where I represent these points in one of three ways: as questions, by explicitly saying that the doc could explain the specific point, or making guesses how something should work (instead of getting clear information from the docs).
- I would really like to be able to run this on my Raspberry Pi devices since it seems to be a perfect fit for what I need to do.
- I’m willing to help to improve the documentation if you think my observations are valid. But I can only do so after understanding the enormous confusion that I’m facing with this setup. I’ve put around 6 hours of work just to write this issue with every detail I could get.
- I would like to make it very explicit (with all due respect for the project): using HypriotOS and the flash script was not easy at all in my experience (unlike what is said here).
Hello there
First and foremost, thank you for the project, it seems to really provide a good solution for the problem, especially for less experienced developers like me. If the following text ends up sounding harsh, it is not directed to the project, or to the developers, but to my own frustration.
It’s been a recurring theme for me. Whatever I try to learn or do, I end up finding a tool that “makes everything really easy”. More often than not, I end up not being able to use or understand the tool, and left with the doubt: either it isn’t that easy, or I’m just very, very incapable.
I’ve spent the 2 last days trying to use Hypriot, and failing miserably. I’m so confused about how this is supposed to work that I can’t even open a specific issue about a specific question, so I’ll try to expose the problems I’ve had in this single issue and we can work from this.
Hopefully my questions could point some obscure points about the documentation, and so help more people who are in my situation.
Note: I’ve read several materials before creating this issue. To cite some:
- https://blog.hypriot.com/post/releasing-HypriotOS-1-11/
- https://blog.hypriot.com/getting-started-with-docker-on-your-arm-device/
- https://blog.hypriot.com/getting-started-with-docker-and-mac-on-the-raspberry-pi/
- https://blog.hypriot.com/faq/#wifi
- https://www.raspberrypi.org/documentation/configuration/config-txt/README.md
- https://cloudinit.readthedocs.io/en/0.7.9/topics/modules.html
- I’ve cloned, read all the docs, and looked at all samples from https://github.com/hypriot/flash
- I’ve cloned, and skimmed through https://github.com/hypriot/image-builder-rpi
I hope that makes it clear that this is not just a lazy “help me, it is not working” without any effort or context.
what devices I have
- Mac Book (where I’m flashing the SD cards etc)
- Raspberry Pi 2 Model B (with a wi-fi stick)
- Raspberry Pi Zero W
what I’m trying to achieve
I want to flash an image on my devices with HypriotOS v1.12.1, configuring:
- hostname
- wifi settings
- SSH keys
To make it more clear: I want to put an SD card in my Raspberry Pi devices and boot them with these 3 things configured, so I don’t want to have to plug a keyboard or Ethernet cable to my devices.
what I’ve tried
with the Raspberry Pi 2 Model B
First I’ve tried a bunch of stuff that I can’t remember right now. Then I started all over again, with baby steps (doing the most basic setup, then trying to change one thing at a time), as follows.
first attempt - no config
Here I’m doing basically what is described here.
The blog post is about HypriotOS 1.11 (I’m actually using 1.12). Not sure whether that makes any difference here.
Steps:
- flash the image without any extra configuration or file, using the
flash
script:flash -f ~/cluster-images/hypriotos-rpi-v1.12.1.img
- connect the Pi via Ethernet to my Ethernet switch, via cable
- access the Pi via SSH with the default hostname:
ssh pirate@black-pearl.local
, and passwordhypriot
.
This works ✅, but is not what I need, because I’m still accessing with the default hostname, through an Ethernet cable, and with a password in SSH.
second attempt - just the hostname
Everything like the first, but setting a hostname.
Here comes the first confusion. There seems to be more than 1 way to do this, without any explanation of priorities or use cases.
-
flash
has the--hostname
option. -
https://github.com/hypriot/flash#cloud-init shows with the configuration
hostname: black-pearl
and mentions the files for the options--userdata
and--metadata
(I’ve learned that these files are related to cloud-init, but I could not find anywhere that explained satisfactorily the difference between both and which fields are accepted in any one of the files). The documentation linked states:With HypriotOS v1.7.0 and higher the options --userdata and --metadata can be used to copy both cloud-init config files into the FAT partition.
and follows with an example file, but does not mention whether that is the
--userdata
file or the--metadata
file. I could guess it is on the--userdata
file (100% just a guess, even after researching), but I think that would be so easier if the README explained that.
hostname - first way
So I’ll make a guess and go with the --hostname
.
Steps:
flash --hostname testing-hostname -f ~/cluster-images/hypriotos-rpi-v1.12.1.img
- connect the Pi via Ethernet to my Ethernet switch, via cable
- access the Pi via SSH with the configured hostname:
ssh pirate@testing-hostname.local
, and passwordhypriot
.
This works ✅, but has the same shortcomings than the first attempt.
hostname - second way
Now I try to change the hostname through the cloud-init approach. I create a cloud-init.yml
file with:
hostname: testing-hostname-2
manage_etc_hosts: true
package_upgrade: false
Steps:
flash --userdata ./cloud-init.yml -f ~/cluster-images/hypriotos-rpi-v1.12.1.img
- connect the Pi via Ethernet to my Ethernet switch, via cable
- access the Pi via SSH with the configured hostname:
ssh pirate@testing-hostname-2.local
, and passwordhypriot
.
This does not work ❌. I try to connect via SSH, and it simply hangs. The hostname was not changed.
hostname - third way
After some more digging, I find in an sample the systemctl restart avahi-daemon
command (not present in the example at the README). I update the cloud-init.yml
adding it to the file:
hostname: testing-hostname-3
manage_etc_hosts: true
package_upgrade: false
runcmd:
- 'systemctl restart avahi-daemon'
Again, this does not work ❌.
hostname - fourth way
Out of despair, I copy the full example from https://github.com/hypriot/flash/blob/master/sample/wifi-user-data.yml (and of course make my adjustments). Note: I’ve copied inclusive the wifi configurations, but I’m still working with the Ethernet cable plugged in.
hostname: testing-hostname-4
manage_etc_hosts: true
users:
- name: pirate
gecos: "Hypriot Pirate"
sudo: ALL=(ALL) NOPASSWD:ALL
shell: /bin/bash
groups: users,docker,video
plain_text_passwd: hypriot
lock_passwd: false
ssh_pwauth: true
chpasswd: { expire: false }
package_upgrade: false
write_files:
- content: |
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
path: /etc/network/interfaces.d/wlan0
- content: |
country=BR
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="---"
psk="---"
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP
auth_alg=OPEN
}
path: /etc/wpa_supplicant/wpa_supplicant.conf
runcmd:
- 'systemctl restart avahi-daemon'
- 'ifup wlan0'
This works ✅. And by that, I mean: this did set the hostname (I’m not mentioning wifi so far).
I don’t understand why. It seems that I’ve only added user information and wifi configuration, and that somehow makes the hostname work. I just give up investigating the hostname
at this point.
third attempt - hostname and wifi
Here I must say: the docs were really, really confusing.
My first reference was https://blog.hypriot.com/post/releasing-HypriotOS-1-11/#flash-with-wi-fi-settings-for-pi-zero-pi-3-pi-4, which recommends using the flash
option -u
to configure wifi.
Then I go to https://github.com/hypriot/flash and search for “wifi”.
First result important for me:
copy an optional config.txt file into the boot partition of the SD image (eg. to enable onboard WiFi)
Ok, so new information, there is a file called config.txt
. Should I just use the -u
option, or is this config.txt
file needed as well?
Second result important for me:
–ssid|-s Set WiFi SSID for this SD image –password|-p Set WiFI password for this SD image
How does that relate to -u
and to config.txt
? Should they be combined? Does one override the other?
Third result important for me:
Onboard WiFi The options --userdata and --bootconf must be used to disable UART and enable onboard WiFi for Raspberry Pi 3 and Pi 0. For external WiFi sticks you do not need to specify the -bootconf option.
Ok, so I’m in a Raspberry Pi 2 Model B, with a wifi stick. So I think I don’t need the --bootconf
option, and therefore, I don’t need a config.txt
in this case.
There is an example (that I assume because the previous text is for Pi 3 and Pi 0, actually needs the --bootconf
option):
flash --userdata sample/wlan-user-data.yaml --bootconf sample/no-uart-config.txt hypriotos-rpi-v1.12.0.img
Ok, so I think I should use this example and just omit the --botconf
option. I go to the sample
folder and there is no wlan-user-data.yaml
file there. There is a wifi-user-data.yml
file, and (another guess) I think it is the right sample. The file has a really confusing comment:
The current version of cloud-init in the Hypriot rpi-64 is 0.7.9
Hypriot rpi-64? What is this? I think because I’m using a Raspberry Pi 2 Model B (a 32 bits CPU), this does not apply to me. Then I check https://blog.hypriot.com/downloads/ to see if I’ve downloaded the correct version. There I find nothing mentioning neither “32 bits” nor “64 bits”. Not knowing what to do with this my best bet is to ignore this information.
So I copy the wifi-user-data.yml
file, set in it my wifi SSID, wifi password and country code.
Steps:
flash -f --userdata ./cloud-init.yml ~/cluster-images/hypriotos-rpi-v1.12.1.img
- this time I don’t connect the Pi to my Ethernet cable, because I’m trying to use only the wifi
- access the Pi via SSH with the configured hostname:
ssh pirate@testing-wifi.local
, and passwordhypriot
.
This is essentially what I’ve done in the last way that I’ve described trying to set the hostname, above. And this does set the hostname but does not configure my wifi.
This does not work ❌.
At this point, since I no longer have the Ethernet cable plugged in, I plug a display and a keyboard to my Raspberry Pi 2 Model B and with ifconfig
I confirm that I don’t have a wifi connection.
In the startup scripts, I see something very intriguing: Cloud-init v 18.3 running 'init-local'
.
Ok. Up to this point, I’ve seen several mentions to the cloud-init used being version 0.7.9
. Here are some:
- https://blog.hypriot.com/post/cloud-init-cloud-on-hypriot-x64/ (which is also linked in the
flash
README)It should be noted, that at this time, the cloud-init version available for Debian distribution is 0.7.9,
- https://github.com/hypriot/flash
Please have a look at the sample folder, our guest blog post Bootstrapping a Cloud with Cloud-Init and HypriotOS or at the cloud-init documentation how to do more things like using SSH keys, running additional commands, etc. This links to the previous item (so reinforces the idea that the version is 0.7.9, and links to the 0.7.9 documentation).
- the flash script itself, as I currently write this (https://github.com/hypriot/flash/blob/aa8107c03b96ae31544850bf269c9e214743fbf3/flash#L61):
See http://cloudinit.readthedocs.io/en/0.7.9/ for more details.
- the README at the samples folder: https://github.com/hypriot/flash/blob/master/sample/README.md
Beginning with HypriotOS 1.7.0 we have switched to cloud-init
- besides all that, 3 of the 5 samples contain the following comment:
The current version of cloud-init in the Hypriot rpi-64 is 0.7.9 When dealing with cloud-init, it is SUPER important to know the version I have wasted many hours creating servers to find out the module I was trying to use wasn’t in the cloud-init version I had Documentation: http://cloudinit.readthedocs.io/en/0.7.9/index.html To be honest, the “When dealing with cloud-init, it is SUPER important to know the version” comment seems very ironic to my situation.
So I start looking for places that would mention the cloud-init 18.3
:
- in the flash repo, nothing
- in the image-builder-rpi repo, nothing
- in the blog repo, there is only one mention to that version. The post https://blog.hypriot.com/post/releasing-HypriotOS-1-11/#flash-with-wi-fi-settings-for-pi-zero-pi-3-pi-4 (already cited above) links to the
18.3
documentation. All the previous posts about releases link to the0.7.9
documentation, and the 1.11 just linked to a new version, without explicitly mentioning it or what else changed. My best current guess is that this simply gets the latest in that repository, which happens to be18.3
. It was an implicit, undocumented change.
This was very confusing. I wonder whether this change from 0.7.9
to 18.3
could explain some of my problems (since I could be using the configuration for 0.7.9
and actually running on 18.3
).
At this point, I don’t know how else can I try to make my Raspberry Pi 2 Model B work with HypriotOS.
with the Raspberry Pi Zero
What could I do here? Spend several hours flashing images just to try to set the hostname? No, I skipped right to the wifi configuration.
Following the instructions on https://blog.hypriot.com/faq/#how-can-i-boot-a-raspberry-pi-zero:
flash --userdata wifi.yaml hypriotos-rpi-v1.10.0.img.zip
Using the exact config in that example (of course filling in my SSID, password, and country code), I’ve got on the boot: “Failed to start Raise network interfaces. See ‘systemctl status networking.service’ for details”.
This caused my wifi not to work.
The following image (sorry to show pictures instead of text, but it was on a Pi Zero without any network connectivity) shows the specific information about the error, which seems to relate somehow to an eth0 interface (in a Pi Zero, which shouldn’t have it in the first place).
More information about the error:
Checking my interface gets me this (notice how is an eth0
interface there, although I have no idea why):
Here another inconsistency in the doc emerges:
-
https://blog.hypriot.com/faq/#how-can-i-boot-a-raspberry-pi-zero implies that the
--userdata
is all we need to make wifi work on a Pi Zero -
https://github.com/hypriot/flash says:
The options --userdata and --bootconf must be used to disable UART and enable onboard WiFi for Raspberry Pi 3 and Pi 0. For external WiFi sticks you do not need to specify the -bootconf option.
So I understand that different that explained in the FAQ, we do actually need to pass
--bootconf
with a file containingenable_uart=0
(just like the example https://github.com/hypriot/flash/blob/master/sample/no-uart-config.txt). Besides that, I could not understand at all the relation between UART and wifi, and the linked resource (https://www.raspberrypi.org/documentation/configuration/config-txt/README.md, which links to https://www.raspberrypi.org/documentation/configuration/device-tree.md#part4.6, which links to https://www.raspberrypi.org/documentation/configuration/uart.md) does not explain it at all. So I did this blindly following orders, and not seeing any result.
Long story short, whether I configured or not the UART thing, wifi didn’t work on my Raspberry Pi Zero, with the error shown in the picture above
other observations about the docs
I’ll just list some other points where I’ve found the docs confusing.
-
https://blog.hypriot.com/getting-started-with-docker-on-your-arm-device/ links to https://blog.hypriot.com/getting-started-with-docker-and-mac-on-the-raspberry-pi/ which has a step by step on how to flash the image on a Mac Book, but does not use the flash script, which other parts of the doc, like https://blog.hypriot.com/faq/#wifi, seems to prefer.
-
the default hostname could be documented at the FAQ (I know by now it is
black-pearl
, this hostname appears in some examples, but is never stated as the default hostname). For contrast, the default credentials are very well documented at https://blog.hypriot.com/faq/#default-credentials. -
https://blog.hypriot.com/faq/#how-can-i-change-the-hostname suggests:
Just edit the /boot/user-data file with an editor before you flash the SD image.
How/where do I find this file before flashing the SD image? Once I’ve flashed the image to the SD card, then I know the file is at
/Volumes/HypriotOS/user-data
, but I don’t understand how to edit this file before even flashing it to the SD card. The only thing I can imagine is that this file is contained somehow in the imagehypriotos-rpi-v1.12.1.img
I’ve downloaded. Should I open this image to find the/boot/user-data
file in there, then edit it and then generate a new image, with this file changed? If so, any instructions on how to do it? I have the impression that the docs mean after instead of before, but this is just my guess.
About this issue
- Original URL
- State: closed
- Created 4 years ago
- Comments: 15 (4 by maintainers)
@rafaeleyng I feel you Was just about to run into the same problems… half a year later. Docs as inconsistent as ever. What you describe matches so much to what I experienced that I start to believe that that’s the destiny of the silent majority of first-time users. Well, and opening PRs… You would have to have at least some moments of success to feel motivated enough.
Hey @StefanScherer, thanks a lot for the quick response. Let’s work together and fix this 😄 .
I’ll just like to point out that, even if we manage to solve this problem, the main issue I see here is the obscurity/lack of consistency of the docs. If the docs were clearer, I might have ended with the same problem, but I sure wouldn’t have to try a hundred combinations of factors and play the guessing game. And I think my original post helps to point out several of these inconsistencies.
I’d take a step back here.
As somebody who doesn’t know about
cloud-init
(just found out that it existed 2 days ago), this is one of the most obscure parts of all of this. Which file are we even referring to?userdata
ormetadata
? What the difference between each of them? What should I put in which one of them? All of this is very implicit, especially in cloud-init doc (which does not include comprehensive documentation of both files, what are all the valid configurations, etc).No one of these menus actually explains what it is. The first menu “User-Data Formats” talks a lot about file formats, shows some Python code, I and can’t see the relationship between all of that and the
yaml
file we are talking about here.The second menu “Cloud config examples” seems better, it does look like the
yaml
we are talking about (I still don’t see the relationship of this with the User-Data Formats). And then it follows with a long list of examples that should supposedly just work, and only benefit people who already know what that actually does.I’ll not dive into the “metadata” part, whose documentation is even more obscure and confusing. But my point remains.
Let’s talk about the issue in hand now.
So, unfortunately, that was not my problem. I removed the comments in my examples shown in the original post, but in most of them (not all) I’ve actually copied examples from:
in which they all have the
#cloud-config
comment.To be 100% sure, I have just tested it again:
--userdata
(except for the password):Some pictures of what I’ve got (note that these 3 pictures are from the Raspberry Pi 2 Model B, while in my original post they were all about the Raspberry Pi Zero, I don’t have any pictures of the initial tests with the Pi 2 to compare).
Networking service:
ifconfig:
wpa supplicant:
Then I’ve retested the same configuration with the Pi Zero, and my results were the same as in the original post (including the pictures).
Update: I’ve tested on Pi Zero both with and without the
--bootconf
with theenable_uart=0
config (just to remember that the documentation about that is one of the questions I raise in my original post).@YasserAntonio has a really good point. I’ve had several problems with several applications after upgrading OS X to Catalina.