On Wed, Sep 04, 2002 at 04:07:26PM -0400, Sharpe, Richard wrote: > I have take all your advice and decided to try Debian for > Sparc, I download the 6 sprc jigdo files and then I get stuck what > do you enter in this prompt:
Here's what I use to generate CDs nightly (with a local sparc mirror, you probably want to use apt-spy to find a nearby mirror if you don't have your own). The following snippets would generate woody-sparc-1: #!/bin/sh cd /some/local/directory/for/jigdo/files wget --mirror --no-parent -q --no-directories -Awoody*-1* \ http://us.cdimage.debian.org/jigdo-area/current/jigdo/sparc/ /usr/bin/jigdo-mirror and in ~/.jigdo-mirror: jigdoDir="/some/local/directory/for/jigdo/files" imageDir="/some/local/directory/for/cd/images" tmpDir="/some/local/directory/for/jigdo/tmp" debianMirror="file:/home/ftp/debian" nonusMirror="file:/home/ftp/debian/non-US" exclude='_NONUS' jigdoFile="jigdo-file --cache=$tmpDir/jigdo-cache.db --cache-expiry=1w --report=noprogress --no-check-files" maxMissing=100 filesPerFetch=10 wgetOpts="--passive-ftp --no-directories --non-verbose" ...where all the directories mentioned are on the same partition. -- Mike Renfro / R&D Engineer, Center for Manufacturing Research, 931 372-3601 / Tennessee Technological University -- [EMAIL PROTECTED]

