What is apt-fast and should I use it?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







23















Several times over the past couple years, I've heard of people using apt-fast for updating and installing packages, but I'm not really sure what it does. I think I've traced its origin to this forum post, and it seems to be a script that speeds up apt-get operations.



What exactly does the script do? Are there any potential downsides to using it? If not, why isn't everyone using it?










share|improve this question




















  • 2





    It's not a bash script, it's an sh script. You see it by looking at the first line #!/bin/sh

    – geirha
    Jul 8 '11 at 8:33











  • Not an answer, but mirror:// is handy for things like choosing a fast mirror for you: askubuntu.com/questions/37753/…

    – Jorge Castro
    Jul 8 '11 at 12:04


















23















Several times over the past couple years, I've heard of people using apt-fast for updating and installing packages, but I'm not really sure what it does. I think I've traced its origin to this forum post, and it seems to be a script that speeds up apt-get operations.



What exactly does the script do? Are there any potential downsides to using it? If not, why isn't everyone using it?










share|improve this question




















  • 2





    It's not a bash script, it's an sh script. You see it by looking at the first line #!/bin/sh

    – geirha
    Jul 8 '11 at 8:33











  • Not an answer, but mirror:// is handy for things like choosing a fast mirror for you: askubuntu.com/questions/37753/…

    – Jorge Castro
    Jul 8 '11 at 12:04














23












23








23


3






Several times over the past couple years, I've heard of people using apt-fast for updating and installing packages, but I'm not really sure what it does. I think I've traced its origin to this forum post, and it seems to be a script that speeds up apt-get operations.



What exactly does the script do? Are there any potential downsides to using it? If not, why isn't everyone using it?










share|improve this question
















Several times over the past couple years, I've heard of people using apt-fast for updating and installing packages, but I'm not really sure what it does. I think I've traced its origin to this forum post, and it seems to be a script that speeds up apt-get operations.



What exactly does the script do? Are there any potential downsides to using it? If not, why isn't everyone using it?







apt updates scripts






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jul 8 '11 at 13:12







Michael Martin-Smucker

















asked Jul 7 '11 at 23:43









Michael Martin-SmuckerMichael Martin-Smucker

5,72232356




5,72232356








  • 2





    It's not a bash script, it's an sh script. You see it by looking at the first line #!/bin/sh

    – geirha
    Jul 8 '11 at 8:33











  • Not an answer, but mirror:// is handy for things like choosing a fast mirror for you: askubuntu.com/questions/37753/…

    – Jorge Castro
    Jul 8 '11 at 12:04














  • 2





    It's not a bash script, it's an sh script. You see it by looking at the first line #!/bin/sh

    – geirha
    Jul 8 '11 at 8:33











  • Not an answer, but mirror:// is handy for things like choosing a fast mirror for you: askubuntu.com/questions/37753/…

    – Jorge Castro
    Jul 8 '11 at 12:04








2




2





It's not a bash script, it's an sh script. You see it by looking at the first line #!/bin/sh

– geirha
Jul 8 '11 at 8:33





It's not a bash script, it's an sh script. You see it by looking at the first line #!/bin/sh

– geirha
Jul 8 '11 at 8:33













Not an answer, but mirror:// is handy for things like choosing a fast mirror for you: askubuntu.com/questions/37753/…

– Jorge Castro
Jul 8 '11 at 12:04





Not an answer, but mirror:// is handy for things like choosing a fast mirror for you: askubuntu.com/questions/37753/…

– Jorge Castro
Jul 8 '11 at 12:04










2 Answers
2






active

oldest

votes


















19














It appears to use the program axel to download the files using multiple concurrent connections to multiple mirrors. My guess is that everyone isn't using it because most people don't have connections that are significantly faster than the mirrors, and therefore, can substantially benefit from concurrent downloads, combined with the fact that most people haven't heard of it. This is the first time I've ever heard it mentioned in 5 years of running Ubuntu.






