Difference between revisions of "Mirror Repository Ubuntu 10.04"

From OnnoWiki
Jump to navigation Jump to search
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
==Asumsi==
 
==Asumsi==
  
  folder repo : /home/media/repo-10.4
+
  folder repo : /var/data/repository/repo-10.4
 
  server      : dl2.foss-id.web.id atau 125.160.17.22
 
  server      : dl2.foss-id.web.id atau 125.160.17.22
  GNUPGHOME  : /home/media/mirrorkeyring
+
  GNUPGHOME  : /var/data/mirrorkeyring
  
 
Ubah informasi tersebut di sesuaikan dengan kondisi komputer anda
 
Ubah informasi tersebut di sesuaikan dengan kondisi komputer anda
  
 +
==Siapkan==
 +
 +
* [[Membuat Mirrorkeyring untuk debmirror]]
  
 
==Mengkonfigurasi debmirror==
 
==Mengkonfigurasi debmirror==
  
* Install debmirror
+
* Install debmirror & buat folder tempat repo
  
  # apt-get install debmirror
+
  apt-get install debmirror
 
+
mkdir /var/data
* Buatlah folder untuk menempatkan [[repository]], misalnya /home/media/repo-10.4
+
mkdir /var/data/repository
 
+
  mkdir /var/data/repository/repo-10.4
  # mkdir /home/media/repo-10.4
 
  
 
* Buatlah script mirror
 
* Buatlah script mirror
  
  # vi /usr/local/bin/mirrorbuild.sh
+
  touch /usr/local/bin/mirrorbuild.10.04.sh
 +
chmod -Rf 777 /usr/local/bin/mirrorbuild*
 +
chown -Rf nobody.nogroup /usr/local/bin/mirrorbuild*
 +
vi /usr/local/bin/mirrorbuild.10.04.sh
  
 
* Masukan script berikut
 
* Masukan script berikut
Line 34: Line 39:
 
  # Don't touch the user's keyring, have our own instead
 
  # Don't touch the user's keyring, have our own instead
 
  #
 
  #
  export GNUPGHOME=/home/media/mirrorkeyring
+
  export GNUPGHOME=/var/data/mirrorkeyring  
 
   
 
   
 
  # Arch=        -a      # Architecture. For Ubuntu can be i386, powerpc or amd64.
 
  # Arch=        -a      # Architecture. For Ubuntu can be i386, powerpc or amd64.
Line 75: Line 80:
 
  # Make this a full path to where you want to mirror the material.
 
  # Make this a full path to where you want to mirror the material.
 
  #
 
  #
  outPath=/home/media/repo-10.4
+
  outPath=/var/data/repository/repo-10.4
 
   
 
   
 
  # The --nosource option only downloads debs and not deb-src's
 
  # The --nosource option only downloads debs and not deb-src's
Line 99: Line 104:
  
  
* Ubah ijin agar file mirrorbuild.sh dapat di jalankan
+
* Ubah ijin agar file mirrorbuild.sh & folder repo
  
  # chmod -Rf 777 /usr/local/bin/mirrorbuild.sh  
+
  chmod -Rf 777 /usr/local/bin/mirrorbuild.10.04.sh  
 
+
  chown -Rf root.root /var/data/repository/repo-10.4
* Ubah ijin dari folder mirror
+
  chmod -Rf 571 /var/data/repository/repo-10.4
 
 
  # chown -Rf root.root /home/media/repo-10.4
 
  # chmod -Rf 571 /home/media/repo-10.4
 
 
 
* Buat folder untuk mirror keyring
 
 
 
# mkdir /home/media/mirrorkeyring
 
# gpg --no-default-keyring --keyring /home/media/mirrorkeyring/trustedkeys.gpg --import /usr/share/keyrings/ubuntu-archive-keyring.gpg
 
  
 +
* [[Membuat Mirrorkeyring untuk debmirror]]
 
* Jalankan mirrorbuild.sh
 
* Jalankan mirrorbuild.sh
  
  # mirrorbuild.sh
+
  mirrorbuild.10.04.sh
 
 
* Sebelum bisa digunakan dengan baik, kadang kala kita perlu beberapa kali menjalankan perintah
 
 
 
# gpg --no-default-keyring --keyring /home/media/mirrorkeyring/trustedkeys.gpg --import /usr/share/keyrings/ubuntu-archive-keyring.gpg
 
# mirrorbuild.sh
 
  
 
==Pranala Menarik==
 
==Pranala Menarik==
  
 +
* [[Membuat Mirrorkeyring untuk debmirror]]
 
* [[Membuat Repository Ubuntu Lokal menggunakan debmirror]]
 
* [[Membuat Repository Ubuntu Lokal menggunakan debmirror]]
 +
* [[Membuat Repository Ubuntu Lokal menggunakan NAS]]
 
* [[Linux Howto]]
 
* [[Linux Howto]]
 +
