Anano
Anano

Reputation: 21

Raspberry pi ca-certificates issue wget

I want to make sudo rpi-update command (firmware updater). I tried many ways , time is set correctly and have install ca-certificates, but I still have following error !!! Failed to download update for rpi-update !!! Make sure you have ca-certificates installed and that the time is set corrctly

Upvotes: 1

Views: 9226

Answers (2)

Justin Lee
Justin Lee

Reputation: 890

simply add 199.232.28.133 raw.githubusercontent.com to /etc/hosts

Upvotes: 2

steeltoe
steeltoe

Reputation: 41

I tried every proposed solution. None of them worked except for purge.

sudo apt-get purge ca-certificates
sudo apt-get install ca-certificates

I ended up running

sudo autoremove

which removed a bunch of old packages that weren't previously marked for removal.

sudo rpi-update

Update then worked. I'm not sure if this is a correct or elegant solution but it was the only action that worked. This post may be old but hope that it will help someone since I have had this issue recently and for a long time.

Upvotes: 4

Related Questions