I’m trying to update so I can install docker on my droplet in order to run a backgorund proces
I get to the point where I can’t install packages because I get an error stating the mirror can’t be found.
Earlier today I tried installing zsh and gert the same response.
The droplet is running Ububtu 22.04 Failed to fetch http://mirrors.digitalocean.com/ubuntu/pool/main/u/ubuntu-advantage-tools/ubuntu-advantage-tools_28.1~22.10_amd64.deb 404 Not Found [IP: 104.21.29.13 80]
even when I run apt update I get: The repository ‘http://security.ubuntu.com/ubuntu kinetic-security Release’ no longer has a Release file.
How do I start getting packages available again?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Heya @info72233eaecf28f33c3f0393d7ab,
The error message “The repository does not have a release file” typically indicates that the repository you are trying to access does not have a version compatible with your current Ubuntu release.
In such cases, I like to do a
Alternatively, you can change the source packages to archive.
But that is a short-term solution.
You can temporarily change your mirror to the official Ubuntu mirror. To do this, create a new file in
/etc/apt/sources.list.d/
:Add the following line to use the official Ubuntu mirror:
Save the file and exit the text editor.
The package is available here:
https://old-releases.ubuntu.com/ubuntu/pool/main/u/ubuntu-advantage-tools/ubuntu-advantage-tools_28.1~22.10_amd64.deb
This should sort the error for you.
After making these changes, run
apt update
again:Hope that this helps!