Debootstrap to x86-64 LiveCD


From Knoppix Documentation Wiki
Revision as of 20:02, 5 July 2006 by SNIa (Talk | contribs)

Jump to: navigation, search

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