zip with image have crc error,can you test it??
--
You received this message because you are subscribed to the Google Groups "ClusterHAT" group.
To unsubscribe from this group and stop receiving emails from it, send an email to clusterhat+unsubscribe@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/clusterhat/4de9d880-9e2a-404e-8765-00023dcc4a84%40googlegroups.com.
I had partial success last week with previous image.Pi1 and Pi4 booted OK the first time. Pi2 and Pi3 never showed up.Even if not fully working, it is really impressive to see.At second attempt, only Pi1 (or 4) showed up, or nothing.I tried turning them on one by one, and all simultaneously.I used the screen command to try to see what was going on.
I was a bit unsure how it was supposed to work.
I tried to shuffle the PiZero, tried with W and non W version (by the way, is it suppose to work with Pi 1.2?).I did not knew if it was a connection issue, a problem with my Pi.
Thank you Chris,
Now it is working fine for me.
ssh-keygen -t rsa -N '' -f /home/pi/.ssh/id_rsa
mkdir -p /var/lib/clusterhat/nfs/p{1,2,3,4}/home/pi/.ssh/
cat /home/pi/.ssh/id_rsa.pub >> /var/lib/clusterhat/nfs/p1/home/pi/.ssh/authorized_keys
cat /home/pi/.ssh/id_rsa.pub >> /var/lib/clusterhat/nfs/p2/home/pi/.ssh/authorized_keys
cat /home/pi/.ssh/id_rsa.pub >> /var/lib/clusterhat/nfs/p3/home/pi/.ssh/authorized_keys
cat /home/pi/.ssh/id_rsa.pub >> /var/lib/clusterhat/nfs/p4/home/pi/.ssh/authorized_keys
Once that is done, you want to manually ssh to be able to accept the ECDSA key in the list of known hosts:
ssh p...@p1.local
ssh p...@p2.local
ssh p...@p3.local
ssh p...@p4.local
(That is not visible on the video, as it must have been done before)
To shutdown all the Zero, I used this (modified from your command to launch the Blinkt! example):
for I in 1 2 3 4 ; do echo $I;(ssh pi@p$I.local "sudo shutdown now -h &"&) ;done
Also because I killed the rpiboot by mistake (here is the line used in /etc/rc.local that start the screen):
/usr/bin/screen -S rpiboot -d -m /var/lib/clusterhat/usbboot/rpiboot -d /var/lib/clusterhat/boot/ -o -l -v
Now the ClusterHat take all it's value, without having to dedicate one microSD per PiZero.
David Glaude
--
You received this message because you are subscribed to the Google Groups "ClusterHAT" group.
To unsubscribe from this group and stop receiving emails from it, send an email to clusterhat+unsubscribe@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/clusterhat/8c1debe9-1144-4f13-add3-9fb83092c123%40googlegroups.com.