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


From Knoppix Documentation Wiki
Jump to: navigation, search
(Variables)
(preamble)
Line 1: Line 1:
 
==preamble==
 
==preamble==
 
*In Development by [[User:SNIa|SNIa]] 19:30, 5 Jul 2006 (GMT)
 
*In Development by [[User:SNIa|SNIa]] 19:30, 5 Jul 2006 (GMT)
*Using [http://cdimage.debian.org/cdimage/unofficial/sarge-amd64/iso-cd/debian-31r0a-amd64-netinst.iso Boot CD] as a base
+
*Using the [http://cdimage.debian.org/cdimage/unofficial/sarge-amd64/iso-cd/debian-31r0a-amd64-netinst.iso Boot Net-inst CD] as a base
 +
 
 
==Variables==
 
==Variables==
  

Revision as of 21:10, 5 July 2006

preamble

Variables

#!/bin/bash

SOURCEDIR=/mnt/hda1/source/KNOPPIX64
MASTERDIR=/mnt/hda1/master/KNOPPIX64
ARCH=amd64
DEBIAN_RELEASE=sarge
DEBIAN_MIRROR=http://amd64.debian.net/debian-amd64

Set Up the Environment

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

DeBootstrap

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

notes