Debootstrap to x86-64 LiveCD


From Knoppix Documentation Wiki
Revision as of 07:12, 6 July 2006 by SNIa (Talk | contribs)

Jump to: navigation, search

Welcome to the Knoppix 64 / 64bit / AMD64 / EM64T / Knoppix64 LiveCD

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}
cp /etc/resolv.conf ${SOURCEDIR}/etc/.

Now Chroot and set up environment

chroot ${SOURCEDIR} \
   /usr/bin/env \
  -i HOME=/root \
  TERM=$TERM PS1='\u:\w\$ ' \
  PATH=/bin:/usr/bin:/sbin:/usr/sbin \
  /bin/bash --login
mount proc -t proc proc
cd /dev && ./MAKEDEV generic
echo "deb http://amd64.debian.net/debian-amd64 sarge  main contrib non-free" > /etc/apt/sources.list
apt-get update
apt-get install perl udev gawk locales

Development (still within chroot)

  1. ( I am in the process of finding out what's needed. )
apt-get install \
  bootcd \
  bootcd-i386 \ 
  bootcd-mkinitrd  \
  busybox  \
  cramfsprogs  \
  dash  \
  discover  \
  discover-data  \
  dosfstools  \
  file  \
  initrd-tools  \
  libdiscover2  \
  libexpat1  \
  libmagic1  \
  mkisofs  \
  realpath  \
  syslinux  \
  module-init-tools

Custom Kernel

  • todo

TO DO

  • Custom Kernel
  • Make a custom minirt.gz file
  • (compared from Debootstrap to LiveCD) Install Custom Kernel Configuration (now 64 bit)

notes