How can I get apt to use a mirror close to me, or choose a faster mirror?

Downloading from the main Ubuntu archive is slow even when it's not release day, how can I get apt-get to automatically use a mirror that is close to me?

1

8 Answers

apt-get now supports a 'mirror' method that will automatically select a good mirror based on your location. Putting:

deb mirror:// precise main restricted universe multiverse
deb mirror:// precise-updates main restricted universe multiverse
deb mirror:// precise-backports main restricted universe multiverse
deb mirror:// precise-security main restricted universe multiverse

on the top in your /etc/apt/sources.list file should be all that is needed to make it automatically pick a mirror for you based on your geographical location.

Lucid (10.04), Maverick (10.10), Natty (11.04), And Oneiric (11.10) users can replace precise with the appropriate name.

15

I've always gone with the 'select best server' GUI tool: from Ubuntu Software Center, go to Edit -> Software Sources in the menu. (You can also do this from the Preferences for Synaptic or the Update Manager.)

Under the Ubuntu Software tab there's a drop-down next to "Download from:" If you select "Other..." you'll get a button that says "Select Best Server"; clicking on it gets Ubuntu to run some tests to see what mirror will give the best download speed.

I can't comment on whether this is better or worse than the method you found for yourself. Perhaps someone with some expertise on the issue can comment!


Here are some screenshots for the graphical method, as Jorge suggested:

  1. Open the Ubuntu Software Center, click on Edit in the global menu, and go to 'Software Sources...'

  2. Click on the drop-down menu next to 'Download From' and select 'Other...'

  3. Click on Select Best Server

  4. The best server is highlighted. Click Choose Server and you're done!

4

The Geographic location does not always give the best mirror. For example, I live in BC Canada, and most who are in this province should find a mirror in BC, California, or any Pacific state, maybe even Arizona.

However, here in the north my ISP (unlike the phone company) has only one fiber line out of this city, and it goes straight to Calgary (1000km east of here) where it plugs a NEX shared with the line to ucalgary, where they have a lovely debian and ubuntu and who-knows-what-else mirror. It seems the university has the same ISP as I, and so transfer rates are measured in megabytes per second, as opposed to the 50-100 kilobytes per second I get from a default mirror.

So. I recommend knowing your local internet network topology. Pretty things such as Network Exchanges can make for a fast connection to specific places. Staying on your ISP's network can bypass some speed throttles you might otherwise have to the outside world.

Thanks to the post regarding the GUI tool to change this, I found that mirror and set it as default. Good show for this topic!

1

For a fast upgrade, I've downloaded the alternate CD using torrents. After the upgrade in this way, I still ended up with a system which has still not all updates (probably after the ISO was packed).

After a quick search, I ended up on the list of mirrors on Launchpad. Search for your country and test some. I live in the Netherlands and got only 75kB/s speed, much lower than my usual speed. The ubuntu.mirror.cambrium.nl mirror did not work for me, but ubuntu.mirror.astratoip.net did. Replace the mirror accordingly and run the below commands:

sudo sed '@ubuntu.mirror.atratoip.net@' -i /etc/apt/sources.list
sudo apt-get update

Replace archive.ubuntu.com by your current mirror.

A tip for users of Kubuntu 12.04...

From Muon Software Centre:

  • Settings > Configure Software Sources

Then on the Kubuntu Software tab:

  • Select "Other" from the "Download from:" drop-down list
  • Click "Select Best Server" button - this will ping all servers in the list

This will select the server with the quickest ping (fastest server at the time)

I'm in the UK, but my fastest server is "server for Nepal". - about 10 times faster than what I was getting with the default server for UK!

Here is a Python script I wrote that returns a list of mirrors with the lowest latency for a specified country.

The script also provides bandwidth and status information taken from the mirrors' launchpad pages and will generate a new sources.list file using a mirror chosen from the list.