share|improve this answer































    9














    apt-fast is a shell script wrapper for apt-get and aptitude that can drastically improve APT download times by downloading packages with multiple connections per package. Apt-Fast uses the Axel download accelerator in Ubuntu 12.04 or the aria2 download accelerator in Ubuntu 14.04 and beyond to download different pieces of a package simultaneously, lowering the total time it takes to download a package.



    The apt-fast package can be installed in all currently supported versions of Ubuntu by adding the apt-fast/stable PPA to your software sources and installing it using these commands.



    sudo add-apt-repository ppa:apt-fast/stable 
    sudo apt-get update
    sudo apt-get install apt-fast


    During the apt-fast installation process, you will be prompted to perform some package configuration. After successfully installing apt-fast, simply use it the same way you run apt or apt-get.






    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/3.0/"u003ecc by-sa 3.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%2f52243%2fwhat-is-apt-fast-and-should-i-use-it%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









      19














      It appears to use the program axel to download the files using multiple concurrent connections to multiple mirrors. My guess is that everyone isn't using it because most people don't have connections that are significantly faster than the mirrors, and therefore, can substantially benefit from concurrent downloads, combined with the fact that most people haven't heard of it. This is the first time I've ever heard it mentioned in 5 years of running Ubuntu.






      share|improve this answer




























        19














        It appears to use the program axel to download the files using multiple concurrent connections to multiple mirrors. My guess is that everyone isn't using it because most people don't have connections that are significantly faster than the mirrors, and therefore, can substantially benefit from concurrent downloads, combined with the fact that most people haven't heard of it. This is the first time I've ever heard it mentioned in 5 years of running Ubuntu.






        share|improve this answer


























          19












          19








          19







          It appears to use the program axel to download the files using multiple concurrent connections to multiple mirrors. My guess is that everyone isn't using it because most people don't have connections that are significantly faster than the mirrors, and therefore, can substantially benefit from concurrent downloads, combined with the fact that most people haven't heard of it. This is the first time I've ever heard it mentioned in 5 years of running Ubuntu.






          share|improve this answer













          It appears to use the program axel to download the files using multiple concurrent connections to multiple mirrors. My guess is that everyone isn't using it because most people don't have connections that are significantly faster than the mirrors, and therefore, can substantially benefit from concurrent downloads, combined with the fact that most people haven't heard of it. This is the first time I've ever heard it mentioned in 5 years of running Ubuntu.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jul 7 '11 at 23:56









          psusipsusi

          31.5k15192




          31.5k15192

























              9














              apt-fast is a shell script wrapper for apt-get and aptitude that can drastically improve APT download times by downloading packages with multiple connections per package. Apt-Fast uses the Axel download accelerator in Ubuntu 12.04 or the aria2 download accelerator in Ubuntu 14.04 and beyond to download different pieces of a package simultaneously, lowering the total time it takes to download a package.



              The apt-fast package can be installed in all currently supported versions of Ubuntu by adding the apt-fast/stable PPA to your software sources and installing it using these commands.



              sudo add-apt-repository ppa:apt-fast/stable 
              sudo apt-get update
              sudo apt-get install apt-fast


              During the apt-fast installation process, you will be prompted to perform some package configuration. After successfully installing apt-fast, simply use it the same way you run apt or apt-get.






              share|improve this answer






























                9














                apt-fast is a shell script wrapper for apt-get and aptitude that can drastically improve APT download times by downloading packages with multiple connections per package. Apt-Fast uses the Axel download accelerator in Ubuntu 12.04 or the aria2 download accelerator in Ubuntu 14.04 and beyond to download different pieces of a package simultaneously, lowering the total time it takes to download a package.



                The apt-fast package can be installed in all currently supported versions of Ubuntu by adding the apt-fast/stable PPA to your software sources and installing it using these commands.



                sudo add-apt-repository ppa:apt-fast/stable 
                sudo apt-get update
                sudo apt-get install apt-fast


                During the apt-fast installation process, you will be prompted to perform some package configuration. After successfully installing apt-fast, simply use it the same way you run apt or apt-get.






                share|improve this answer




























                  9












                  9








                  9







                  apt-fast is a shell script wrapper for apt-get and aptitude that can drastically improve APT download times by downloading packages with multiple connections per package. Apt-Fast uses the Axel download accelerator in Ubuntu 12.04 or the aria2 download accelerator in Ubuntu 14.04 and beyond to download different pieces of a package simultaneously, lowering the total time it takes to download a package.



                  The apt-fast package can be installed in all currently supported versions of Ubuntu by adding the apt-fast/stable PPA to your software sources and installing it using these commands.



                  sudo add-apt-repository ppa:apt-fast/stable 
                  sudo apt-get update
                  sudo apt-get install apt-fast


                  During the apt-fast installation process, you will be prompted to perform some package configuration. After successfully installing apt-fast, simply use it the same way you run apt or apt-get.






                  share|improve this answer















                  apt-fast is a shell script wrapper for apt-get and aptitude that can drastically improve APT download times by downloading packages with multiple connections per package. Apt-Fast uses the Axel download accelerator in Ubuntu 12.04 or the aria2 download accelerator in Ubuntu 14.04 and beyond to download different pieces of a package simultaneously, lowering the total time it takes to download a package.



                  The apt-fast package can be installed in all currently supported versions of Ubuntu by adding the apt-fast/stable PPA to your software sources and installing it using these commands.



                  sudo add-apt-repository ppa:apt-fast/stable 
                  sudo apt-get update
                  sudo apt-get install apt-fast


                  During the apt-fast installation process, you will be prompted to perform some package configuration. After successfully installing apt-fast, simply use it the same way you run apt or apt-get.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Mar 24 at 8:50

























                  answered Jul 24 '14 at 6:48









                  karelkarel

                  60.9k13132155




                  60.9k13132155






























                      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%2f52243%2fwhat-is-apt-fast-and-should-i-use-it%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

                      Category:香港粉麵

                      List *all* the tuples!

                      Channel [V]