Failed to fetch curl when trying to install, 404 Not FoundHow to uninstall/install youtube-dl by using terminalcURL: Hostname was NOT found in DNS cacheUnmet dependencies when trying to install curl on Ubuntu 16.04Updating the apt-get command in the terminal
Can you make tandoori rotis with chickpea / green pea flour?
Cut some segment from sphere in TiKz
Is it normal to use a clipper instead of an limiter?
Why does the single dot entry exist in file systems?
How many 1/day spells can a Warlock monster cast?
Why do airports in the UK have so few runways?
Fantasy story about a knife that can cut holes to other dimensions
Why do we have 0.0 and -0.0 in Ruby?
An employer is trying to force me to switch banks, which I know is illegal. What should I do?
Why don't miners charge more for high value transactions?
How would an unethical corporation go about extracting resources from a nation unwilling to co-operate?
What is the difference between turbojet and turbofan engines?
Finding price of the power option
Why do the US media keep claiming that Iran is violating their nuclear deal?
Possible executive assistant job scam
Why is the block size is not filled with transactions
Did Abraham and Noah know of each other?
Does Enthrall make targets require perception checks to perceive anything other than the caster?
"Cобака на сене" - is this expression still in use or is it dated?
Morphing between two functions
Atemsis, All-Seeing and Mask of Immolation interaction
In a shuttle launch, what would have happened if all three SSMEs failed during flight?
Why was Wouter Basson never charged with crimes against humanity for Project Coast?
Why did dict.get(key) work but not dict[key]?
Failed to fetch curl when trying to install, 404 Not Found
How to uninstall/install youtube-dl by using terminalcURL: Hostname was NOT found in DNS cacheUnmet dependencies when trying to install curl on Ubuntu 16.04Updating the apt-get command in the terminal
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
Attempting to revert a Chromebox with Windows 10 on it back to ChromeOS, using Ubuntu on a live boot to run a custom script to update the firmware. Basically, in order to run this command:
cd ~; curl -L -O http://mrchromebox.tech/firmware-util.sh; sudo bash firmware-util.sh
I have to have curl installed, so I try to install curl from the terminal, but this is the error message I get back:
ubuntu@ubuntu:~$ sudo apt install curl
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libcurl4
The following NEW packages will be installed:
curl libcurl4
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 373 kB of archives.
After this operation, 1036 kB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Ign:1 http://security.ubuntu.com/ubuntu bionic-security/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.6
Err:1 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.6 404 Not Found [IP: 91.189.88.24 80]
Ign:2 http://security.ubuntu.com/ubuntu bionic-security/main amd64 curl amd64 7.58.0-2ubuntu3.6
Err:2 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 curl amd64 7.58.0-2ubuntu3.6 404 Not Found [IP: 91.189.88.24 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/c/curl/libcurl4_7.58.0-2ubuntu3.6_amd64.deb 404 Not Found [IP: 91.189.88.24 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/c/curl/curl_7.58.0-2ubuntu3.6_amd64.deb 404 Not Found [IP: 91.189.88.24 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
What could be causing this issue and what can I do to fix it so that I can run the first command?
I'm very new to linux, Ubuntu, and this site as a whole, so if I've formatted anything wrong or my understanding of something is obviously wrong, please let me know.
command-line curl
add a comment
|
Attempting to revert a Chromebox with Windows 10 on it back to ChromeOS, using Ubuntu on a live boot to run a custom script to update the firmware. Basically, in order to run this command:
cd ~; curl -L -O http://mrchromebox.tech/firmware-util.sh; sudo bash firmware-util.sh
I have to have curl installed, so I try to install curl from the terminal, but this is the error message I get back:
ubuntu@ubuntu:~$ sudo apt install curl
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libcurl4
The following NEW packages will be installed:
curl libcurl4
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 373 kB of archives.
After this operation, 1036 kB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Ign:1 http://security.ubuntu.com/ubuntu bionic-security/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.6
Err:1 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.6 404 Not Found [IP: 91.189.88.24 80]
Ign:2 http://security.ubuntu.com/ubuntu bionic-security/main amd64 curl amd64 7.58.0-2ubuntu3.6
Err:2 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 curl amd64 7.58.0-2ubuntu3.6 404 Not Found [IP: 91.189.88.24 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/c/curl/libcurl4_7.58.0-2ubuntu3.6_amd64.deb 404 Not Found [IP: 91.189.88.24 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/c/curl/curl_7.58.0-2ubuntu3.6_amd64.deb 404 Not Found [IP: 91.189.88.24 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
What could be causing this issue and what can I do to fix it so that I can run the first command?
I'm very new to linux, Ubuntu, and this site as a whole, so if I've formatted anything wrong or my understanding of something is obviously wrong, please let me know.
command-line curl
Do you have internet connection? The packages you want to install have to be downloaded.
– GabrielaGarcia
Jul 15 at 17:25
add a comment
|
Attempting to revert a Chromebox with Windows 10 on it back to ChromeOS, using Ubuntu on a live boot to run a custom script to update the firmware. Basically, in order to run this command:
cd ~; curl -L -O http://mrchromebox.tech/firmware-util.sh; sudo bash firmware-util.sh
I have to have curl installed, so I try to install curl from the terminal, but this is the error message I get back:
ubuntu@ubuntu:~$ sudo apt install curl
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libcurl4
The following NEW packages will be installed:
curl libcurl4
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 373 kB of archives.
After this operation, 1036 kB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Ign:1 http://security.ubuntu.com/ubuntu bionic-security/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.6
Err:1 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.6 404 Not Found [IP: 91.189.88.24 80]
Ign:2 http://security.ubuntu.com/ubuntu bionic-security/main amd64 curl amd64 7.58.0-2ubuntu3.6
Err:2 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 curl amd64 7.58.0-2ubuntu3.6 404 Not Found [IP: 91.189.88.24 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/c/curl/libcurl4_7.58.0-2ubuntu3.6_amd64.deb 404 Not Found [IP: 91.189.88.24 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/c/curl/curl_7.58.0-2ubuntu3.6_amd64.deb 404 Not Found [IP: 91.189.88.24 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
What could be causing this issue and what can I do to fix it so that I can run the first command?
I'm very new to linux, Ubuntu, and this site as a whole, so if I've formatted anything wrong or my understanding of something is obviously wrong, please let me know.
command-line curl
Attempting to revert a Chromebox with Windows 10 on it back to ChromeOS, using Ubuntu on a live boot to run a custom script to update the firmware. Basically, in order to run this command:
cd ~; curl -L -O http://mrchromebox.tech/firmware-util.sh; sudo bash firmware-util.sh
I have to have curl installed, so I try to install curl from the terminal, but this is the error message I get back:
ubuntu@ubuntu:~$ sudo apt install curl
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libcurl4
The following NEW packages will be installed:
curl libcurl4
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 373 kB of archives.
After this operation, 1036 kB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Ign:1 http://security.ubuntu.com/ubuntu bionic-security/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.6
Err:1 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.6 404 Not Found [IP: 91.189.88.24 80]
Ign:2 http://security.ubuntu.com/ubuntu bionic-security/main amd64 curl amd64 7.58.0-2ubuntu3.6
Err:2 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 curl amd64 7.58.0-2ubuntu3.6 404 Not Found [IP: 91.189.88.24 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/c/curl/libcurl4_7.58.0-2ubuntu3.6_amd64.deb 404 Not Found [IP: 91.189.88.24 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/c/curl/curl_7.58.0-2ubuntu3.6_amd64.deb 404 Not Found [IP: 91.189.88.24 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
What could be causing this issue and what can I do to fix it so that I can run the first command?
I'm very new to linux, Ubuntu, and this site as a whole, so if I've formatted anything wrong or my understanding of something is obviously wrong, please let me know.
command-line curl
command-line curl
asked Jul 15 at 16:58
YoseahsYoseahs
1
1
Do you have internet connection? The packages you want to install have to be downloaded.
– GabrielaGarcia
Jul 15 at 17:25
add a comment
|
Do you have internet connection? The packages you want to install have to be downloaded.
– GabrielaGarcia
Jul 15 at 17:25
Do you have internet connection? The packages you want to install have to be downloaded.
– GabrielaGarcia
Jul 15 at 17:25
Do you have internet connection? The packages you want to install have to be downloaded.
– GabrielaGarcia
Jul 15 at 17:25
add a comment
|
0
active
oldest
votes
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/4.0/"u003ecc by-sa 4.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%2f1158477%2ffailed-to-fetch-curl-when-trying-to-install-404-not-found%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f1158477%2ffailed-to-fetch-curl-when-trying-to-install-404-not-found%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
Do you have internet connection? The packages you want to install have to be downloaded.
– GabrielaGarcia
Jul 15 at 17:25