What can I do if a repository/PPA I added does not have a Release file?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
When updating I get the error
W: The repository 'http://ppa.launchpad.net/mc3man/trusty-media/ubuntu xenial Release' does not have a Release file.
Here I find another statement on this error: How can I fix a 404 Error when using a PPA or updating my package lists?
But this recommends removing certain ppas and I'm not sure if I should do that since it might mean not getting the updates I need. Is this what I should do?
apt package-management updates ppa
add a comment |
When updating I get the error
W: The repository 'http://ppa.launchpad.net/mc3man/trusty-media/ubuntu xenial Release' does not have a Release file.
Here I find another statement on this error: How can I fix a 404 Error when using a PPA or updating my package lists?
But this recommends removing certain ppas and I'm not sure if I should do that since it might mean not getting the updates I need. Is this what I should do?
apt package-management updates ppa
xenial is probably no longer supported should upgrade. You should change all repositories to use old-release.ubuntu.com instead, and then dosudo do-releases-upgrade
to get an supported release of Ubuntu. help.ubuntu.com/community/EOLUpgrades Oh, it was an old PPA. I just had this problem myself, and it was solved by this trick. I came here first when I did a search.
– Anders
Jan 26 '18 at 4:58
@Anders as of this date Xenial is still supported with maintenance updates. When in doubt you can check the release schedule
– Elder Geek
Feb 19 at 16:03
add a comment |
When updating I get the error
W: The repository 'http://ppa.launchpad.net/mc3man/trusty-media/ubuntu xenial Release' does not have a Release file.
Here I find another statement on this error: How can I fix a 404 Error when using a PPA or updating my package lists?
But this recommends removing certain ppas and I'm not sure if I should do that since it might mean not getting the updates I need. Is this what I should do?
apt package-management updates ppa
When updating I get the error
W: The repository 'http://ppa.launchpad.net/mc3man/trusty-media/ubuntu xenial Release' does not have a Release file.
Here I find another statement on this error: How can I fix a 404 Error when using a PPA or updating my package lists?
But this recommends removing certain ppas and I'm not sure if I should do that since it might mean not getting the updates I need. Is this what I should do?
apt package-management updates ppa
apt package-management updates ppa
edited Nov 24 '18 at 2:50
muru
1
1
asked Jan 1 '17 at 22:44
AddemAddem
3182512
3182512
xenial is probably no longer supported should upgrade. You should change all repositories to use old-release.ubuntu.com instead, and then dosudo do-releases-upgrade
to get an supported release of Ubuntu. help.ubuntu.com/community/EOLUpgrades Oh, it was an old PPA. I just had this problem myself, and it was solved by this trick. I came here first when I did a search.
– Anders
Jan 26 '18 at 4:58
@Anders as of this date Xenial is still supported with maintenance updates. When in doubt you can check the release schedule
– Elder Geek
Feb 19 at 16:03
add a comment |
xenial is probably no longer supported should upgrade. You should change all repositories to use old-release.ubuntu.com instead, and then dosudo do-releases-upgrade
to get an supported release of Ubuntu. help.ubuntu.com/community/EOLUpgrades Oh, it was an old PPA. I just had this problem myself, and it was solved by this trick. I came here first when I did a search.
– Anders
Jan 26 '18 at 4:58
@Anders as of this date Xenial is still supported with maintenance updates. When in doubt you can check the release schedule
– Elder Geek
Feb 19 at 16:03
xenial is probably no longer supported should upgrade. You should change all repositories to use old-release.ubuntu.com instead, and then do
sudo do-releases-upgrade
to get an supported release of Ubuntu. help.ubuntu.com/community/EOLUpgrades Oh, it was an old PPA. I just had this problem myself, and it was solved by this trick. I came here first when I did a search.– Anders
Jan 26 '18 at 4:58
xenial is probably no longer supported should upgrade. You should change all repositories to use old-release.ubuntu.com instead, and then do
sudo do-releases-upgrade
to get an supported release of Ubuntu. help.ubuntu.com/community/EOLUpgrades Oh, it was an old PPA. I just had this problem myself, and it was solved by this trick. I came here first when I did a search.– Anders
Jan 26 '18 at 4:58
@Anders as of this date Xenial is still supported with maintenance updates. When in doubt you can check the release schedule
– Elder Geek
Feb 19 at 16:03
@Anders as of this date Xenial is still supported with maintenance updates. When in doubt you can check the release schedule
– Elder Geek
Feb 19 at 16:03
add a comment |
4 Answers
4
active
oldest
votes
The PPA you've added does not support your version of Ubuntu. For example, the ppa:mc3man/trusty-media
PPA is only for Trusty (Ubuntu 14.04) only (trusty-media). Obviously, it has no files for Xenial (16.04). You can check the PPA's Launchpad page to see which versions of Ubuntu are supported.
I'd suggest the following:
Remove the PPA for older releases. For this example:
sudo ppa-purge ppa:mc3man/trusty-media
- You can also try tricking apt to use the older release (How can I add a PPA from a previous release?), but that may not always work and can break things in unpredictable ways.
If there's a PPA for your version, add it. In this case, there's a PPA for Xenial: mc3man/xerus-media. You can add it using
sudo add-apt-repository ppa:mc3man/xerus-media
11
So first thing: I didn't haveppa-purge
so as a note if anyone in the future reads this answer: You may first need to get it by runningsudo apt-get install ppa-purge
.
– Addem
Jan 1 '17 at 23:02
6
Second, I tried the first bullet point and I got the warningWarning: apt-get update failed for some reason
after some other error messages that usually come withsudo apt-get update
.
– Addem
Jan 1 '17 at 23:03
2
Also after doing the second bullet point and then runningsudo apt-get update
I get the usual error messages. I'm guessing at this point I should disable the associated Trust Media thing.
– Addem
Jan 1 '17 at 23:05
3
Yep, after un-checking some check boxes for Trusty Media and mc3man under System Settings > Software and Updates > Other software, then I ran update again and get no error messages. I have about 90% confidence I didn't remove anything that I need.
– Addem
Jan 1 '17 at 23:09
5
If you don't haveppa-purge
just usesudo add-apt-repository -r ppa:…
instead.
– dessert
Oct 1 '17 at 21:29
|
show 1 more comment
Yes, unchecking some tick boxes for Trusty Media and mc3man under
System Settings > Software and Updates > Other Software
did the trick. ppa-purge
didn't work for me.
What to do if this is used on a server?
– Brainmaniac
Dec 5 '18 at 10:36
add a comment |
From my personal experience I can recommend to directly contact the PPA owner (if we talk about PPA) to kindly ask him/her to prepare packages for needed (usually newer, so supported release) with steps below:
- Temporarily disable the PPA in your system (see other answer).
- Visit PPA page on https://launchpad.net and login to it.
- Determine the uploader's name in Uploaded by column, click on the name's hyperlink
Then click on Contact this user
And fill the form with all necessary information:
From: your e-mail will be shown in plain here
Subject: Packaging of AppName for Ubuntu NN.MM release
Message:
Dear PPA owner!
Thank you for your work on the AppName.
It would be great if you create the package for it for Ubuntu NN.MM release.
With best regards,
user.
Wait for an e-mail from PPA owner.
- Add PPA again to the system when package get published.
- Enjoy!
add a comment |
Before you try anything else make sure you have network access from your server to the internet. Otherwise you will get this error too.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f866901%2fwhat-can-i-do-if-a-repository-ppa-i-added-does-not-have-a-release-file%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
The PPA you've added does not support your version of Ubuntu. For example, the ppa:mc3man/trusty-media
PPA is only for Trusty (Ubuntu 14.04) only (trusty-media). Obviously, it has no files for Xenial (16.04). You can check the PPA's Launchpad page to see which versions of Ubuntu are supported.
I'd suggest the following:
Remove the PPA for older releases. For this example:
sudo ppa-purge ppa:mc3man/trusty-media
- You can also try tricking apt to use the older release (How can I add a PPA from a previous release?), but that may not always work and can break things in unpredictable ways.
If there's a PPA for your version, add it. In this case, there's a PPA for Xenial: mc3man/xerus-media. You can add it using
sudo add-apt-repository ppa:mc3man/xerus-media
11
So first thing: I didn't haveppa-purge
so as a note if anyone in the future reads this answer: You may first need to get it by runningsudo apt-get install ppa-purge
.
– Addem
Jan 1 '17 at 23:02
6
Second, I tried the first bullet point and I got the warningWarning: apt-get update failed for some reason
after some other error messages that usually come withsudo apt-get update
.
– Addem
Jan 1 '17 at 23:03
2
Also after doing the second bullet point and then runningsudo apt-get update
I get the usual error messages. I'm guessing at this point I should disable the associated Trust Media thing.
– Addem
Jan 1 '17 at 23:05
3
Yep, after un-checking some check boxes for Trusty Media and mc3man under System Settings > Software and Updates > Other software, then I ran update again and get no error messages. I have about 90% confidence I didn't remove anything that I need.
– Addem
Jan 1 '17 at 23:09
5
If you don't haveppa-purge
just usesudo add-apt-repository -r ppa:…
instead.
– dessert
Oct 1 '17 at 21:29
|
show 1 more comment
The PPA you've added does not support your version of Ubuntu. For example, the ppa:mc3man/trusty-media
PPA is only for Trusty (Ubuntu 14.04) only (trusty-media). Obviously, it has no files for Xenial (16.04). You can check the PPA's Launchpad page to see which versions of Ubuntu are supported.
I'd suggest the following:
Remove the PPA for older releases. For this example:
sudo ppa-purge ppa:mc3man/trusty-media
- You can also try tricking apt to use the older release (How can I add a PPA from a previous release?), but that may not always work and can break things in unpredictable ways.
If there's a PPA for your version, add it. In this case, there's a PPA for Xenial: mc3man/xerus-media. You can add it using
sudo add-apt-repository ppa:mc3man/xerus-media
11
So first thing: I didn't haveppa-purge
so as a note if anyone in the future reads this answer: You may first need to get it by runningsudo apt-get install ppa-purge
.
– Addem
Jan 1 '17 at 23:02
6
Second, I tried the first bullet point and I got the warningWarning: apt-get update failed for some reason
after some other error messages that usually come withsudo apt-get update
.
– Addem
Jan 1 '17 at 23:03
2
Also after doing the second bullet point and then runningsudo apt-get update
I get the usual error messages. I'm guessing at this point I should disable the associated Trust Media thing.
– Addem
Jan 1 '17 at 23:05
3
Yep, after un-checking some check boxes for Trusty Media and mc3man under System Settings > Software and Updates > Other software, then I ran update again and get no error messages. I have about 90% confidence I didn't remove anything that I need.
– Addem
Jan 1 '17 at 23:09
5
If you don't haveppa-purge
just usesudo add-apt-repository -r ppa:…
instead.
– dessert
Oct 1 '17 at 21:29
|
show 1 more comment
The PPA you've added does not support your version of Ubuntu. For example, the ppa:mc3man/trusty-media
PPA is only for Trusty (Ubuntu 14.04) only (trusty-media). Obviously, it has no files for Xenial (16.04). You can check the PPA's Launchpad page to see which versions of Ubuntu are supported.
I'd suggest the following:
Remove the PPA for older releases. For this example:
sudo ppa-purge ppa:mc3man/trusty-media
- You can also try tricking apt to use the older release (How can I add a PPA from a previous release?), but that may not always work and can break things in unpredictable ways.
If there's a PPA for your version, add it. In this case, there's a PPA for Xenial: mc3man/xerus-media. You can add it using
sudo add-apt-repository ppa:mc3man/xerus-media
The PPA you've added does not support your version of Ubuntu. For example, the ppa:mc3man/trusty-media
PPA is only for Trusty (Ubuntu 14.04) only (trusty-media). Obviously, it has no files for Xenial (16.04). You can check the PPA's Launchpad page to see which versions of Ubuntu are supported.
I'd suggest the following:
Remove the PPA for older releases. For this example:
sudo ppa-purge ppa:mc3man/trusty-media
- You can also try tricking apt to use the older release (How can I add a PPA from a previous release?), but that may not always work and can break things in unpredictable ways.
If there's a PPA for your version, add it. In this case, there's a PPA for Xenial: mc3man/xerus-media. You can add it using
sudo add-apt-repository ppa:mc3man/xerus-media
edited Feb 10 at 17:10
wjandrea
9,57142765
9,57142765
answered Jan 1 '17 at 22:58
mikewhatevermikewhatever
24.4k77085
24.4k77085
11
So first thing: I didn't haveppa-purge
so as a note if anyone in the future reads this answer: You may first need to get it by runningsudo apt-get install ppa-purge
.
– Addem
Jan 1 '17 at 23:02
6
Second, I tried the first bullet point and I got the warningWarning: apt-get update failed for some reason
after some other error messages that usually come withsudo apt-get update
.
– Addem
Jan 1 '17 at 23:03
2
Also after doing the second bullet point and then runningsudo apt-get update
I get the usual error messages. I'm guessing at this point I should disable the associated Trust Media thing.
– Addem
Jan 1 '17 at 23:05
3
Yep, after un-checking some check boxes for Trusty Media and mc3man under System Settings > Software and Updates > Other software, then I ran update again and get no error messages. I have about 90% confidence I didn't remove anything that I need.
– Addem
Jan 1 '17 at 23:09
5
If you don't haveppa-purge
just usesudo add-apt-repository -r ppa:…
instead.
– dessert
Oct 1 '17 at 21:29
|
show 1 more comment
11
So first thing: I didn't haveppa-purge
so as a note if anyone in the future reads this answer: You may first need to get it by runningsudo apt-get install ppa-purge
.
– Addem
Jan 1 '17 at 23:02
6
Second, I tried the first bullet point and I got the warningWarning: apt-get update failed for some reason
after some other error messages that usually come withsudo apt-get update
.
– Addem
Jan 1 '17 at 23:03
2
Also after doing the second bullet point and then runningsudo apt-get update
I get the usual error messages. I'm guessing at this point I should disable the associated Trust Media thing.
– Addem
Jan 1 '17 at 23:05
3
Yep, after un-checking some check boxes for Trusty Media and mc3man under System Settings > Software and Updates > Other software, then I ran update again and get no error messages. I have about 90% confidence I didn't remove anything that I need.
– Addem
Jan 1 '17 at 23:09
5
If you don't haveppa-purge
just usesudo add-apt-repository -r ppa:…
instead.
– dessert
Oct 1 '17 at 21:29
11
11
So first thing: I didn't have
ppa-purge
so as a note if anyone in the future reads this answer: You may first need to get it by running sudo apt-get install ppa-purge
.– Addem
Jan 1 '17 at 23:02
So first thing: I didn't have
ppa-purge
so as a note if anyone in the future reads this answer: You may first need to get it by running sudo apt-get install ppa-purge
.– Addem
Jan 1 '17 at 23:02
6
6
Second, I tried the first bullet point and I got the warning
Warning: apt-get update failed for some reason
after some other error messages that usually come with sudo apt-get update
.– Addem
Jan 1 '17 at 23:03
Second, I tried the first bullet point and I got the warning
Warning: apt-get update failed for some reason
after some other error messages that usually come with sudo apt-get update
.– Addem
Jan 1 '17 at 23:03
2
2
Also after doing the second bullet point and then running
sudo apt-get update
I get the usual error messages. I'm guessing at this point I should disable the associated Trust Media thing.– Addem
Jan 1 '17 at 23:05
Also after doing the second bullet point and then running
sudo apt-get update
I get the usual error messages. I'm guessing at this point I should disable the associated Trust Media thing.– Addem
Jan 1 '17 at 23:05
3
3
Yep, after un-checking some check boxes for Trusty Media and mc3man under System Settings > Software and Updates > Other software, then I ran update again and get no error messages. I have about 90% confidence I didn't remove anything that I need.
– Addem
Jan 1 '17 at 23:09
Yep, after un-checking some check boxes for Trusty Media and mc3man under System Settings > Software and Updates > Other software, then I ran update again and get no error messages. I have about 90% confidence I didn't remove anything that I need.
– Addem
Jan 1 '17 at 23:09
5
5
If you don't have
ppa-purge
just use sudo add-apt-repository -r ppa:…
instead.– dessert
Oct 1 '17 at 21:29
If you don't have
ppa-purge
just use sudo add-apt-repository -r ppa:…
instead.– dessert
Oct 1 '17 at 21:29
|
show 1 more comment
Yes, unchecking some tick boxes for Trusty Media and mc3man under
System Settings > Software and Updates > Other Software
did the trick. ppa-purge
didn't work for me.
What to do if this is used on a server?
– Brainmaniac
Dec 5 '18 at 10:36
add a comment |
Yes, unchecking some tick boxes for Trusty Media and mc3man under
System Settings > Software and Updates > Other Software
did the trick. ppa-purge
didn't work for me.
What to do if this is used on a server?
– Brainmaniac
Dec 5 '18 at 10:36
add a comment |
Yes, unchecking some tick boxes for Trusty Media and mc3man under
System Settings > Software and Updates > Other Software
did the trick. ppa-purge
didn't work for me.
Yes, unchecking some tick boxes for Trusty Media and mc3man under
System Settings > Software and Updates > Other Software
did the trick. ppa-purge
didn't work for me.
edited Oct 26 '18 at 15:52
Owen Hines
2,43911034
2,43911034
answered Oct 26 '18 at 13:59
LorzanLorzan
411
411
What to do if this is used on a server?
– Brainmaniac
Dec 5 '18 at 10:36
add a comment |
What to do if this is used on a server?
– Brainmaniac
Dec 5 '18 at 10:36
What to do if this is used on a server?
– Brainmaniac
Dec 5 '18 at 10:36
What to do if this is used on a server?
– Brainmaniac
Dec 5 '18 at 10:36
add a comment |
From my personal experience I can recommend to directly contact the PPA owner (if we talk about PPA) to kindly ask him/her to prepare packages for needed (usually newer, so supported release) with steps below:
- Temporarily disable the PPA in your system (see other answer).
- Visit PPA page on https://launchpad.net and login to it.
- Determine the uploader's name in Uploaded by column, click on the name's hyperlink
Then click on Contact this user
And fill the form with all necessary information:
From: your e-mail will be shown in plain here
Subject: Packaging of AppName for Ubuntu NN.MM release
Message:
Dear PPA owner!
Thank you for your work on the AppName.
It would be great if you create the package for it for Ubuntu NN.MM release.
With best regards,
user.
Wait for an e-mail from PPA owner.
- Add PPA again to the system when package get published.
- Enjoy!
add a comment |
From my personal experience I can recommend to directly contact the PPA owner (if we talk about PPA) to kindly ask him/her to prepare packages for needed (usually newer, so supported release) with steps below:
- Temporarily disable the PPA in your system (see other answer).
- Visit PPA page on https://launchpad.net and login to it.
- Determine the uploader's name in Uploaded by column, click on the name's hyperlink
Then click on Contact this user
And fill the form with all necessary information:
From: your e-mail will be shown in plain here
Subject: Packaging of AppName for Ubuntu NN.MM release
Message:
Dear PPA owner!
Thank you for your work on the AppName.
It would be great if you create the package for it for Ubuntu NN.MM release.
With best regards,
user.
Wait for an e-mail from PPA owner.
- Add PPA again to the system when package get published.
- Enjoy!
add a comment |
From my personal experience I can recommend to directly contact the PPA owner (if we talk about PPA) to kindly ask him/her to prepare packages for needed (usually newer, so supported release) with steps below:
- Temporarily disable the PPA in your system (see other answer).
- Visit PPA page on https://launchpad.net and login to it.
- Determine the uploader's name in Uploaded by column, click on the name's hyperlink
Then click on Contact this user
And fill the form with all necessary information:
From: your e-mail will be shown in plain here
Subject: Packaging of AppName for Ubuntu NN.MM release
Message:
Dear PPA owner!
Thank you for your work on the AppName.
It would be great if you create the package for it for Ubuntu NN.MM release.
With best regards,
user.
Wait for an e-mail from PPA owner.
- Add PPA again to the system when package get published.
- Enjoy!
From my personal experience I can recommend to directly contact the PPA owner (if we talk about PPA) to kindly ask him/her to prepare packages for needed (usually newer, so supported release) with steps below:
- Temporarily disable the PPA in your system (see other answer).
- Visit PPA page on https://launchpad.net and login to it.
- Determine the uploader's name in Uploaded by column, click on the name's hyperlink
Then click on Contact this user
And fill the form with all necessary information:
From: your e-mail will be shown in plain here
Subject: Packaging of AppName for Ubuntu NN.MM release
Message:
Dear PPA owner!
Thank you for your work on the AppName.
It would be great if you create the package for it for Ubuntu NN.MM release.
With best regards,
user.
Wait for an e-mail from PPA owner.
- Add PPA again to the system when package get published.
- Enjoy!
edited Jan 23 at 21:24
answered Jan 18 at 22:01
N0rbertN0rbert
25.5k854122
25.5k854122
add a comment |
add a comment |
Before you try anything else make sure you have network access from your server to the internet. Otherwise you will get this error too.
add a comment |
Before you try anything else make sure you have network access from your server to the internet. Otherwise you will get this error too.
add a comment |
Before you try anything else make sure you have network access from your server to the internet. Otherwise you will get this error too.
Before you try anything else make sure you have network access from your server to the internet. Otherwise you will get this error too.
answered May 15 '18 at 13:25
user92240user92240
1293
1293
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f866901%2fwhat-can-i-do-if-a-repository-ppa-i-added-does-not-have-a-release-file%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
xenial is probably no longer supported should upgrade. You should change all repositories to use old-release.ubuntu.com instead, and then do
sudo do-releases-upgrade
to get an supported release of Ubuntu. help.ubuntu.com/community/EOLUpgrades Oh, it was an old PPA. I just had this problem myself, and it was solved by this trick. I came here first when I did a search.– Anders
Jan 26 '18 at 4:58
@Anders as of this date Xenial is still supported with maintenance updates. When in doubt you can check the release schedule
– Elder Geek
Feb 19 at 16:03