Debian: The repository does not have a Release file
up vote
21
down vote
favorite
Whenever trying to install some programs from source, or specifically running apt update, I receive this message:
E: The repository 'http://ftp.ca.debian.org/debian stretch/updates Release' does not have a Release file.
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.
I started getting this after adding the architecture i386. Without it, I would not be able to install the proprietary Nvidia driver, and Steam client would not start at all.
This is what my /etc/apt/sources.list
reads:
deb http://ftp.ca.debian.org/debian/ stretch main contrib non-free
deb-src http://ftp.ca.debian.org/debian/ stretch main contrib non-free
deb http://ftp.ca.debian.org/debian/ stretch/updates main contrib non-free
deb-src http://ftp.ca.debian.org/debian/ stretch/updates main contrib non-free
####stretch-updates, previously known as 'volatile'
deb http://ftp.ca.debian.org/debian/ stretch-updates main contrib non-free
deb-src http://ftp.ca.debian.org/debian/ stretch-updates main contrib non-free
debian apt package-management
add a comment |
up vote
21
down vote
favorite
Whenever trying to install some programs from source, or specifically running apt update, I receive this message:
E: The repository 'http://ftp.ca.debian.org/debian stretch/updates Release' does not have a Release file.
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.
I started getting this after adding the architecture i386. Without it, I would not be able to install the proprietary Nvidia driver, and Steam client would not start at all.
This is what my /etc/apt/sources.list
reads:
deb http://ftp.ca.debian.org/debian/ stretch main contrib non-free
deb-src http://ftp.ca.debian.org/debian/ stretch main contrib non-free
deb http://ftp.ca.debian.org/debian/ stretch/updates main contrib non-free
deb-src http://ftp.ca.debian.org/debian/ stretch/updates main contrib non-free
####stretch-updates, previously known as 'volatile'
deb http://ftp.ca.debian.org/debian/ stretch-updates main contrib non-free
deb-src http://ftp.ca.debian.org/debian/ stretch-updates main contrib non-free
debian apt package-management
add a comment |
up vote
21
down vote
favorite
up vote
21
down vote
favorite
Whenever trying to install some programs from source, or specifically running apt update, I receive this message:
E: The repository 'http://ftp.ca.debian.org/debian stretch/updates Release' does not have a Release file.
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.
I started getting this after adding the architecture i386. Without it, I would not be able to install the proprietary Nvidia driver, and Steam client would not start at all.
This is what my /etc/apt/sources.list
reads:
deb http://ftp.ca.debian.org/debian/ stretch main contrib non-free
deb-src http://ftp.ca.debian.org/debian/ stretch main contrib non-free
deb http://ftp.ca.debian.org/debian/ stretch/updates main contrib non-free
deb-src http://ftp.ca.debian.org/debian/ stretch/updates main contrib non-free
####stretch-updates, previously known as 'volatile'
deb http://ftp.ca.debian.org/debian/ stretch-updates main contrib non-free
deb-src http://ftp.ca.debian.org/debian/ stretch-updates main contrib non-free
debian apt package-management
Whenever trying to install some programs from source, or specifically running apt update, I receive this message:
E: The repository 'http://ftp.ca.debian.org/debian stretch/updates Release' does not have a Release file.
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.
I started getting this after adding the architecture i386. Without it, I would not be able to install the proprietary Nvidia driver, and Steam client would not start at all.
This is what my /etc/apt/sources.list
reads:
deb http://ftp.ca.debian.org/debian/ stretch main contrib non-free
deb-src http://ftp.ca.debian.org/debian/ stretch main contrib non-free
deb http://ftp.ca.debian.org/debian/ stretch/updates main contrib non-free
deb-src http://ftp.ca.debian.org/debian/ stretch/updates main contrib non-free
####stretch-updates, previously known as 'volatile'
deb http://ftp.ca.debian.org/debian/ stretch-updates main contrib non-free
deb-src http://ftp.ca.debian.org/debian/ stretch-updates main contrib non-free
debian apt package-management
debian apt package-management
edited Apr 17 at 14:54
GAD3R
24.3k1749103
24.3k1749103
asked Jun 19 '17 at 2:12
Nick Bailuc
213129
213129
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
12
down vote
accepted
You’ve got both stretch-updates
and stretch/updates
, but the latter doesn’t exist any more (at least on the mirror you’re using). You should remove the references to stretch/updates
, or — if you’re expecting the stretch/updates
lines to provide security updates — replace them with
deb http://security.debian.org/ stretch/updates main contrib non-free
i removed it, and it solved the issue, but its odd because in the Software & Sources program, stretch/release (with the slash) refers to the security updates of stretch.
– Nick Bailuc
Jun 19 '17 at 5:37
2
Right, but that’s fromhttps://security.debian.org
, not your local mirror. (And it’sstretch/updates
, notstretch/release
; see here for theRelease
file and the corresponding instructions.)
– Stephen Kitt
Jun 19 '17 at 6:10
add a comment |
up vote
0
down vote
Im having the same error but with postgresql this is what i get this when I run apt-get update
E: The repository 'http://apt.postgresql.org/pub/repos/apt kali-rolling-pgdg Release' does not have a Release file.
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.
what could be the problem
New contributor
Welcome to U&L! If you feel your problem is similar to that of the OP (but the answers to their question are not working for you) you should post your own question. Answers should not be used to ask new questions or add points to existing questions. Skim through the Help (how to ask, answer) for more information.
– fra-san
2 days ago
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
12
down vote
accepted
You’ve got both stretch-updates
and stretch/updates
, but the latter doesn’t exist any more (at least on the mirror you’re using). You should remove the references to stretch/updates
, or — if you’re expecting the stretch/updates
lines to provide security updates — replace them with
deb http://security.debian.org/ stretch/updates main contrib non-free
i removed it, and it solved the issue, but its odd because in the Software & Sources program, stretch/release (with the slash) refers to the security updates of stretch.
– Nick Bailuc
Jun 19 '17 at 5:37
2
Right, but that’s fromhttps://security.debian.org
, not your local mirror. (And it’sstretch/updates
, notstretch/release
; see here for theRelease
file and the corresponding instructions.)
– Stephen Kitt
Jun 19 '17 at 6:10
add a comment |
up vote
12
down vote
accepted
You’ve got both stretch-updates
and stretch/updates
, but the latter doesn’t exist any more (at least on the mirror you’re using). You should remove the references to stretch/updates
, or — if you’re expecting the stretch/updates
lines to provide security updates — replace them with
deb http://security.debian.org/ stretch/updates main contrib non-free
i removed it, and it solved the issue, but its odd because in the Software & Sources program, stretch/release (with the slash) refers to the security updates of stretch.
– Nick Bailuc
Jun 19 '17 at 5:37
2
Right, but that’s fromhttps://security.debian.org
, not your local mirror. (And it’sstretch/updates
, notstretch/release
; see here for theRelease
file and the corresponding instructions.)
– Stephen Kitt
Jun 19 '17 at 6:10
add a comment |
up vote
12
down vote
accepted
up vote
12
down vote
accepted
You’ve got both stretch-updates
and stretch/updates
, but the latter doesn’t exist any more (at least on the mirror you’re using). You should remove the references to stretch/updates
, or — if you’re expecting the stretch/updates
lines to provide security updates — replace them with
deb http://security.debian.org/ stretch/updates main contrib non-free
You’ve got both stretch-updates
and stretch/updates
, but the latter doesn’t exist any more (at least on the mirror you’re using). You should remove the references to stretch/updates
, or — if you’re expecting the stretch/updates
lines to provide security updates — replace them with
deb http://security.debian.org/ stretch/updates main contrib non-free
edited Jun 19 '17 at 6:48
answered Jun 19 '17 at 4:24
Stephen Kitt
157k23343416
157k23343416
i removed it, and it solved the issue, but its odd because in the Software & Sources program, stretch/release (with the slash) refers to the security updates of stretch.
– Nick Bailuc
Jun 19 '17 at 5:37
2
Right, but that’s fromhttps://security.debian.org
, not your local mirror. (And it’sstretch/updates
, notstretch/release
; see here for theRelease
file and the corresponding instructions.)
– Stephen Kitt
Jun 19 '17 at 6:10
add a comment |
i removed it, and it solved the issue, but its odd because in the Software & Sources program, stretch/release (with the slash) refers to the security updates of stretch.
– Nick Bailuc
Jun 19 '17 at 5:37
2
Right, but that’s fromhttps://security.debian.org
, not your local mirror. (And it’sstretch/updates
, notstretch/release
; see here for theRelease
file and the corresponding instructions.)
– Stephen Kitt
Jun 19 '17 at 6:10
i removed it, and it solved the issue, but its odd because in the Software & Sources program, stretch/release (with the slash) refers to the security updates of stretch.
– Nick Bailuc
Jun 19 '17 at 5:37
i removed it, and it solved the issue, but its odd because in the Software & Sources program, stretch/release (with the slash) refers to the security updates of stretch.
– Nick Bailuc
Jun 19 '17 at 5:37
2
2
Right, but that’s from
https://security.debian.org
, not your local mirror. (And it’s stretch/updates
, not stretch/release
; see here for the Release
file and the corresponding instructions.)– Stephen Kitt
Jun 19 '17 at 6:10
Right, but that’s from
https://security.debian.org
, not your local mirror. (And it’s stretch/updates
, not stretch/release
; see here for the Release
file and the corresponding instructions.)– Stephen Kitt
Jun 19 '17 at 6:10
add a comment |
up vote
0
down vote
Im having the same error but with postgresql this is what i get this when I run apt-get update
E: The repository 'http://apt.postgresql.org/pub/repos/apt kali-rolling-pgdg Release' does not have a Release file.
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.
what could be the problem
New contributor
Welcome to U&L! If you feel your problem is similar to that of the OP (but the answers to their question are not working for you) you should post your own question. Answers should not be used to ask new questions or add points to existing questions. Skim through the Help (how to ask, answer) for more information.
– fra-san
2 days ago
add a comment |
up vote
0
down vote
Im having the same error but with postgresql this is what i get this when I run apt-get update
E: The repository 'http://apt.postgresql.org/pub/repos/apt kali-rolling-pgdg Release' does not have a Release file.
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.
what could be the problem
New contributor
Welcome to U&L! If you feel your problem is similar to that of the OP (but the answers to their question are not working for you) you should post your own question. Answers should not be used to ask new questions or add points to existing questions. Skim through the Help (how to ask, answer) for more information.
– fra-san
2 days ago
add a comment |
up vote
0
down vote
up vote
0
down vote
Im having the same error but with postgresql this is what i get this when I run apt-get update
E: The repository 'http://apt.postgresql.org/pub/repos/apt kali-rolling-pgdg Release' does not have a Release file.
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.
what could be the problem
New contributor
Im having the same error but with postgresql this is what i get this when I run apt-get update
E: The repository 'http://apt.postgresql.org/pub/repos/apt kali-rolling-pgdg Release' does not have a Release file.
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.
what could be the problem
New contributor
New contributor
answered 2 days ago
LarryTheGeek
1
1
New contributor
New contributor
Welcome to U&L! If you feel your problem is similar to that of the OP (but the answers to their question are not working for you) you should post your own question. Answers should not be used to ask new questions or add points to existing questions. Skim through the Help (how to ask, answer) for more information.
– fra-san
2 days ago
add a comment |
Welcome to U&L! If you feel your problem is similar to that of the OP (but the answers to their question are not working for you) you should post your own question. Answers should not be used to ask new questions or add points to existing questions. Skim through the Help (how to ask, answer) for more information.
– fra-san
2 days ago
Welcome to U&L! If you feel your problem is similar to that of the OP (but the answers to their question are not working for you) you should post your own question. Answers should not be used to ask new questions or add points to existing questions. Skim through the Help (how to ask, answer) for more information.
– fra-san
2 days ago
Welcome to U&L! If you feel your problem is similar to that of the OP (but the answers to their question are not working for you) you should post your own question. Answers should not be used to ask new questions or add points to existing questions. Skim through the Help (how to ask, answer) for more information.
– fra-san
2 days ago
add a comment |
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%2funix.stackexchange.com%2fquestions%2f371890%2fdebian-the-repository-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