Page 1 of 2 12 LastLast
Results 1 to 10 of 17

Thread: [HowTo] Building a local Mirror for Ubuntu Repositories.

  1. #1
    pricetech is offline Iced Blended Vanilla Crème Ubuntu
    Join Date
    Apr 2008
    Beans
    1,651

    [HowTo] Building a local Mirror for Ubuntu Repositories.

    Let me begin with the following;
    This is the process that worked for me using bits and pieces of information gathered from sources too numerous to mention, and a lot of trial and error. I have been able to successfully replicate the process and the results.
    I do not and will not suggest that this is "the" way to build a mirror, only that it is "a" way to build one that has been proven to work.

    I want to thank forum member and colleague lykwydchykyn for his input, advice, and for critiquing this tutorial for me before submitting it.

    ====================

    Begin by determining where you want your repositories to reside. You'll need plenty of drive space. Just as an example I'm mirroring Ubuntu 10.04 Lucid Lynx; 32 bit, packages only - no source code, all repositories and I'm using almost 40 gigs of space.

    I'm using my mirror as the example for this tutorial and assuming your mirror will be used internally, not offered as an official mirror.

    Start by installing apt-mirror and apache2:
    System – Administration – Synaptic Package Manager.
    Searching for apt-mirror then apache2 will give you the packages you need.
    If you prefer to install using the terminal:
    Code:
    apt-get install apt-mirror apache2
    Back up the configuration files:
    Code:
    sudo cp /etc/apt/mirror.list /etc/apt/mirror.list.orig
    sudo cp /etc/apt/sources.list /etc/apt/sources.list.orig
    sudo cp /etc/cron/apt-mirror /etc/cron/apt-mirror.orig
    sudo cp /var/spool/apt-mirror/var/postmirror.sh /var/spool/apt-mirror/var/postmirror.sh.orig
    This can also be done without the terminal by opening each file in your chosen text editor (gedit for example) and choosing “save as” to place the backup copy in your home folder.

    Now edit the files. The examples use nano, but gedit can also be used by invoking it within a terminal using gksudo.

    Starting with mirror.list:
    Code:
    sudo nano /etc/apt/mirror.list
    The config section of the file should not require any editing.
    For the most part, the repositories section should be okay with its default entries as well. You might want to add the partner repository by adding this line:
    Code:
    deb http://archive.canonical.com/ubuntu lucid partner
    You might also want to pull your security updates from security.ubuntu.com which would require this modification:
    Code:
    deb http://security.ubuntu.com/ubuntu lucid-security main restricted universe multiverse
    You can also remove or comment out the lines dealing with source code if you don't expect to need or use them. You can always add repositories later if you want. The time it takes to populate your mirror after adding something is less than the initial population of your mirror, so you can start with the minimum and add more later as the need arises.

    Add a couple of lines to the “clean” section to clean up the extra repositories if you added or modified them as above:
    Code:
    clean http://archive.ubuntu.com/ubuntu
    clean http://security.ubuntu.com/ubuntu
    clean http://archive.canonical.com/ubuntu
    Now you can run apt-mirror for the first time. You might want to wait on this step since it will take a while for your mirror to build, overnight for example. Also note that apt-mirror should be run as the user apt-mirror.
    Code:
    sudo su apt-mirror
    apt-mirror
    You'll see it working, but it will appear slow.

    Once the mirror is populated, link the repository to the web server:
    Code:
    sudo ln -s /var/spool/apt-mirror/mirror/archive.ubuntu.com/ubuntu /var/www/ubuntu
    sudo ln -s /var/spool/apt-mirror/mirror/security.ubuntu.com/ubuntu /var/www/security
    sudo ln -s /var/spool/apt-mirror/mirror/archive.canonical.com/ubuntu/ var/www/canonical
    NOTE: Only the first entry is necessary if you don't add or modify repositories.

    Now edit postmirror.sh to invoke the clean script:
    Code:
    sudo nano /var/spool/apt-mirror/var/postmirror.sh
    Add this line:
    Code:
    /var/spool/apt-mirror/var/clean.sh
    Then make both scripts executable:
    Code:
    sudo chmod u+x /var/spool/apt-mirror/var/clean.sh
    sudo chmod u+x /var/spool/apt-mirror/var/postmirror.sh
    Finally, make apt-mirror an automated task:
    Code:
    sudo nano /etc/cron.d/apt-mirror
    and remove the comment from the last line.



    Moving to the client side:
    Edit the sources.list file that will be used to access the mirror.
    Code:
    sudo nano /etc/apt/sources.list
    The example below assumes using the mirror from the computer that hosts it. Using it from other computers on the network simply requires changing the IP address from 127.0.0.1 to whatever IP address is assigned to the mirror host.
    Code:
    deb http://127.0.0.1/ubuntu lucid main restricted universe multiverse
    deb http://127.0.0.1/ubuntu lucid-updates main restricted universe multiverse
    deb http://127.0.0.1/ubuntu lucid-backports main restricted universe multiverse
    deb http://127.0.0.1/ubuntu lucid-proposed main restricted universe multiverse
    deb http://127.0.0.1/security lucid-security main restricted universe multiverse
    deb http://127.0.0.1/canonical lucid partner
    On a side note, I've seen it recommended a couple of places that you pull your security updates from their original source rather than a mirror. If you choose to do that you want to leave this line for lucid-security unchanged:
    Code:
    deb http://security.ubuntu.com/ubuntu lucid-security main restricted universe multiverse
    Last edited by pricetech; September 13th, 2010 at 03:26 PM. Reason: typo (thanks BlackRetina)

  2. #2
    Join Date
    May 2010
    Location
    /home/South Africa
    Beans
    23
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: [HowTo] Building a local Mirror for Ubuntu Repositories.

    Hi Pricetech

    Awesome "How To" - I have a quick question though.

    I setup a Karmic mirror for our network - we are starting to upgrade to Lucid, is there a way that the mirror can download updates for Lucid aswell? Pointless downloading 60 Gig and then upgrade to 10.04 and all 9.04 updates (all 60 Gigs) wont be used -So what Im coming at is - Keep the mirror on 9.04 with 10.04 updates aswell. Can this be done?

    Thanks

    B

  3. #3
    Join Date
    Oct 2007
    Location
    Australia
    Beans
    1,715
    Distro
    Ubuntu Development Release

    Re: [HowTo] Building a local Mirror for Ubuntu Repositories.

    Yes it can be done. Basically you will need to structure your mirror exactly the same way as the official Ubuntu mirrors are setup. So you will need the relevant files from archive.ubuntu.com for 10.04.

    Check out the attached screenshots to see how the mirror should look.

    When downloading the Lucid files you have 2 options, if you dont want to lose karmic you can download the Lucid files to a separate folder and then transfer them to your mirror. Th other thing you can do is adjust your download script to have both Karmic and Lucid that way they will both download and you wont lose Karmic. I recommend you look at this thread as well.

    Once you have all the files downloaded and placed into the appropriate places adjust your settings to Lucid and you will be ok to go.
    Attached Images Attached Images
    Last edited by k3lt01; July 20th, 2010 at 10:08 AM.
    Ubuntu User 23142 | Wiki | Laptop | HowTo:Create a background slideshow and Screensaver | Reconditioning pre-loved PCs and installing Ubuntu to give away to good homes.

  4. #4
    pricetech is offline Iced Blended Vanilla Crème Ubuntu
    Join Date
    Apr 2008
    Beans
    1,651

    Re: [HowTo] Building a local Mirror for Ubuntu Repositories.

    Thanks for jumping in k3.

    Yes you can set up your mirror for more than one version of Ubuntu. All you have to do is add the lines in the mirror.list file to create the new archives on your local mirror and point your clients to it. Basically, just duplicate the steps, substituting the "new" version for the "old" version.

  5. #5
    Join Date
    Feb 2010
    Location
    Paraguay
    Beans
    169
    Distro
    Ubuntu

    Re: [HowTo] Building a local Mirror for Ubuntu Repositories.

    Very helpful tutorial! This has helped me to save a lot of bandwidth as I'm having quite a few Ubuntu machines at home.

    Thanks
    Onward and upwards,
    Kenny Meyer
    Personal Blog | DuckDuckGo | LoCo Paraguay
    Vimacs - META X term <ENTER> vim <ENTER>

  6. #6
    pricetech is offline Iced Blended Vanilla Crème Ubuntu
    Join Date
    Apr 2008
    Beans
    1,651

    Re: [HowTo] Building a local Mirror for Ubuntu Repositories.

    You're welcome.

  7. #7
    Join Date
    Nov 2004
    Beans
    4

    Angry Re: [HowTo] Building a local Mirror for Ubuntu Repositories.

    It seems apt-mirror doesn't generate the indices, ls-lR.gz or the project dirs required for me to install directly from CDs such as the minimal CD and stuff...

    Is there a simple way to get these to generate, or do I need to rsync them every time I do an apt-mirror?

  8. #8
    pricetech is offline Iced Blended Vanilla Crème Ubuntu
    Join Date
    Apr 2008
    Beans
    1,651

    Re: [HowTo] Building a local Mirror for Ubuntu Repositories.

    I haven't attempted anything involving CDs. There are a couple of tutorials in the forums that address that specifically. You might try search for "Ubuntu CD" or "Ubuntu DVD" and see if that gives you one of those.

  9. #9
    Join Date
    Mar 2008
    Location
    Tampa, FL
    Beans
    112
    Distro
    Ubuntu Development Release

    Re: [HowTo] Building a local Mirror for Ubuntu Repositories.

    I have a 64bit Lucid server but I also want to download 32bit Lucid packages for the Desktops, any idea on how to do that?
    ______________________________________________

    http://www.tampabaycomputing.com/blog/

  10. #10
    pricetech is offline Iced Blended Vanilla Crème Ubuntu
    Join Date
    Apr 2008
    Beans
    1,651

    Re: [HowTo] Building a local Mirror for Ubuntu Repositories.

    It's not fresh in my brain, but as I recall you can do that by specifying the architecture in your mirror.list file. I'd have to look it up to say how, but it's in the documentation.

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •