About: Cobootstrap   Sponge Permalink

An Entity of Type : owl:Thing, within Data Space : 134.155.108.49:8890 associated with source dataset(s)

This is a small script that should give you an idea how to create your own colinux Debian image. This script uses debootstrap to download the nessesary basic packages. By default it build a 150mb image, just change =CO_SIZE= to your preferred size. Because this script uses debootstrap it will run only on a Debian system with this package installed but it may give you a good hint how to do this with other distribution. MassTranslated on 25 Dec 2004. MassTranslated on Sun Apr 23 17:35:41 UTC 2006

AttributesValues
rdfs:label
  • Cobootstrap
rdfs:comment
  • This is a small script that should give you an idea how to create your own colinux Debian image. This script uses debootstrap to download the nessesary basic packages. By default it build a 150mb image, just change =CO_SIZE= to your preferred size. Because this script uses debootstrap it will run only on a Debian system with this package installed but it may give you a good hint how to do this with other distribution. MassTranslated on 25 Dec 2004. MassTranslated on Sun Apr 23 17:35:41 UTC 2006
dcterms:subject
abstract
  • This is a small script that should give you an idea how to create your own colinux Debian image. This script uses debootstrap to download the nessesary basic packages. By default it build a 150mb image, just change =CO_SIZE= to your preferred size. Because this script uses debootstrap it will run only on a Debian system with this package installed but it may give you a good hint how to do this with other distribution. #!/bin/sh # cobootstrap.sh: Build a colinux-debian image. Works on top of debootstrap # (c) Thomas Fritzsche # CO_SIZE=150000 CO_WD=`pwd` cd `dirname $0` CO_ROOT=`pwd` cd $CO_ROOT CO_IMAGE=./image CO_LOG=$CO_ROOT/log cp /dev/null $CO_LOG >> $CO_LOG 2>&1 CO_MOUNT=$CO_ROOT/mnt dd bs=1k count=$CO_SIZE if=/dev/zero of=$CO_IMAGE mkfs.ext3 -J size=1 -F -m 0 $CO_IMAGE if ! test -f $CO_MOUNT ; then mkdir -p $CO_MOUNT fi mount -o loop -t ext3 $CO_IMAGE $CO_MOUNT debootstrap --verbose --include=libssl0.9.6,zlib1g,ssh --exclude=pcmcia-cs \ --arch i386 woody $CO_MOUNT ftp://ftp.uk.debian.org/debian for i in 0 1 2 3 4 do if ! test -f $CO_MOUNT/dev/cobd$i ; then mknod $CO_MOUNT/dev/cobd$i b 117 $i >> $CO_LOG 2>&1 fi done cat >$CO_MOUNT/etc/apt/sources.list <$CO_MOUNT/etc/hosts <$CO_MOUNT/etc/network/interfaces <>$CO_MOUNT/etc/default/rcS <$CO_MOUNT/etc/fstab < MassTranslated on 25 Dec 2004. MassTranslated on Sun Apr 23 17:35:41 UTC 2006
Alternative Linked Data Views: ODE     Raw Data in: CXML | CSV | RDF ( N-Triples N3/Turtle JSON XML ) | OData ( Atom JSON ) | Microdata ( JSON HTML) | JSON-LD    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] Valid XHTML + RDFa
OpenLink Virtuoso version 07.20.3217, on Linux (x86_64-pc-linux-gnu), Standard Edition
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2012 OpenLink Software