Why do I get 404 Not Found when adding this repository to /etc/apt/sources.list?
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
In my /etc/apt/sources.list
file:
deb http://debian.ruc.dk/rumd stretch main
deb-src http://debian.ruc.dk/rumd stretch main
When I run sudo apt update
I see
Ign:10 http://debian.ruc.dk/rumd stretch InRelease
Hit:11 http://dl.google.com/linux/chrome/deb stable Release
Err:12 http://debian.ruc.dk/rumd stretch Release
404 Not Found
E: The repository 'http://debian.ruc.dk/rumd stretch Release' does not have a Release file.
EDIT: The error appears to be that there is no Release file. Is there a way to still download the package?
And when I run sudo apt install rumd
I get
E: Unable to locate package rumd
The repository, however, seems perfectly accessible. What is going on? I am on Debian 9.4 stretch.
debian apt
add a comment |Â
up vote
0
down vote
favorite
In my /etc/apt/sources.list
file:
deb http://debian.ruc.dk/rumd stretch main
deb-src http://debian.ruc.dk/rumd stretch main
When I run sudo apt update
I see
Ign:10 http://debian.ruc.dk/rumd stretch InRelease
Hit:11 http://dl.google.com/linux/chrome/deb stable Release
Err:12 http://debian.ruc.dk/rumd stretch Release
404 Not Found
E: The repository 'http://debian.ruc.dk/rumd stretch Release' does not have a Release file.
EDIT: The error appears to be that there is no Release file. Is there a way to still download the package?
And when I run sudo apt install rumd
I get
E: Unable to locate package rumd
The repository, however, seems perfectly accessible. What is going on? I am on Debian 9.4 stretch.
debian apt
I suspect the issue is that repositories that do not provide a release file are now considered insecure by default. You may be able to work around it by passing theAcquire::AllowInsecureRepositories
option or (perhaps better) marking the specific repo as[trusted=yes]
in your sources.list. Seeman apt-secure
for further details and make sure you understand the security implications.
â steeldriver
Jul 12 at 16:14
Thanks, I added[trusted=yes]
. I see (among other, ignored, sources):Get:21 http://debian.ruc.dk/rumd stretch/main amd64 Packages [1,587 B]
when I runapt update
. However, if I runapt install rumd
(as per their download page), I still getE: Unable to locate package rumd
. Any idea?
â Kappie001
Jul 12 at 16:41
Do you have any foreign architectures enabled?dpkg --print-foreign-architectures
â steeldriver
Jul 12 at 17:04
... if so, try making thatdeb [arch=amd64 trusted=yes]
and then runningapt update
again
â steeldriver
Jul 12 at 17:22
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
In my /etc/apt/sources.list
file:
deb http://debian.ruc.dk/rumd stretch main
deb-src http://debian.ruc.dk/rumd stretch main
When I run sudo apt update
I see
Ign:10 http://debian.ruc.dk/rumd stretch InRelease
Hit:11 http://dl.google.com/linux/chrome/deb stable Release
Err:12 http://debian.ruc.dk/rumd stretch Release
404 Not Found
E: The repository 'http://debian.ruc.dk/rumd stretch Release' does not have a Release file.
EDIT: The error appears to be that there is no Release file. Is there a way to still download the package?
And when I run sudo apt install rumd
I get
E: Unable to locate package rumd
The repository, however, seems perfectly accessible. What is going on? I am on Debian 9.4 stretch.
debian apt
In my /etc/apt/sources.list
file:
deb http://debian.ruc.dk/rumd stretch main
deb-src http://debian.ruc.dk/rumd stretch main
When I run sudo apt update
I see
Ign:10 http://debian.ruc.dk/rumd stretch InRelease
Hit:11 http://dl.google.com/linux/chrome/deb stable Release
Err:12 http://debian.ruc.dk/rumd stretch Release
404 Not Found
E: The repository 'http://debian.ruc.dk/rumd stretch Release' does not have a Release file.
EDIT: The error appears to be that there is no Release file. Is there a way to still download the package?
And when I run sudo apt install rumd
I get
E: Unable to locate package rumd
The repository, however, seems perfectly accessible. What is going on? I am on Debian 9.4 stretch.
debian apt
edited Jul 12 at 15:10
asked Jul 12 at 15:01
Kappie001
1011
1011
I suspect the issue is that repositories that do not provide a release file are now considered insecure by default. You may be able to work around it by passing theAcquire::AllowInsecureRepositories
option or (perhaps better) marking the specific repo as[trusted=yes]
in your sources.list. Seeman apt-secure
for further details and make sure you understand the security implications.
â steeldriver
Jul 12 at 16:14
Thanks, I added[trusted=yes]
. I see (among other, ignored, sources):Get:21 http://debian.ruc.dk/rumd stretch/main amd64 Packages [1,587 B]
when I runapt update
. However, if I runapt install rumd
(as per their download page), I still getE: Unable to locate package rumd
. Any idea?
â Kappie001
Jul 12 at 16:41
Do you have any foreign architectures enabled?dpkg --print-foreign-architectures
â steeldriver
Jul 12 at 17:04
... if so, try making thatdeb [arch=amd64 trusted=yes]
and then runningapt update
again
â steeldriver
Jul 12 at 17:22
add a comment |Â
I suspect the issue is that repositories that do not provide a release file are now considered insecure by default. You may be able to work around it by passing theAcquire::AllowInsecureRepositories
option or (perhaps better) marking the specific repo as[trusted=yes]
in your sources.list. Seeman apt-secure
for further details and make sure you understand the security implications.
â steeldriver
Jul 12 at 16:14
Thanks, I added[trusted=yes]
. I see (among other, ignored, sources):Get:21 http://debian.ruc.dk/rumd stretch/main amd64 Packages [1,587 B]
when I runapt update
. However, if I runapt install rumd
(as per their download page), I still getE: Unable to locate package rumd
. Any idea?
â Kappie001
Jul 12 at 16:41
Do you have any foreign architectures enabled?dpkg --print-foreign-architectures
â steeldriver
Jul 12 at 17:04
... if so, try making thatdeb [arch=amd64 trusted=yes]
and then runningapt update
again
â steeldriver
Jul 12 at 17:22
I suspect the issue is that repositories that do not provide a release file are now considered insecure by default. You may be able to work around it by passing the
Acquire::AllowInsecureRepositories
option or (perhaps better) marking the specific repo as [trusted=yes]
in your sources.list. See man apt-secure
for further details and make sure you understand the security implications.â steeldriver
Jul 12 at 16:14
I suspect the issue is that repositories that do not provide a release file are now considered insecure by default. You may be able to work around it by passing the
Acquire::AllowInsecureRepositories
option or (perhaps better) marking the specific repo as [trusted=yes]
in your sources.list. See man apt-secure
for further details and make sure you understand the security implications.â steeldriver
Jul 12 at 16:14
Thanks, I added
[trusted=yes]
. I see (among other, ignored, sources): Get:21 http://debian.ruc.dk/rumd stretch/main amd64 Packages [1,587 B]
when I run apt update
. However, if I run apt install rumd
(as per their download page), I still get E: Unable to locate package rumd
. Any idea?â Kappie001
Jul 12 at 16:41
Thanks, I added
[trusted=yes]
. I see (among other, ignored, sources): Get:21 http://debian.ruc.dk/rumd stretch/main amd64 Packages [1,587 B]
when I run apt update
. However, if I run apt install rumd
(as per their download page), I still get E: Unable to locate package rumd
. Any idea?â Kappie001
Jul 12 at 16:41
Do you have any foreign architectures enabled?
dpkg --print-foreign-architectures
â steeldriver
Jul 12 at 17:04
Do you have any foreign architectures enabled?
dpkg --print-foreign-architectures
â steeldriver
Jul 12 at 17:04
... if so, try making that
deb [arch=amd64 trusted=yes]
and then running apt update
againâ steeldriver
Jul 12 at 17:22
... if so, try making that
deb [arch=amd64 trusted=yes]
and then running apt update
againâ steeldriver
Jul 12 at 17:22
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
The HTTP 404, 404 Not Found and 404 error message is a Hypertext Transfer Protocol (HTTP) standard response code, in computer network communications, to indicate that the client was able to communicate with a given server, but the server could not find what was requested.
The above is from Wikipedia
In your case, maybe you don't have connection to that page.
You can just get another source.list and have a try.
Hint: you can use the source in your country, which is faster in most case.
It says "E: The repository 'debian.ruc.dk/rumd stretch Release' does not have a Release file." Maybe that is the problem? I have an internet connection, what do you mean "maybe I don't have connection to that page?"
â Kappie001
Jul 12 at 15:11
@Kappie001 Just open that file and change the source. That's all what you can do.
â Albert Zhang
Jul 12 at 15:19
What do you mean "change the source?"
â Kappie001
Jul 12 at 15:32
1
I know how to edit a file from the command line. I cannot make out what your proposed solution to my problem is, though. Change debian.ruc.dk/rumd into what, exactly?
â Kappie001
Jul 12 at 15:49
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
The HTTP 404, 404 Not Found and 404 error message is a Hypertext Transfer Protocol (HTTP) standard response code, in computer network communications, to indicate that the client was able to communicate with a given server, but the server could not find what was requested.
The above is from Wikipedia
In your case, maybe you don't have connection to that page.
You can just get another source.list and have a try.
Hint: you can use the source in your country, which is faster in most case.
It says "E: The repository 'debian.ruc.dk/rumd stretch Release' does not have a Release file." Maybe that is the problem? I have an internet connection, what do you mean "maybe I don't have connection to that page?"
â Kappie001
Jul 12 at 15:11
@Kappie001 Just open that file and change the source. That's all what you can do.
â Albert Zhang
Jul 12 at 15:19
What do you mean "change the source?"
â Kappie001
Jul 12 at 15:32
1
I know how to edit a file from the command line. I cannot make out what your proposed solution to my problem is, though. Change debian.ruc.dk/rumd into what, exactly?
â Kappie001
Jul 12 at 15:49
add a comment |Â
up vote
0
down vote
The HTTP 404, 404 Not Found and 404 error message is a Hypertext Transfer Protocol (HTTP) standard response code, in computer network communications, to indicate that the client was able to communicate with a given server, but the server could not find what was requested.
The above is from Wikipedia
In your case, maybe you don't have connection to that page.
You can just get another source.list and have a try.
Hint: you can use the source in your country, which is faster in most case.
It says "E: The repository 'debian.ruc.dk/rumd stretch Release' does not have a Release file." Maybe that is the problem? I have an internet connection, what do you mean "maybe I don't have connection to that page?"
â Kappie001
Jul 12 at 15:11
@Kappie001 Just open that file and change the source. That's all what you can do.
â Albert Zhang
Jul 12 at 15:19
What do you mean "change the source?"
â Kappie001
Jul 12 at 15:32
1
I know how to edit a file from the command line. I cannot make out what your proposed solution to my problem is, though. Change debian.ruc.dk/rumd into what, exactly?
â Kappie001
Jul 12 at 15:49
add a comment |Â
up vote
0
down vote
up vote
0
down vote
The HTTP 404, 404 Not Found and 404 error message is a Hypertext Transfer Protocol (HTTP) standard response code, in computer network communications, to indicate that the client was able to communicate with a given server, but the server could not find what was requested.
The above is from Wikipedia
In your case, maybe you don't have connection to that page.
You can just get another source.list and have a try.
Hint: you can use the source in your country, which is faster in most case.
The HTTP 404, 404 Not Found and 404 error message is a Hypertext Transfer Protocol (HTTP) standard response code, in computer network communications, to indicate that the client was able to communicate with a given server, but the server could not find what was requested.
The above is from Wikipedia
In your case, maybe you don't have connection to that page.
You can just get another source.list and have a try.
Hint: you can use the source in your country, which is faster in most case.
answered Jul 12 at 15:06
Albert Zhang
172
172
It says "E: The repository 'debian.ruc.dk/rumd stretch Release' does not have a Release file." Maybe that is the problem? I have an internet connection, what do you mean "maybe I don't have connection to that page?"
â Kappie001
Jul 12 at 15:11
@Kappie001 Just open that file and change the source. That's all what you can do.
â Albert Zhang
Jul 12 at 15:19
What do you mean "change the source?"
â Kappie001
Jul 12 at 15:32
1
I know how to edit a file from the command line. I cannot make out what your proposed solution to my problem is, though. Change debian.ruc.dk/rumd into what, exactly?
â Kappie001
Jul 12 at 15:49
add a comment |Â
It says "E: The repository 'debian.ruc.dk/rumd stretch Release' does not have a Release file." Maybe that is the problem? I have an internet connection, what do you mean "maybe I don't have connection to that page?"
â Kappie001
Jul 12 at 15:11
@Kappie001 Just open that file and change the source. That's all what you can do.
â Albert Zhang
Jul 12 at 15:19
What do you mean "change the source?"
â Kappie001
Jul 12 at 15:32
1
I know how to edit a file from the command line. I cannot make out what your proposed solution to my problem is, though. Change debian.ruc.dk/rumd into what, exactly?
â Kappie001
Jul 12 at 15:49
It says "E: The repository 'debian.ruc.dk/rumd stretch Release' does not have a Release file." Maybe that is the problem? I have an internet connection, what do you mean "maybe I don't have connection to that page?"
â Kappie001
Jul 12 at 15:11
It says "E: The repository 'debian.ruc.dk/rumd stretch Release' does not have a Release file." Maybe that is the problem? I have an internet connection, what do you mean "maybe I don't have connection to that page?"
â Kappie001
Jul 12 at 15:11
@Kappie001 Just open that file and change the source. That's all what you can do.
â Albert Zhang
Jul 12 at 15:19
@Kappie001 Just open that file and change the source. That's all what you can do.
â Albert Zhang
Jul 12 at 15:19
What do you mean "change the source?"
â Kappie001
Jul 12 at 15:32
What do you mean "change the source?"
â Kappie001
Jul 12 at 15:32
1
1
I know how to edit a file from the command line. I cannot make out what your proposed solution to my problem is, though. Change debian.ruc.dk/rumd into what, exactly?
â Kappie001
Jul 12 at 15:49
I know how to edit a file from the command line. I cannot make out what your proposed solution to my problem is, though. Change debian.ruc.dk/rumd into what, exactly?
â Kappie001
Jul 12 at 15:49
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f454922%2fwhy-do-i-get-404-not-found-when-adding-this-repository-to-etc-apt-sources-list%23new-answer', 'question_page');
);
Post as a guest
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
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
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
I suspect the issue is that repositories that do not provide a release file are now considered insecure by default. You may be able to work around it by passing the
Acquire::AllowInsecureRepositories
option or (perhaps better) marking the specific repo as[trusted=yes]
in your sources.list. Seeman apt-secure
for further details and make sure you understand the security implications.â steeldriver
Jul 12 at 16:14
Thanks, I added
[trusted=yes]
. I see (among other, ignored, sources):Get:21 http://debian.ruc.dk/rumd stretch/main amd64 Packages [1,587 B]
when I runapt update
. However, if I runapt install rumd
(as per their download page), I still getE: Unable to locate package rumd
. Any idea?â Kappie001
Jul 12 at 16:41
Do you have any foreign architectures enabled?
dpkg --print-foreign-architectures
â steeldriver
Jul 12 at 17:04
... if so, try making that
deb [arch=amd64 trusted=yes]
and then runningapt update
againâ steeldriver
Jul 12 at 17:22