2

I get in some trouble when I tried to update the system

W: Failed to fetch http://archive.getdeb.net/ubuntu/dists/trusty-getdeb/apps/binary-amd64/Packages  521  Origin Down [IP: 104.28.24.125 80]

W: Failed to fetch http://archive.getdeb.net/ubuntu/dists/trusty-getdeb/apps/binary-i386/Packages  521  Origin Down [IP: 104.28.24.125 80]

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

I tried to follow some old answer but it didn't work just because I didn't download from PPA repository but GetDeb. I tried to follow this guide in GetDeb but when I enter sudo apt-get update, the terminal still informs about the same error.

Updated with pastebin the source list

Update with new information when sudo apt-get update, this shows a new error:

W: Duplicate sources.list entry http://archive.getdeb.net/ubuntu/ trusty-getdeb/apps amd64 Packages (/var/lib/apt/lists/archive.getdeb.net_ubuntu_dists_trusty-getdeb_apps_binary-amd64_Packages)
W: Duplicate sources.list entry http://archive.getdeb.net/ubuntu/ trusty-getdeb/apps amd64 Packages (/var/lib/apt/lists/archive.getdeb.net_ubuntu_dists_trusty-getdeb_apps_binary-amd64_Packages)
W: Duplicate sources.list entry http://archive.getdeb.net/ubuntu/ trusty-getdeb/apps i386 Packages (/var/lib/apt/lists/archive.getdeb.net_ubuntu_dists_trusty-getdeb_apps_binary-i386_Packages)
W: Duplicate sources.list entry http://archive.getdeb.net/ubuntu/ trusty-getdeb/apps i386 Packages (/var/lib/apt/lists/archive.getdeb.net_ubuntu_dists_trusty-getdeb_apps_binary-i386_Packages)
W: You may want to run apt-get update to correct these problems
  • It seems that server you are trying to reach is down. Could you update your question with /etc/apt/sources.list content? If file has many lines, you can use http://pastebin.com/ and post url. – Lety Oct 21 '14 at 19:53
  • I updated, you can check again – Raphaël VO Oct 21 '14 at 20:14
  • Last line is commented out and is different from the one indicated in the guide, you're using deb-src instead of deb. However, it seems that the server is unavailable. Maybe if you wait and retry it will work. – Lety Oct 21 '14 at 21:28
  • It's still not worked, I will try it tomorrow – Raphaël VO Oct 21 '14 at 21:51
  • It now shows the duplicate, could you please help? – Raphaël VO Oct 22 '14 at 12:05
  • It means that there are two entries for the same repository. Check where are defined using these commands: grep "archive.getdeb.net/ubuntu/ trusty-getdeb/apps" /etc/apt.list and grep "archive.getdeb.net/ubuntu/ trusty-getdeb/apps" /etc/apt/sources.list.d/* If you find out multiple definition, remove duplicated items and redo sudo apt-get update – Lety Oct 22 '14 at 15:02
  • For first command : grep: /etc/apt.list: No such file or directory For second command: nothing happens – Raphaël VO Oct 23 '14 at 12:06
  • Sorry I did a mistake, the command is: grep "archive.getdeb.net/ubuntu/ trusty-getdeb/apps" /etc/apt/sources.list – Lety Oct 23 '14 at 12:46

1 Answers1

3

First error:

   W: Failed to fetch http://archive.getdeb.net/ubuntu/dists/trusty-getdeb/apps/binary-amd64/Packages  521  Origin Down [IP: 104.28.24.125 80]

means that server is down. I tested repository url and it is really down.

Second error that you got means that there are two entries for the same repository.

Check where are defined using these commands:

  grep "archive.getdeb.net/ubuntu/ trusty-getdeb/apps" /etc/apt/sources.list 
  grep "archive.getdeb.net/ubuntu/ trusty-getdeb/apps" /etc/apt/sources.list.d/* 

If you find out multiple definition, remove duplicated items and redo:

  sudo apt-get update 

Today I checked repository url and now it seems up.

Lety
  • 6,039
  • 2
  • 29
  • 37