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;









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










share|improve this question


































    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










    share|improve this question






























      0












      0








      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










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question



      share|improve this question








      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























          2 Answers
          2






          active

          oldest

          votes


















          0


















          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





          share|improve this answer

































            0


















            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:



            enter image description here



            If this is still not working, it might be something blocking you from downloading it or having correct access to it.






            share|improve this answer



























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



              );














              draft saved

              draft discarded
















              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









              0


















              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





              share|improve this answer






























                0


















                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





                share|improve this answer




























                  0














                  0










                  0









                  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





                  share|improve this answer














                  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






                  share|improve this answer













                  share|improve this answer




                  share|improve this answer



                  share|improve this answer










                  answered Apr 21 at 15:28









                  vidarlovidarlo

                  13.4k6 gold badges33 silver badges59 bronze badges




                  13.4k6 gold badges33 silver badges59 bronze badges


























                      0


















                      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:



                      enter image description here



                      If this is still not working, it might be something blocking you from downloading it or having correct access to it.






                      share|improve this answer






























                        0


















                        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:



                        enter image description here



                        If this is still not working, it might be something blocking you from downloading it or having correct access to it.






                        share|improve this answer




























                          0














                          0










                          0









                          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:



                          enter image description here



                          If this is still not working, it might be something blocking you from downloading it or having correct access to it.






                          share|improve this answer














                          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:



                          enter image description here



                          If this is still not working, it might be something blocking you from downloading it or having correct access to it.







                          share|improve this answer













                          share|improve this answer




                          share|improve this answer



                          share|improve this answer










                          answered Apr 21 at 15:34









                          Luis AlvaradoLuis Alvarado

                          152k143 gold badges493 silver badges668 bronze badges




                          152k143 gold badges493 silver badges668 bronze badges































                              draft saved

                              draft discarded















































                              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.




                              draft saved


                              draft discarded














                              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





















































                              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









                              Popular posts from this blog

                              Tamil (spriik) Luke uk diar | Nawigatjuun

                              Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

                              Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?