Difference between revisions of "Mirroring"

From GalliumOS Wiki
Jump to: navigation, search
(Created page with "GalliumOS has several mirrors so that people can access files and packages with great speed from all over the world. If you're interested in hosting a mirror for us, well, fir...")
 
 
Line 16: Line 16:
  
 
Once you've created and configure your mirror, you're free to add it to the [[Unofficial Mirrors]] list. If you run an unofficial mirror for a while, and we deem you trustworthy, we may approach you to upgrade your mirror to an Official Mirror.
 
Once you've created and configure your mirror, you're free to add it to the [[Unofficial Mirrors]] list. If you run an unofficial mirror for a while, and we deem you trustworthy, we may approach you to upgrade your mirror to an Official Mirror.
 
Some other official mirrors also run their own rsync repositories.
 
 
If you want to mirror both repositories from the Roubaix mirror, it would look something like this...
 
 
<code>
 
rsync -rtlvH --delete-after --delay-updates --safe-links rsync://eu.mirrors.coltondrg.com/galliumos galliumos/
 
</code>
 
 
If you want to mirror the releases repository from the Roubaix mirror, it would look something like this...
 
 
<code>
 
rsync -rtlvH --delete-after --delay-updates --safe-links rsync://eu.mirrors.coltondrg.com/galliumos/releases galliumos/releases/
 
</code>
 
 
If you want to mirror the apt repository from the Roubaix mirror, it would look something like this...
 
 
<code>
 
rsync -rtlvH --delete-after --delay-updates --safe-links rsync://eu.mirrors.coltondrg.com/galliumos/apt galliumos/apt/
 
</code>
 

Latest revision as of 07:04, 20 June 2021

GalliumOS has several mirrors so that people can access files and packages with great speed from all over the world. If you're interested in hosting a mirror for us, well, first, thanks! We appreciate the help.

Mirroring is done through rsync. There are two different repositories that you can mirror: apt and releases. The releases repository includes our release isos. The apt repository includes our Debian package repository (or apt repo) where various GalliumOS packages are downloaded from.

If you would like to mirror the releases repository, it would look something like this...

rsync -rtlvH --delete-after --delay-updates --safe-links rsync://galliumos.org/releases galliumos/releases/

If you would like to mirror the apt repository, it would look something like this...

rsync -rtlvH --delete-after --delay-updates --safe-links rsync://galliumos.org/apt galliumos/apt/

Once you've created and configure your mirror, you're free to add it to the Unofficial Mirrors list. If you run an unofficial mirror for a while, and we deem you trustworthy, we may approach you to upgrade your mirror to an Official Mirror.