Difference between revisions of "Debootstrap to x86-64 LiveCD"


From Knoppix Documentation Wiki
Jump to: navigation, search
(preamble)
Line 3: Line 3:
 
and
 
and
 
*(add your username here)
 
*(add your username here)
 +
==Variables==
 +
 +
#!/bin/bash
 +
 +
SOURCEDIR=/mnt/hda1/source/KNOPPIX64
 +
MASTERDIR=/mnt/hda1/master/KNOPPIX64
 +
ARCH=ia64
 +
DEBIAN_RELEASE=sid
 +
DEBIAN_MIRROR=http://http.us.debian.org/debian
 +
==Set Up the Environment==
 +
 +
mkdir -p ${SOURCEDIR}
 +
mkdir -p ${MASTERDIR}
 +
 +
==DeBootstrap==
 +
 +
debootstrap --arch ${ARCH} ${DEBIAN_RELEASE} ${SOURCEDIR} ${DEBIAN_MIRROR}
  
 
==notes==
 
==notes==

Revision as of 20:02, 5 July 2006

preamble

  • In Development by SNIa 19:30, 5 Jul 2006 (GMT)

and

  • (add your username here)

Variables

#!/bin/bash
SOURCEDIR=/mnt/hda1/source/KNOPPIX64
MASTERDIR=/mnt/hda1/master/KNOPPIX64
ARCH=ia64
DEBIAN_RELEASE=sid
DEBIAN_MIRROR=http://http.us.debian.org/debian

Set Up the Environment

mkdir -p ${SOURCEDIR} mkdir -p ${MASTERDIR}

DeBootstrap

debootstrap --arch ${ARCH} ${DEBIAN_RELEASE} ${SOURCEDIR} ${DEBIAN_MIRROR}

notes