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


From Knoppix Documentation Wiki
Jump to: navigation, search
(Variables)
Line 6: Line 6:
  
 
  #!/bin/bash
 
  #!/bin/bash
 
+
 
  SOURCEDIR=/mnt/hda1/source/KNOPPIX64
 
  SOURCEDIR=/mnt/hda1/source/KNOPPIX64
 
  MASTERDIR=/mnt/hda1/master/KNOPPIX64
 
  MASTERDIR=/mnt/hda1/master/KNOPPIX64
Line 12: Line 12:
 
  DEBIAN_RELEASE=sid
 
  DEBIAN_RELEASE=sid
 
  DEBIAN_MIRROR=http://http.us.debian.org/debian
 
  DEBIAN_MIRROR=http://http.us.debian.org/debian
 +
 
==Set Up the Environment==
 
==Set Up the Environment==
  

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