Why do I get 404 Not Found when adding this repository to /etc/apt/sources.list?

The name of the pictureThe name of the pictureThe name of the pictureClash 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.







share|improve this question





















  • 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











  • 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















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.







share|improve this question





















  • 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











  • 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













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.







share|improve this question













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.









share|improve this question












share|improve this question




share|improve this question








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 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











  • 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

















  • 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











  • 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
















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











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.






share|improve this answer





















  • 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










Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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',
convertImagesToLinks: false,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);








 

draft saved


draft discarded


















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






























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.






share|improve this answer





















  • 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














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.






share|improve this answer





















  • 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












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.






share|improve this answer














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.







share|improve this answer













share|improve this answer



share|improve this answer











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
















  • 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












 

draft saved


draft discarded


























 


draft saved


draft discarded














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













































































Popular posts from this blog

How to check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay