curl unexpected end of file when downloading gzipinternal gzip read errorProblem with extracting a .tar.gz filegzip: stdin: unexpected end of file -> problem in extracting jdk-7u55-linux-x64.tar.gzRecover Huge and Broken Gzip fileWhy am I not being able to tar /opt and move it to my USB location in LinuxHow to install AMD Drivers for Radeon RX 460?using tar showing, “No Such file or directory”
What causes standard door hinges to close up to a certain amount automatically?
How can I replicate this effect of the Infinity Gauntlet using official material?
Type and strength of a typical chain
Fill a bowl with alphabet soup
Did Feynman cite a fallacy about only circles having the same width in all directions as a reason for the Challenger disaster?
How do I weigh a kitchen island to determine what size castors to get?
Modern warfare theory in a medieval setting
Dedicated solver for convex problems
How can my hammerspace safely "decompress"?
Why did Batman design Robin's suit with only the underwear without pants?
How do you translate "Don't Fear the Reaper" into Latin?
'Cheddar goes "good" with burgers?' Can "go" be seen as a verb of the senses?
Song in C major has F# note
Giving a character trauma but not "diagnosing" her?
Change computer name Ubuntu
What can I do to avoid potential charges for bribery?
I'm largest when I'm five, what am I?
How can I make "acts of patience" exciting?
Why is lying to Congress a crime?
What is this dial on my old film camera for?
Applying rules on rules
Are there any privately owned large commercial airports?
How could "aggressor" pilots fly foreign aircraft without speaking the language?
Why is it so hard to land on the Moon?
curl unexpected end of file when downloading gzip
internal gzip read errorProblem with extracting a .tar.gz filegzip: stdin: unexpected end of file -> problem in extracting jdk-7u55-linux-x64.tar.gzRecover Huge and Broken Gzip fileWhy am I not being able to tar /opt and move it to my USB location in LinuxHow to install AMD Drivers for Radeon RX 460?using tar showing, “No Such file or directory”
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I used command
The URL the data is located at.
URL=http://data.biostarhandbook.com/rnaseq/projects/griffith/griffith-data.tar.gz
Downloading and unpack the data.
curl -s $URL | tar zxv
I got error
gzip: stdin: unexpected end of file
tar: Child returned status 1
tar: Error is not recoverable: exiting now
downloads tar gzip
add a comment
|
I used command
The URL the data is located at.
URL=http://data.biostarhandbook.com/rnaseq/projects/griffith/griffith-data.tar.gz
Downloading and unpack the data.
curl -s $URL | tar zxv
I got error
gzip: stdin: unexpected end of file
tar: Child returned status 1
tar: Error is not recoverable: exiting now
downloads tar gzip
add a comment
|
I used command
The URL the data is located at.
URL=http://data.biostarhandbook.com/rnaseq/projects/griffith/griffith-data.tar.gz
Downloading and unpack the data.
curl -s $URL | tar zxv
I got error
gzip: stdin: unexpected end of file
tar: Child returned status 1
tar: Error is not recoverable: exiting now
downloads tar gzip
I used command
The URL the data is located at.
URL=http://data.biostarhandbook.com/rnaseq/projects/griffith/griffith-data.tar.gz
Downloading and unpack the data.
curl -s $URL | tar zxv
I got error
gzip: stdin: unexpected end of file
tar: Child returned status 1
tar: Error is not recoverable: exiting now
downloads tar gzip
downloads tar gzip
edited Apr 21 at 15:30
Luis Alvarado
152k143 gold badges493 silver badges668 bronze badges
152k143 gold badges493 silver badges668 bronze badges
asked Apr 21 at 15:19
Asifa HameedAsifa Hameed
11 bronze badge
11 bronze badge
add a comment
|
add a comment
|
2 Answers
2
active
oldest
votes
It works for me. Is it possible you have a bad network connection? Try to download the file first, and then unpack it, e.g.
wget http://data.biostarhandbook.com/rnaseq/projects/griffith/griffith-data.tar.gz
tar zxvf griffith-data.tar.gz && rm -f griffith-data.tar.gz
add a comment
|
I tried the same example you gave:
curl -s http://data.biostarhandbook.com/rnaseq/projects/griffith/griffith-data.tar.gz | tar zxv
and got it working correctly as seen here:
If this is still not working, it might be something blocking you from downloading it or having correct access to it.
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/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%2f1135800%2fcurl-unexpected-end-of-file-when-downloading-gzip%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
It works for me. Is it possible you have a bad network connection? Try to download the file first, and then unpack it, e.g.
wget http://data.biostarhandbook.com/rnaseq/projects/griffith/griffith-data.tar.gz
tar zxvf griffith-data.tar.gz && rm -f griffith-data.tar.gz
add a comment
|
It works for me. Is it possible you have a bad network connection? Try to download the file first, and then unpack it, e.g.
wget http://data.biostarhandbook.com/rnaseq/projects/griffith/griffith-data.tar.gz
tar zxvf griffith-data.tar.gz && rm -f griffith-data.tar.gz
add a comment
|
It works for me. Is it possible you have a bad network connection? Try to download the file first, and then unpack it, e.g.
wget http://data.biostarhandbook.com/rnaseq/projects/griffith/griffith-data.tar.gz
tar zxvf griffith-data.tar.gz && rm -f griffith-data.tar.gz
It works for me. Is it possible you have a bad network connection? Try to download the file first, and then unpack it, e.g.
wget http://data.biostarhandbook.com/rnaseq/projects/griffith/griffith-data.tar.gz
tar zxvf griffith-data.tar.gz && rm -f griffith-data.tar.gz
answered Apr 21 at 15:28
vidarlovidarlo
13.4k6 gold badges33 silver badges59 bronze badges
13.4k6 gold badges33 silver badges59 bronze badges
add a comment
|
add a comment
|
I tried the same example you gave:
curl -s http://data.biostarhandbook.com/rnaseq/projects/griffith/griffith-data.tar.gz | tar zxv
and got it working correctly as seen here:
If this is still not working, it might be something blocking you from downloading it or having correct access to it.
add a comment
|
I tried the same example you gave:
curl -s http://data.biostarhandbook.com/rnaseq/projects/griffith/griffith-data.tar.gz | tar zxv
and got it working correctly as seen here:
If this is still not working, it might be something blocking you from downloading it or having correct access to it.
add a comment
|
I tried the same example you gave:
curl -s http://data.biostarhandbook.com/rnaseq/projects/griffith/griffith-data.tar.gz | tar zxv
and got it working correctly as seen here:
If this is still not working, it might be something blocking you from downloading it or having correct access to it.
I tried the same example you gave:
curl -s http://data.biostarhandbook.com/rnaseq/projects/griffith/griffith-data.tar.gz | tar zxv
and got it working correctly as seen here:
If this is still not working, it might be something blocking you from downloading it or having correct access to it.
answered Apr 21 at 15:34
Luis AlvaradoLuis Alvarado
152k143 gold badges493 silver badges668 bronze badges
152k143 gold badges493 silver badges668 bronze badges
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%2f1135800%2fcurl-unexpected-end-of-file-when-downloading-gzip%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