hi,
before I was talking about the pi and pi noir camera problem and I was told to do sudo apt-get update and upgrade which I found out later meant I couldnt use the hat because the software used to detect it (or firmware, etc) wasnt there, so I was told to do these commands wget https://www.raspberrypi.org/files/astro ... all.tar.gz
sudo tar -C / -xvpf kinstall.tar.gz <----------- the second command didnt work, it couldnt find the file I think, (if you want to see the error message its on the post with the cameras.
sudo reboot
- Davespice
- Forum Moderator
- Posts: 1665
- Joined: Fri Oct 14, 2011 8:06 pm
- Location: The Netherlands
- Contact: Twitter
Re: astro pi board not detected anymore..
It might be that your system clock was wrong and that made the https connection fail, if you use --no-check-certificate that makes it skip that check.
Code: Select all
wget https://www.raspberrypi.org/files/astro-pi/kinstall.tar.gz --no-check-certificate
sudo tar -C / -xvpf kinstall.tar.gz
sudo reboot
Re: astro pi board not detected anymore..
Ah, it works now, thanks!