remove packages with error on apt-get update
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I am very new to linux. I tried to install sopcast on it but it failed and then I installed it on wine. But now every time i run the sudo apt-get update
it is taking very long trying to install(?) the sopcast package and fails every time. How can i completely stop ubuntu from trying to install this package?
Here is whats going on in the terminal when i run sudo apt-get update
.
A lot of Ign: lines, like
Ign:24 http://ppa.launchpad.net/ferramroberto/sopcast/ubuntu xenial/main i386 Packages
and it ends with
W: The repository 'http//ppa.launchpad.net/ferramroberto/sopcast/ubuntu xenial Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: http//ppa.launchpad.net/lyc256/sopcast-player/ubuntu/dists/vivid/Release.gpg: Signature by key 732241F9E505AA9CBC15CC719A2E47237733638E uses weak digest algorithm (SHA1)
E: Failed to fetch http//ppa.launchpad.net/ferramroberto/sopcast/ubuntu/dists/xenial/main/binary-amd64/Packages 404 Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
I am not having any big issues with this, its just that every time i run the update command i need to wait for 4-5 minutes. Is there any file I need to edit to stop it from trying to install the sopcast package?
I tried sudo apt-get --purge remove sopcast*
but this did not change anything
apt package-management updates ppa update-manager
add a comment |
I am very new to linux. I tried to install sopcast on it but it failed and then I installed it on wine. But now every time i run the sudo apt-get update
it is taking very long trying to install(?) the sopcast package and fails every time. How can i completely stop ubuntu from trying to install this package?
Here is whats going on in the terminal when i run sudo apt-get update
.
A lot of Ign: lines, like
Ign:24 http://ppa.launchpad.net/ferramroberto/sopcast/ubuntu xenial/main i386 Packages
and it ends with
W: The repository 'http//ppa.launchpad.net/ferramroberto/sopcast/ubuntu xenial Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: http//ppa.launchpad.net/lyc256/sopcast-player/ubuntu/dists/vivid/Release.gpg: Signature by key 732241F9E505AA9CBC15CC719A2E47237733638E uses weak digest algorithm (SHA1)
E: Failed to fetch http//ppa.launchpad.net/ferramroberto/sopcast/ubuntu/dists/xenial/main/binary-amd64/Packages 404 Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
I am not having any big issues with this, its just that every time i run the update command i need to wait for 4-5 minutes. Is there any file I need to edit to stop it from trying to install the sopcast package?
I tried sudo apt-get --purge remove sopcast*
but this did not change anything
apt package-management updates ppa update-manager
add a comment |
I am very new to linux. I tried to install sopcast on it but it failed and then I installed it on wine. But now every time i run the sudo apt-get update
it is taking very long trying to install(?) the sopcast package and fails every time. How can i completely stop ubuntu from trying to install this package?
Here is whats going on in the terminal when i run sudo apt-get update
.
A lot of Ign: lines, like
Ign:24 http://ppa.launchpad.net/ferramroberto/sopcast/ubuntu xenial/main i386 Packages
and it ends with
W: The repository 'http//ppa.launchpad.net/ferramroberto/sopcast/ubuntu xenial Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: http//ppa.launchpad.net/lyc256/sopcast-player/ubuntu/dists/vivid/Release.gpg: Signature by key 732241F9E505AA9CBC15CC719A2E47237733638E uses weak digest algorithm (SHA1)
E: Failed to fetch http//ppa.launchpad.net/ferramroberto/sopcast/ubuntu/dists/xenial/main/binary-amd64/Packages 404 Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
I am not having any big issues with this, its just that every time i run the update command i need to wait for 4-5 minutes. Is there any file I need to edit to stop it from trying to install the sopcast package?
I tried sudo apt-get --purge remove sopcast*
but this did not change anything
apt package-management updates ppa update-manager
I am very new to linux. I tried to install sopcast on it but it failed and then I installed it on wine. But now every time i run the sudo apt-get update
it is taking very long trying to install(?) the sopcast package and fails every time. How can i completely stop ubuntu from trying to install this package?
Here is whats going on in the terminal when i run sudo apt-get update
.
A lot of Ign: lines, like
Ign:24 http://ppa.launchpad.net/ferramroberto/sopcast/ubuntu xenial/main i386 Packages
and it ends with
W: The repository 'http//ppa.launchpad.net/ferramroberto/sopcast/ubuntu xenial Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: http//ppa.launchpad.net/lyc256/sopcast-player/ubuntu/dists/vivid/Release.gpg: Signature by key 732241F9E505AA9CBC15CC719A2E47237733638E uses weak digest algorithm (SHA1)
E: Failed to fetch http//ppa.launchpad.net/ferramroberto/sopcast/ubuntu/dists/xenial/main/binary-amd64/Packages 404 Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
I am not having any big issues with this, its just that every time i run the update command i need to wait for 4-5 minutes. Is there any file I need to edit to stop it from trying to install the sopcast package?
I tried sudo apt-get --purge remove sopcast*
but this did not change anything
apt package-management updates ppa update-manager
apt package-management updates ppa update-manager
edited Jul 3 '17 at 7:21
muru
1
1
asked Aug 11 '16 at 0:40
Nodir RashidovNodir Rashidov
10316
10316
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Don't confuse update with upgrade in Ubuntu... they sound the same but they're very different. sudo apt-get update
does not "install" anything, ever. It simply updates your computer with the source information so that when you sudo apt-get install <something>
you will upgrade or install the latest version (assuming you do sudo apt-get install
right after doing sudo apt-get update
).
You might want the PPA again later on (for example if you want to update packages related to sopcast), so just comment out the line rather than removing it in your /etc/apt/sources.list file. It should be near the bottom of the file. You'll need sudo privileges to modify it, so open it in whichever text editor you're most comfortable in.
sudo gedit /etc/apt/sources.list
or
sudo nano /etc/apt/sources.list
or
sudo vi /etc/apt/sources.list
Edit: I just checked and looks like that site doesn't even have code for xenial (16.04). http://ppa.launchpad.net/ferramroberto/sopcast/ubuntu/dists/ The latest is for quantal (12.10). Given this, it's probably best to remove the line entirely rather than commenting out.
add a comment |
I've scoured forums for a resolution to this. I had purged, removed, uninstalled, and scraped my system for hours until I finally found it with a simple grep command >.<
The error that prompted my search:
W: GPG error: https://dl.winehq.org/wine-builds/ubuntu bionic InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 76F1A20FF987672F
E: The repository 'https://dl.winehq.org/wine-builds/ubuntu bionic InRelease' is not 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
As a newbie it took me a while to figure out a simple grep search:
/etc/apt$ grep -ir "wine"
which output:
sources.list.d/additional-repositories.list:deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main
So, after all the hunting and scraping all I had to do was:
sudo nano /etc/apt/sources.list.d/additional-repositories.list
... and add a "#" at the beginning of the only line in the file (I suppose I could've deleted it entirely) to comment out the "dl.winehq..." from trying to update when I run sudo apt-get update
Hope that helps!
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%2f810771%2fremove-packages-with-error-on-apt-get-update%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Don't confuse update with upgrade in Ubuntu... they sound the same but they're very different. sudo apt-get update
does not "install" anything, ever. It simply updates your computer with the source information so that when you sudo apt-get install <something>
you will upgrade or install the latest version (assuming you do sudo apt-get install
right after doing sudo apt-get update
).
You might want the PPA again later on (for example if you want to update packages related to sopcast), so just comment out the line rather than removing it in your /etc/apt/sources.list file. It should be near the bottom of the file. You'll need sudo privileges to modify it, so open it in whichever text editor you're most comfortable in.
sudo gedit /etc/apt/sources.list
or
sudo nano /etc/apt/sources.list
or
sudo vi /etc/apt/sources.list
Edit: I just checked and looks like that site doesn't even have code for xenial (16.04). http://ppa.launchpad.net/ferramroberto/sopcast/ubuntu/dists/ The latest is for quantal (12.10). Given this, it's probably best to remove the line entirely rather than commenting out.
add a comment |
Don't confuse update with upgrade in Ubuntu... they sound the same but they're very different. sudo apt-get update
does not "install" anything, ever. It simply updates your computer with the source information so that when you sudo apt-get install <something>
you will upgrade or install the latest version (assuming you do sudo apt-get install
right after doing sudo apt-get update
).
You might want the PPA again later on (for example if you want to update packages related to sopcast), so just comment out the line rather than removing it in your /etc/apt/sources.list file. It should be near the bottom of the file. You'll need sudo privileges to modify it, so open it in whichever text editor you're most comfortable in.
sudo gedit /etc/apt/sources.list
or
sudo nano /etc/apt/sources.list
or
sudo vi /etc/apt/sources.list
Edit: I just checked and looks like that site doesn't even have code for xenial (16.04). http://ppa.launchpad.net/ferramroberto/sopcast/ubuntu/dists/ The latest is for quantal (12.10). Given this, it's probably best to remove the line entirely rather than commenting out.
add a comment |
Don't confuse update with upgrade in Ubuntu... they sound the same but they're very different. sudo apt-get update
does not "install" anything, ever. It simply updates your computer with the source information so that when you sudo apt-get install <something>
you will upgrade or install the latest version (assuming you do sudo apt-get install
right after doing sudo apt-get update
).
You might want the PPA again later on (for example if you want to update packages related to sopcast), so just comment out the line rather than removing it in your /etc/apt/sources.list file. It should be near the bottom of the file. You'll need sudo privileges to modify it, so open it in whichever text editor you're most comfortable in.
sudo gedit /etc/apt/sources.list
or
sudo nano /etc/apt/sources.list
or
sudo vi /etc/apt/sources.list
Edit: I just checked and looks like that site doesn't even have code for xenial (16.04). http://ppa.launchpad.net/ferramroberto/sopcast/ubuntu/dists/ The latest is for quantal (12.10). Given this, it's probably best to remove the line entirely rather than commenting out.
Don't confuse update with upgrade in Ubuntu... they sound the same but they're very different. sudo apt-get update
does not "install" anything, ever. It simply updates your computer with the source information so that when you sudo apt-get install <something>
you will upgrade or install the latest version (assuming you do sudo apt-get install
right after doing sudo apt-get update
).
You might want the PPA again later on (for example if you want to update packages related to sopcast), so just comment out the line rather than removing it in your /etc/apt/sources.list file. It should be near the bottom of the file. You'll need sudo privileges to modify it, so open it in whichever text editor you're most comfortable in.
sudo gedit /etc/apt/sources.list
or
sudo nano /etc/apt/sources.list
or
sudo vi /etc/apt/sources.list
Edit: I just checked and looks like that site doesn't even have code for xenial (16.04). http://ppa.launchpad.net/ferramroberto/sopcast/ubuntu/dists/ The latest is for quantal (12.10). Given this, it's probably best to remove the line entirely rather than commenting out.
edited Aug 11 '16 at 1:32
answered Aug 11 '16 at 1:16
lcblcb
582
582
add a comment |
add a comment |
I've scoured forums for a resolution to this. I had purged, removed, uninstalled, and scraped my system for hours until I finally found it with a simple grep command >.<
The error that prompted my search:
W: GPG error: https://dl.winehq.org/wine-builds/ubuntu bionic InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 76F1A20FF987672F
E: The repository 'https://dl.winehq.org/wine-builds/ubuntu bionic InRelease' is not 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
As a newbie it took me a while to figure out a simple grep search:
/etc/apt$ grep -ir "wine"
which output:
sources.list.d/additional-repositories.list:deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main
So, after all the hunting and scraping all I had to do was:
sudo nano /etc/apt/sources.list.d/additional-repositories.list
... and add a "#" at the beginning of the only line in the file (I suppose I could've deleted it entirely) to comment out the "dl.winehq..." from trying to update when I run sudo apt-get update
Hope that helps!
add a comment |
I've scoured forums for a resolution to this. I had purged, removed, uninstalled, and scraped my system for hours until I finally found it with a simple grep command >.<
The error that prompted my search:
W: GPG error: https://dl.winehq.org/wine-builds/ubuntu bionic InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 76F1A20FF987672F
E: The repository 'https://dl.winehq.org/wine-builds/ubuntu bionic InRelease' is not 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
As a newbie it took me a while to figure out a simple grep search:
/etc/apt$ grep -ir "wine"
which output:
sources.list.d/additional-repositories.list:deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main
So, after all the hunting and scraping all I had to do was:
sudo nano /etc/apt/sources.list.d/additional-repositories.list
... and add a "#" at the beginning of the only line in the file (I suppose I could've deleted it entirely) to comment out the "dl.winehq..." from trying to update when I run sudo apt-get update
Hope that helps!
add a comment |
I've scoured forums for a resolution to this. I had purged, removed, uninstalled, and scraped my system for hours until I finally found it with a simple grep command >.<
The error that prompted my search:
W: GPG error: https://dl.winehq.org/wine-builds/ubuntu bionic InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 76F1A20FF987672F
E: The repository 'https://dl.winehq.org/wine-builds/ubuntu bionic InRelease' is not 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
As a newbie it took me a while to figure out a simple grep search:
/etc/apt$ grep -ir "wine"
which output:
sources.list.d/additional-repositories.list:deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main
So, after all the hunting and scraping all I had to do was:
sudo nano /etc/apt/sources.list.d/additional-repositories.list
... and add a "#" at the beginning of the only line in the file (I suppose I could've deleted it entirely) to comment out the "dl.winehq..." from trying to update when I run sudo apt-get update
Hope that helps!
I've scoured forums for a resolution to this. I had purged, removed, uninstalled, and scraped my system for hours until I finally found it with a simple grep command >.<
The error that prompted my search:
W: GPG error: https://dl.winehq.org/wine-builds/ubuntu bionic InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 76F1A20FF987672F
E: The repository 'https://dl.winehq.org/wine-builds/ubuntu bionic InRelease' is not 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
As a newbie it took me a while to figure out a simple grep search:
/etc/apt$ grep -ir "wine"
which output:
sources.list.d/additional-repositories.list:deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main
So, after all the hunting and scraping all I had to do was:
sudo nano /etc/apt/sources.list.d/additional-repositories.list
... and add a "#" at the beginning of the only line in the file (I suppose I could've deleted it entirely) to comment out the "dl.winehq..." from trying to update when I run sudo apt-get update
Hope that helps!
edited Feb 12 at 21:42
Marc Vanhoomissen
88611119
88611119
answered Feb 12 at 17:48
Kris DriverKris Driver
112
112
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%2f810771%2fremove-packages-with-error-on-apt-get-update%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