* [[Mirror Repository Ubuntu 9.10]]
 +
* [[Mirror Repository Ubuntu 9.10 pakai old-releases.ubuntu.com/ubuntu/]]
 +
* [[Mirror Repository Ubuntu 10.04]]
 +
* [[Mirror Repository Ubuntu 10.04 pakai old-releases.ubuntu.com/ubuntu/]]
 +
* [[Mirror Repository Ubuntu 10.10]]
 +
* [[Mirror Repository Ubuntu 10.10 pakai old-releases.ubuntu.com/ubuntu/]]
 +
* [[Mirror Repository Ubuntu 11.04]]
 +
* [[Mirror Repository Ubuntu 11.10]]
 +
* [[Mirror Repository Ubuntu 12.04]]
 +
* [[Mirror Repository Ubuntu 12.10]]
 +
* [[Mirror Repository Ubuntu 13.04]]

Latest revision as of 18:09, 8 June 2013

Asumsi

folder repo : /var/data/repository/repo-10.4
server      : dl2.foss-id.web.id atau 125.160.17.22
GNUPGHOME   : /var/data/mirrorkeyring

Ubah informasi tersebut di sesuaikan dengan kondisi komputer anda

Siapkan

Mengkonfigurasi debmirror

  • Install debmirror & buat folder tempat repo
apt-get install debmirror
mkdir /var/data
mkdir /var/data/repository
mkdir /var/data/repository/repo-10.4
  • Buatlah script mirror
touch /usr/local/bin/mirrorbuild.10.04.sh
chmod -Rf 777 /usr/local/bin/mirrorbuild*
chown -Rf nobody.nogroup /usr/local/bin/mirrorbuild*
vi /usr/local/bin/mirrorbuild.10.04.sh
  • Masukan script berikut
#### Start script to automate building of Ubuntu mirror #####
## THE NEXT LINE IS NEEDED THE REST OF THE LINES STARTING WITH A # CAN BE DELETED

#!/bin/bash 

## Setting variables with explanations.

#
# Don't touch the user's keyring, have our own instead
#
export GNUPGHOME=/var/data/mirrorkeyring 

# Arch=         -a      # Architecture. For Ubuntu can be i386, powerpc or amd64.
# sparc, only starts in dapper, it is only the later models of sparc.
#
arch=i386

# Minimum Ubuntu system requires main, restricted
# Section=      -s      # Section (One of the following - main/restricted/universe/multiverse).
# You can add extra file with $Section/debian-installer. ex: main/debian-installer,universe/debian-installer,multiverse/debian-installer,restricted/debian-installer
#
section=main,restricted,universe,multiverse

# Release=      -d      # Release of the system (Dapper, Edgy, Feisty, Gutsy, Hardy, Intrepid), and the -updates and -security ( -backports can be  added if desired)
#
# release=jaunty,jaunty-security,jaunty-updates
# release=karmic
# release=karmic,karmic-security,karmic-updates
# release=karmic,karmic-security,karmic-updates,karmic-backports,karmic-proposed
release=lucid,lucid-security,lucid-updates,lucid-backports,lucid-proposed

# Server=       -h      # Server name, minus the protocol and the path at the end
# CHANGE "*" to equal the mirror you want to create your mirror from. au. in Australia  ca. in Canada.
# This can be found in your own /etc/apt/sources.list file, assuming you have Ubuntu installed.
#
# server=opensource.telkomspeedy.com:5432
# server=dl2.foss-id.web.id
server=125.160.17.22

# Dir=          -r      # Path from the main server, so http://my.web.server/$dir, Server dependant
#
inPath=ubuntu

# Proto=        -e      # Protocol to use for transfer (http, ftp, hftp, rsync)
# Choose one - http is most usual the service, and the service must be avaialbe on the server you point at.
#
proto=http

# Outpath=              # Directory to store the mirror in
# Make this a full path to where you want to mirror the material.
#
outPath=/var/data/repository/repo-10.4

# The --nosource option only downloads debs and not deb-src's
# The --progress option shows files as they are downloaded
# --source \ in the place of --no-source \ if you want sources also.
# --nocleanup  Do not clean up the local mirror after mirroring is complete. Use this option to keep older repository
# Start script
#
debmirror       -a $arch \
                --no-source \
                -s $section \
                -h $server \
                -d $release \
                -r $inPath \
                --progress \
                -e $proto \
                $outPath

#### End script to automate building of Ubuntu mirror ####                                                                                    


Simpan script jika sudah selesai di edit semua-nya.


  • Ubah ijin agar file mirrorbuild.sh & folder repo
chmod -Rf 777 /usr/local/bin/mirrorbuild.10.04.sh 
chown -Rf root.root /var/data/repository/repo-10.4
chmod -Rf 571 /var/data/repository/repo-10.4
mirrorbuild.10.04.sh

Pranala Menarik