11
2
I want to install some software on my Raspberry Pi running Arch Linux, but I keep getting error 404.
I did some research and found that I needed to do pacman -Syy
and pacman -Syu
...
When I run pacman -Syy
with all mirrors enabled, I get:
# pacman -Syy
:: Synchronizing package databases...
error: failed retrieving file 'core.db' from mirror.aarnet.edu.au : The requested URL returned error: 404 Not Found
error: failed retrieving file 'core.db' from ftp.iinet.net.au : The requested URL returned error: 404 Not Found
error: failed retrieving file 'core.db' from mirror.internode.on.net : The requested URL returned error: 404 Not Found
error: failed retrieving file 'core.db' from mirror.optus.net : The requested URL returned error: 404 Not Found
error: failed retrieving file 'core.db' from mirror.rackcentral.com.au : The requested URL returned error: 404 Not Found
error: failed retrieving file 'core.db' from syd.mirror.rackspace.com : The requested URL returned error: 404 Not Found
error: failed retrieving file 'core.db' from ftp.swin.edu.au : The requested URL returned error: 404 Not Found
error: failed retrieving file 'core.db' from archlinux.mirror.uber.com.au : The requested URL returned error: 404 Not Found
error: failed retrieving file 'core.db' from mirror1.htu.tugraz.at : The requested URL returned error: 404 Not Found
error: failed retrieving file 'core.db' from mirrors.ispros.com.bd : The requested URL returned error: 404 Not Found
error: failed retrieving file 'core.db' from ftp.byfly.by : The requested URL returned error: 404 Not Found
error: failed retrieving file 'core.db' from mirror.datacenter.by : The requested URL returned error: 404 Not Found
error: failed retrieving file 'core.db' from archlinux.cu.be : The requested URL returned error: 404 Not Found
error: failed retrieving file 'core.db' from archlinux.mirror.kangaroot.net : The requested URL returned error: 404 Not Found
error: failed retrieving file 'core.db' from archlinux.c3sl.ufpr.br : The requested URL returned error: 404 Not Found
error: failed retrieving file 'core.db' from www.las.ic.unicamp.br : The requested URL returned error: 404 Not Found`
I have checked, it says this for the entire core.db
file, on all mirrors, and for extra.db
, community.db
and aur.db
.
I am able to ping various servers, so I have internet. Also, I am doing this over SSH on a home network.
EDIT: I am not using a proxy server.
If it helps, I am able to use rankmirrors
which downloads a list of mirrors and uncomments some of them for use, I presume that this is based upon speed.
Are you using any proxy? – Daniel B – 2014-08-11T16:16:24.207
No, just a router, no proxy, unless my ISP is using one, but I personally, am not. – James Talbert – 2014-08-11T16:24:09.477
Can you open webpages in lynx or links? (I ask because pacman and links/lynx use HTTP, whereas SSH and ping do not.) – Trav – 2014-08-11T19:11:27.143
I don't have those. If I type either lynx or links into bash, I get command not found. I imagine that I would use
pacman -S lynx
to get it, butpacman
's not working. – James Talbert – 2014-08-11T22:27:05.497