Simply adding deb mirror lines to /etc/apt/sources.list will give you duplicate sources. Also, because apt only checks for duplicate lines, there is no error. We need to replace the original contents of the file to prevent this problem

I made a complete list to replace the original sources list file. This includes the main, restricted, universe, multiverse, proposed, and canonical repositories.

Note: the lines for "proposed" are commented out. Also, the Canonical "partner" repository (closed source and proprietary) doesn't work with mirrors so these lines are unchanged.


First, run the following to make a backup and delete your sources list file:

sudo mv /etc/apt/sources.list /etc/apt/sources.listbackup

Next, use your favorite text editor to copy and paste the following lines into /etc/apt/sources.list (if you're not on "bionic", I've included a command to fix that in the next step):

## main, restricted, universe, and multiverse repositories
deb mirror:// bionic main restricted universe multiverse
deb mirror:// bionic-updates main restricted universe multiverse
deb mirror:// bionic-backports main restricted universe multiverse
deb mirror:// bionic-security main restricted universe multiverse
deb-src mirror:// bionic main restricted universe multiverse
deb-src mirror:// bionic-updates main restricted universe multiverse
deb-src mirror:// bionic-backports main restricted universe multiverse
deb-src mirror:// bionic-security main restricted universe multiverse
## uncomment to enable "proposed" or pre-release software which may be unstable and could cause problems or breaks
#deb mirror:// bionic-proposed main restricted universe multiverse
#deb-src mirror:// bionic-proposed main restricted universe multiverse
## Canonical "partner" repository does not work with mirrors
## uncomment to enable the partner repository for proprietary and closed source software
deb bionic partner
deb-src bionic partner

After you save the file, run the following command to automatically apply your version of Ubuntu (bionic, eoan, xenial, etc . . .):

sudo sed -i "s/bionic/$(lsb_release -sc)/g" /etc/apt/sources.list

Finally, run the following command to update apt:

sudo apt update

My Python script apt-smart that finds mirrors automaticly within your country, benchmarks and ranks them by status and speed, finally changes sources.list if you want to.

The differences between apt-smart and other answer mentioned apt-select are:

  • apt-smart automaticly finds where you are so you don't need to specify the country when you travel abroad.
  • apt-smart does real HTTP download from each mirror to get more accurate results ( bandwidth & status ) and supports HTTP proxy, whereas apt-select only uses ping and relies on launchpad 's inaccurate data.
  • apt-smart is being maintained, whereas apt-select leaves isusues unfix for almost 3 years.

You can easily install apt-smart via pip, for detailed copy'n'paste install commands please see Project Readme.

A usage example that lets you list ranked mirrors within your country:

$ apt-smart -l

With -l, or --list-mirrors, you will get ( example output from Travis CI U.S. server ):

---------------------------------------------------------------------------------------------------------
| Rank | Mirror URL | Available? | Updating? | Last updated | Bandwidth |
---------------------------------------------------------------------------------------------------------
| 1 | | Yes | No | Up to date | 1.73 MB/s |
| 2 | | Yes | No | Up to date | 1.68 MB/s |
| 3 | | Yes | No | Up to date | 1.4 MB/s |
| 4 | | Yes | No | Up to date | 1.35 MB/s |
| 5 | | Yes | No | Up to date | 937.62 KB/s |
...
| 75 | | Yes | No | 1 day behind | 659.67 KB/s |
| 76 | | Yes | No | 2 days behind | 351.26 KB/s |
| 77 | | Yes | No | 4 days behind | 806.81 KB/s |
| 78 | | Yes | No | 4 weeks behind | 514.31 KB/s |
| 79 | | Yes | No | 19 weeks behind | 418.94 KB/s |
| 80 | | Yes | Yes | Up to date | 446.07 KB/s |
---------------------------------------------------------------------------------------------------------
Full URLs which are too long to be shown in above table:
1:
2:
3:
5:
...
78:
80: 
2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like