4

This is what I tried:

$ sudo add-apt-repository ppa:apt-fast/stable
$ sudo apt-get update
..........something something.........  
.................................................................  
.................................................................   
W: Failed to fetch http://ppa.launchpad.net/apt-fast/stable/ubuntu/dists/trusty/main/binary-amd64/Packages  404  Not Found

W: Failed to fetch http://ppa.launchpad.net/apt-fast/stable/ubuntu/dists/trusty/main/binary-i386/Packages  404  Not Found

E: Some index files failed to download. They have been ignored, or old ones used instead.

I then tried

$ sudo apt-get install apt-fast

but it says:

Reading package lists... Done       
Building dependency tree       
Reading state information... Done  
E: Unable to locate package apt-fast
terdon
  • 98,183
  • 15
  • 197
  • 293
hacklegend
  • 41
  • 1
  • 2

2 Answers2

4

add it as you did before and then :

open system settings-> software updates-> other software

look for the ppa that was added. Click it and then select edit. Change the distribution from trusty to saucy. Exit and open a terminal.

sudo apt-get update

and then

sudo apt-get install apt-fast

user124241
  • 71
  • 4
  • 1
    It worked but what is the difference between trusy and saucy? Apologies if it is a dumb questions – Rags Jul 25 '14 at 13:15
  • They're different version of Ubuntu. Trusty is version 14.04; saucy is version 13.10. In general, you should stick to the repository that your machine is using. In this specific case, I don't think there were any changes that would break things from 13.10 to 14.04. – David L Sep 30 '14 at 00:43
3

The PPA manager hasn't uploaded any packages for Trusty yet (as evidenced by the two "Failed to fetch" errors). Therefore, apt can't find apt-fast because the package isn't available yet.

You might want to contact the PPA maintainer and ask him to upload a version for Trusty.

I've made a version for Trusty, which you can use from my PPA.

saiarcot895
  • 10,727
  • 2
  • 35
  • 39
  • Iam just a beginner. Thanks for reply. But do you know any method to install apt-fast. As it increases speed of installations. – hacklegend May 07 '14 at 16:21
  • Looks like there still isn't a version packaged for Trusty. You can install it manually using the "Manual" instructions on the apt-fast project page: https://github.com/ilikenwf/apt-fast – David L Jul 24 '14 at 03:38
  • I made a version for Trusty. I'll add the link in my answer. – saiarcot895 Jul 24 '14 at 03:41