Displaying 3 results from an estimated 3 matches for "rlthvz".
2018 Jan 29
3
Mirroring centos.org
Hello,
I would like to mirror the centos.org repository for an offline network. I
don't need the ISO images, don't need any i386 stuff, and I think I
probably don't need any of the source code rpms either. Most of the clients
are CentOS 6.x, so I don't want to download the CentOS 7.x tree yet either
(that will come soon, but separately from this one).
I tried using this command,
2018 Jan 29
0
Mirroring centos.org
...the top directory
> you're downloading from? i.e. rather than "i386", you'd need to specify
> "/centos-6/6/updates/i386/"?
Don't use wget at all. Use rsync instead, from a mirror that supports it.
Here is what I use (in a nightly cron):
# cd /myrepo
# rsync -rltHvz --delete rsync://rsync.mirrorservice.org/mirror.centos.org/6/os/i386/ centos6/os/i386/
# rsync -rltHvz --delete rsync://rsync.mirrorservice.org/mirror.centos.org/6/updates/i386/ centos6/updates/i386/
# rsync -rltHvz --delete rsync://rsync.mirrorservice.org/mirror.centos.org/6/os/x86_64/ centos6/os/...
2018 Jan 29
1
Mirroring centos.org
...e downloading from? i.e. rather than "i386", you'd need to specify
> > "/centos-6/6/updates/i386/"?
>
> Don't use wget at all. Use rsync instead, from a mirror that supports it.
> Here is what I use (in a nightly cron):
>
> # cd /myrepo
> # rsync -rltHvz --delete rsync://rsync.mirrorservice.
> org/mirror.centos.org/6/os/i386/ centos6/os/i386/
> # rsync -rltHvz --delete rsync://rsync.mirrorservice.
> org/mirror.centos.org/6/updates/i386/ centos6/updates/i386/
> # rsync -rltHvz --delete rsync://rsync.mirrorservice.
> org/mirror.centos....