1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
ERRLOG=/var/log/bootcd2disk.log
# function do_first
# If you want to do some things first before doing anythin else (e.g. load
# additional modules), you can add this to this function.
# function do_first() {
# return
# }
# To define the disk that will be newly partitioned before copying the cd to it
# DISK0="/dev/hda"
# If you don't want do partition any disk
# DISK0=""
# If you want bootcd2disk to find a disk (bootcd tries to use the first disk)
DISK0="auto"
# It is possible to define more disks. The disk number must be increased by 1.
#DISK1="auto"
#DISK2="auto"
# Syntax:
# LVMGRP="<group> <diskdev> [<diskdev> ...][<vgcreate-cmd>][\n ...]"
#
# Example1:
# LVMGRP="vg00 DISK0P1
# vg01 DISK0P2
# vg02 DISK0P3 DISK0P4"
#
# Example2 which is the same as Example1 because it used the default schema
# LVMGRP="vg00 DISK0P1 vgcreate vg00 DISK0P1
# vg01 DISK0P2 vgcreate vg01 DISK0P2
# vg02 DISK0P3 vgcreate vg02 DISK0P3 DISK0P4"
#
# hint: Each volume group definition needs a new line!
#
# Default:
# LVMGRP=""
LVMGRP=""
# Syntax:
# LVMVOL="<volname> <size> <group> [<lvcreate-cmd>][\n ...]"
#
# size in vgcreate syntax, e.g.: 100 means 100 MByte
#
# Example1:
# LVMVOL="lv00 2000 vg00"
#
# Example2 which is the same as Example1 because it used the default schema
# LVMVOL="lv00 2000 vg00 lvcreate -n lv00 -L 2000 vg00"
#
# Example3 uses striping for the second volume
# LVMVOL="lv00 2000 vg00
# lv01 100 vg00 lvcreate -n lv01 -i 3 -I 8 -L 100 vg00"
#
# hint: Each logical volume definition needs a new line!
#
# Default:
# LVMVOL=""
LVMVOL=""
# If DISK0="auto" is defined, the first disk found will be used. To change
# this order TRYFIRST can be defined for example to use SCSI Disks first:
# TRYFIRST="/dev/sda /dev/hda"
# Most people will not need this option and will define:
# TRYFIRST=""
TRYFIRST=""
# If you don't want to repartition anything use:
# SFDISK0=""
# If you want to specify yourself: see man sfdisk
# SFDISK0="
# ,50
# ,100,S
# ;
# "
# If you want to do it automatically. There will be 3 partitions
# /boot, swap and /. /boot is created first to be sure the bios can load
# the kernel also on very large disks.
SFDISK0="auto"
# For each defined DISK<x> there must be one SFDISK<x> Line
# SFDISK1="auto"
# SFDISK2="auto"
# VFAT is normally only needed on ia64 for EFI files.
# Do not run mkdosfs:
# VFAT=""
# Create partitions defined in VFATFS with mkdosfs
# VFAT="/dev/sdb4"
VFAT=""
# Do not run mke2fs:
# EXT2FS=""
# Create partitions defined in EXT2FS with mke2fs:
# EXT2FS="/dev/hda1
# /dev/hda3"
#
# hint: Each device or logical volume definition needs a new line!
# Create partitions needed automatically:
EXT2FS="auto"
# Use EXT3 extenstion for partitions defined by EXT2FS:
# EXT3="yes"
# Do not Use EXT3 extenstio for partitions defined by EXT2FS:
# EXT3="no"
# Use EXT3 automatically if it is supported by the system:
EXT3="auto"
# If you don't want to run mkswap use:
# SWAP=""
# If you want to specify partitions for mkswap:
# SWAP="/dev/hda2"
# hint: Each swap device definition needs a new line!
# If you want to automatically use mke2fs:
SWAP="auto"
# If you don't want to mount anything, before copying the cd to /mnt
# MOUNT=""
# UMOUNT=""
# If you want to mount everything yourself:
# MOUNT="mount /dev/hda3 /mnt; mkdir /mnt/boot; mount /dev/hda1 /mnt/boot"
# UMOUNT="umount /mnt/boot; umount /mnt"
# If you want to automatically mount:
MOUNT="auto"
UMOUNT="auto"
# If you don't want to change the /etc/fstab copied form cd:
# FSTAB=""
# If You want to define it yourself:
# FSTAB="
# /dev/sda1 /boot ext2 defaults 0 1
# /dev/sda2 none swap sw 0 0
# /dev/sda3 / ext2 defaults,errors=remount-ro 0 1
# proc /proc proc defaults 0 0
# "
# If You want to do it automatically:
FSTAB="auto"
# If you don't want to use GRUB:
# GRUB=""
# If GRUB is defined and grub is installed it will be used and
# LILO will be ignored.
# If you want to define it yourself:
# GRUB="
# default 0
# timeout 5
# color cyan/blue white/blue
# title Debian GNU/Linux
# root (hd0,0)
# kernel /vmlinuz-2.4.27-2-386 root=/dev/hda3 ro
# initrd /initrd.img-2.4.27-2-386
# savedefault
# boot
# "
# If You want to do it automatically:
GRUB="auto"
# Only if you BIOS sees another disk as the first disk you may
# have to change the next line.
GRUBBOOTDISK="hd0"
# If /boot is not the first partition on disk
# we need to know which one it is to install
# grub properly. Attention: grub starts counting with 0!
GRUBBOOTDIR="0"
# If GRUB is defined and installed LILO will be ignored.
# If you don't want to change the /etc/lilo.conf copied from cd:
# LILO=""
# If you want to define it yourself:
# LILO="
# boot=DISK0
# delay=20
# vga=0
# image=/vmlinuz
# root=DISK0P3
# initrd=/initrd.img
# label=Linux
# read-only
# "
# If You want to do it automatically:
LILO="auto"
# ELILO is only needed on ia64 systems.
# If you don't want to run elilo:
# ELILO=""
# If you want to define /etc/elilo.conf and run elilo.
# ELILO="
# install=/usr/lib/elilo/elilo.efi
# boot=/dev/sdb4
# prompt
# timeout=50
# default=Linux
# append=\\\"console=ttyS0.9600n8\\\"
# image=/vmlinuz
# label=Linux
# root=/dev/sdb5
# read-only
# "
ELILO=""
# SSHOSTKEY=yes|no
# If you are using ssh it is helpful to have a unique ssh hostkey for
# each PC installed with bootcd2disk. This will be generated with
# SSHHOSTKEY="yes"
SSHHOSTKEY=yes
# UDEV_FIXNET=yes|no
# If you are using udev filesystem and install the image on other machines
# you need to set this to "yes" because the network interfaces are hardwired
# in /etc/udev/rules.d/z25_persistent-net.rules and we must remove them.
# UDEV_FIXNET="no"
UDEV_FIXNET="no"
# USEIMAGESERVER=yes|no
# If bootcd2disk is slow on your system (because of a slow CD/DVD drive or
# the HP ILO virtual CD interface), you can use a image server to get the
# image from.
# bootcd2disk use the SWAP partition of your upcoming system as temporary
# space and copy the image from the configured image server (IMAGEURL or
# cmdline -url) to this partition and use it as image.
# USEIMAGESERVER="no"
USEIMAGESERVER="no"
# IMAGEURL="url"
# This option configures the image server for USEIMAGESERVER="yes".
# The "url" is used with "wget" so all url from wget are possible.
# e.g: http://192.168.100.10/cdimage.iso
# hint: Please use a ip because of failed DNS and you need also the
# configured ip interface.
# hint: the option may be overwritten from command line (-url)
# IMAGEURL=""
IMAGEURL=""
# function after_copy
# If you want to do some things after copying the files (e.g. remount of
# directories ...), you can add this to this function.
# function after_copy() {
# return
# }
#
# Examples:
#
# IF you only want to copy the cd to an already existing Partition /dev/hda2
# You can now specify:
# DISK0=""; SFDISK0=""; SWAP=""; FSTAB=""; LILO=""
# EXTFS2="/dev/hda2"
# MOUNT="mount /dev/hda2 /mnt"
|