the below now occurs, is this a problem on my machine or elsewhere ?
sudo apt update
Hit:1 https://download.docker.com/linux/raspbian buster InRelease
Hit:2 http://raspbian.raspberrypi.org/raspbian buster InRelease
Hit:3 http://archive.raspberrypi.org/debian buster InRelease
Err:4 https://packagecloud.io/headmelted/codebuilds/debian stretch InRelease
401 Unauthorized [IP: 54.183.38.243 443]
Hit:5 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
Reading package lists... Done
E: Failed to fetch https://packagecloud.io/headmelted/code ... /InRelease 401 Unauthorized [IP: 54.183.38.243 443]
E: The repository 'https://packagecloud.io/headmelted/codebuilds/debian stretch InRelease' is no longer signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
-
- Posts: 2
- Joined: Fri May 07, 2021 10:29 pm
Re: sudo apt update - packagecloud.io unauthorized
Not sure what you are trying to update / download from there (I assume they hosted a package you are interested in) but the whole structure for headmelted has gone.
A quick Google shows up this GitHub link and that leads to
Above maybe totally unconnected though.
A quick Google shows up this GitHub link and that leads to
From the readme.I am no longer able to actively maintain this repository.
Above maybe totally unconnected though.
Re: sudo apt update - packagecloud.io unauthorized
Remove that packagecloud entry from either your /etc/apt/sources.list file, or one of the files in /etc/apt/sources.list.d/ , then run apt update again.
Unreadable squiggle
Re: sudo apt update - packagecloud.io unauthorized
It's the repo for headmelted's vscode builds. IIRC it's headmelted.list in /etc/apt/sources.list.d
vscode builds are now available from the RPF repo.
-
- Posts: 2
- Joined: Fri May 07, 2021 10:29 pm
Re: sudo apt update - packagecloud.io unauthorized
solved, thanks
Re: sudo apt update - packagecloud.io unauthorized
Very new to this and having the same problem, how was the issue solved?
Re: sudo apt update - packagecloud.io unauthorized
This also solved my issue. I'm kind of new to this too, but I can explain what I did.
Using the terminal I checked to see what was in the directory mentioned by rpdom
I did this with the terminal 'display contents of directory' command ls
This showed that I did have a headmelted.list file in the directory.
I deleted it from the directory using the 'remove' command with the 'prompt before deleting each file' flag rm -i just to be safe.
I then was able to update everything with like I wanted to before.
Using the terminal I checked to see what was in the directory mentioned by rpdom
I did this with the terminal 'display contents of directory' command ls
Code: Select all
ls /etc/apt/sources.list.d/
I deleted it from the directory using the 'remove' command with the 'prompt before deleting each file' flag rm -i just to be safe.
Code: Select all
sudo rm -i /etc/apt/sources.list.d/headmelted.list
Code: Select all
sudo apt update