Subversion Repositories livecd

Rev

Rev 46 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
15 beyerle@PS 1
#!/bin/bash
2
#
3
###############################################################
4
#
5
# Installes the LiveCD on local harddisk
6
# 
7
# Boot LiveCD and run this script as root
8
#
9
# Urs Beyerle, PSI
10
#
11
###############################################################
12
 
13
 
14
###############################################################
15
# Definitions
16
###############################################################
17
 
32 beyerle@PS 18
# set PATH
19
PATH="/usr/bin:/usr/sbin:/bin:/sbin:/usr/X11R6/bin"
20
 
29 beyerle@PS 21
# RPMs that are no longer needed and can break future udpates
22
RPMS_TO_REMOVE="kernel-module-squashfs \
23
                kernel-module-unionfs \
45 beyerle@PS 24
                kernel-module-aufs \
25
                unionfs-.* \
26
                aufs-.* \
27
                squashfs-.*"
29 beyerle@PS 28
 
30 beyerle@PS 29
# RPMs that can break future Scientific Linux updates
29 beyerle@PS 30
# because there are not part of Scientific Linux
43 beyerle@PS 31
RPMS_TO_REMOVE_SL="kernel-module-ntfs \
32
                   nvidia.*psi"
29 beyerle@PS 33
 
30 beyerle@PS 34
# RPMs that can break future PSI SL updates
29 beyerle@PS 35
# because there are not part of PSI Scientific Linux
36
RPMS_TO_REMOVE_PSI=""
37
 
15 beyerle@PS 38
# files which should be restored from .ori files
39
FILES_RESTORE="/etc/init.d/netfs \
40
           /etc/init.d/autofs \
41
           /etc/init.d/halt \
42
           /etc/init.d/network
43
           /etc/init.d/functions \
44
           /etc/rc.d/rc.sysinit \
45
           /etc/sysconfig/afs \
46
           /etc/motd \
47
           /etc/redhat-release \
29 beyerle@PS 48
	   /etc/rc.d/rc.local"
15 beyerle@PS 49
 
33 beyerle@PS 50
# LiveCD init scripts will be removed
16 beyerle@PS 51
LIVECD_INIT_SCRIPTS="runfirst \
52
                    runveryfirst \
53
                    runlast \
33 beyerle@PS 54
                    kudzu-auto \
55
                    login"
15 beyerle@PS 56
 
57
# Main directories which should be not be copied
16 beyerle@PS 58
DIR_NOT_COPY="/proc \
59
              /dev \
60
              /livecd \
61
              /boot \
62
              /afs \
63
              /sys \
64
              /mnt \
36 beyerle@PS 65
              /media \
66
              /initrd"
15 beyerle@PS 67
 
68
# Mount point of the new SL system
69
NEW=/mnt/harddisk
70
 
21 beyerle@PS 71
# Name of the script
15 beyerle@PS 72
SCRIPTNAME=$( basename $0 )
73
 
16 beyerle@PS 74
 
75
 
21 beyerle@PS 76
 
15 beyerle@PS 77
###############################################################
78
# Functions
79
###############################################################
80
 
81
function usage() {
82
 
83
   ## Usage
84
   # ----------------------------------------------------------
85
 
86
   cat <<EOF
21 beyerle@PS 87
 
22 beyerle@PS 88
  $SCRIPTNAME [OPTIONS] -mbr=[DEVICE] [PARTITION]
15 beyerle@PS 89
 
26 beyerle@PS 90
    Installes LiveCD on PARTITION and the bootloader grub into 
91
    the Master Boot Record (MBR) of DEVICE. The MBR will be 
92
    backed up to PARTITION.
15 beyerle@PS 93
 
21 beyerle@PS 94
  OPTIONS:
15 beyerle@PS 95
 
34 beyerle@PS 96
    -h   --help       : Print this screen
97
    -swap=[partition] : Use [partition] as swap
98
    -win=[partition]  : Your active Windows partition. If not given, 
22 beyerle@PS 99
                        $SCRIPTNAME tries to find it
34 beyerle@PS 100
    -nogrub           : Do not install grub. You have to install 
26 beyerle@PS 101
                        manually a bootloader (not recommended)
34 beyerle@PS 102
    -floppy           : Needed, if grub should be installed on floppy
31 beyerle@PS 103
                        In this case use -mbr=/dev/fd0 -floppy
34 beyerle@PS 104
    -norpmremove      : Do not remove RPMs that can break future 
105
                        updates (not recommended)
106
    -y                : Answer all questions with yes
15 beyerle@PS 107
 
21 beyerle@PS 108
  Example:
109
 
22 beyerle@PS 110
  $SCRIPTNAME -swap=/dev/sda3 -mbr=/dev/sda /dev/sda2
21 beyerle@PS 111
 
112
    Will install LiveCD on /dev/sda2 (= second partition on 
113
    first SATA disk). All data on /dev/sda2 will be deleted.
114
    /dev/sda3 has to be a Linux Swap partion. GRUB will be 
115
    installed in the MBR of /dev/sda (= first SATA disk).
116
 
31 beyerle@PS 117
  Remarks:
118
 
119
    To display your hard disk partitions, user 'fdisk -l'.
120
    Use fdisk, qtparted or parted to create an empty Linux
121
    partition.
122
 
15 beyerle@PS 123
EOF
124
}
125
 
126
 
21 beyerle@PS 127
function exit_now() {
128
 
129
    local exitcode=$1
130
    umount $INSTALL_PART 2>/dev/null
131
    exit $exitcode
132
}
133
 
134
 
135
 
15 beyerle@PS 136
###############################################################
137
# Main
138
###############################################################
139
 
16 beyerle@PS 140
### are we root?
141
### -----------------------------------------------------------
15 beyerle@PS 142
if [ "$( whoami )" != "root" ]; then
31 beyerle@PS 143
    echo; echo "Please run this script as root: 'su - -c $SCRIPTNAME'"; echo
21 beyerle@PS 144
    exit_now 1
15 beyerle@PS 145
fi
146
 
16 beyerle@PS 147
 
15 beyerle@PS 148
### read options from command-line
16 beyerle@PS 149
### -----------------------------------------------------------
15 beyerle@PS 150
while [ $# -gt 0 ]; do
151
 
152
    case "$1" in
153
       -h)
21 beyerle@PS 154
            usage; exit_now;;
22 beyerle@PS 155
 
21 beyerle@PS 156
       --help)
157
            usage; exit_now;;
22 beyerle@PS 158
 
24 beyerle@PS 159
       -swap*)
22 beyerle@PS 160
           if echo $1 | grep -q '=' ; then
161
	       SWAP_PART=$( echo $1 | sed 's/^-swap=//' )
162
	   else
163
	       shift
24 beyerle@PS 164
               SWAP_PART=$1
22 beyerle@PS 165
	   fi
34 beyerle@PS 166
	   ;;
22 beyerle@PS 167
 
24 beyerle@PS 168
       -mbr*)
22 beyerle@PS 169
           if echo $1 | grep -q '=' ; then
170
	       MBR_DEV=$( echo $1 | sed 's/^-mbr=//' )
171
	   else
172
	       shift
24 beyerle@PS 173
               MBR_DEV=$1
22 beyerle@PS 174
	   fi
34 beyerle@PS 175
	   ;;
22 beyerle@PS 176
 
24 beyerle@PS 177
       -win*)
22 beyerle@PS 178
           if echo $1 | grep -q '=' ; then
179
	       WIN_PART=$( echo $1 | sed 's/^-win=//' )
180
	   else
181
	       shift
24 beyerle@PS 182
               WIN_PART=$1
22 beyerle@PS 183
	   fi
34 beyerle@PS 184
	   ;;
22 beyerle@PS 185
 
16 beyerle@PS 186
       -nogrub)
34 beyerle@PS 187
            NOGRUB=$1;;
22 beyerle@PS 188
 
29 beyerle@PS 189
       -norpmremove)
34 beyerle@PS 190
            NORPMREMOVE=$1;;
29 beyerle@PS 191
 
18 beyerle@PS 192
       -floppy)
34 beyerle@PS 193
            FLOPPY=$1;;
22 beyerle@PS 194
 
15 beyerle@PS 195
       -y)
34 beyerle@PS 196
            YES=$1;;
15 beyerle@PS 197
 
198
       *)
34 beyerle@PS 199
            INSTALL_PART=$1;;
15 beyerle@PS 200
    esac
201
 
34 beyerle@PS 202
    shift
203
 
15 beyerle@PS 204
done
205
echo
206
 
16 beyerle@PS 207
 
28 beyerle@PS 208
### display fdisk -l
209
### -----------------------------------------------------------
210
echo "Output of 'fdisk -l' ..."
211
fdisk -l
212
echo
213
 
214
 
30 beyerle@PS 215
### test if $INSTALL_PART is defined
22 beyerle@PS 216
### -----------------------------------------------------------
217
if [ ! $INSTALL_PART ]; then
218
    echo "No partition defined for installation"
30 beyerle@PS 219
    echo "Please see '$SCRIPTNAME -h'"; echo
22 beyerle@PS 220
    exit_now 1
221
fi
222
 
223
 
15 beyerle@PS 224
### test if MBR_DEV is given
16 beyerle@PS 225
### -----------------------------------------------------------
226
if [ ! $NOGRUB ]; then
227
    if [ ! $MBR_DEV ]; then
18 beyerle@PS 228
	echo "No MBR device defined."
30 beyerle@PS 229
	echo "Please see '$SCRIPTNAME -h'"; echo
21 beyerle@PS 230
	exit_now 1
16 beyerle@PS 231
    fi
15 beyerle@PS 232
fi
233
 
16 beyerle@PS 234
 
15 beyerle@PS 235
### test if $INSTALL_PART exists
16 beyerle@PS 236
### -----------------------------------------------------------
15 beyerle@PS 237
fdisk -l | cut -d" " -f1 | grep -q "^${INSTALL_PART}$"
238
if [ "$?" != "0" ]; then
28 beyerle@PS 239
    echo "Partition $INSTALL_PART not found! See 'fdisk -l'"
30 beyerle@PS 240
    echo "Or you have to reboot first to make the partition table active"; echo
21 beyerle@PS 241
    exit_now 1
15 beyerle@PS 242
fi
243
 
16 beyerle@PS 244
 
30 beyerle@PS 245
### test if $INSTALL_PART is a Linux partition
16 beyerle@PS 246
### -----------------------------------------------------------
30 beyerle@PS 247
fdisk -l | grep "Linux$" | cut -d" " -f1 | grep -q "^${INSTALL_PART}$"
248
if [ "$?" != "0" ]; then
249
    echo "Partition $INSTALL_PART is not a Linux partition! (see 'fdisk -l')"
250
    echo "Use fdisk and/or qtparted to create a Linux partition!"
251
    echo "You have to reboot first to make the partition table active"; echo
252
    exit_now 1
253
fi
15 beyerle@PS 254
 
255
 
30 beyerle@PS 256
### test if $SWAP_PART exists and is a Linux Swap partition
16 beyerle@PS 257
### -----------------------------------------------------------
15 beyerle@PS 258
if [ $SWAP_PART ]; then
259
    fdisk -l | cut -d" " -f1 | grep -q "^${SWAP_PART}$"
260
    if [ "$?" != "0" ]; then
28 beyerle@PS 261
	echo "Swap partition $SWAP_PART not found! (see 'fdisk -l')"
262
	echo "Or you have to reboot first to make the partition table active"; echo
21 beyerle@PS 263
	exit_now 1
15 beyerle@PS 264
    fi
44 beyerle@PS 265
    fdisk -l | grep "Linux swap" | cut -d" " -f1 | grep -q "^${SWAP_PART}$"
15 beyerle@PS 266
    if [ "$?" != "0" ]; then
28 beyerle@PS 267
	echo "Partition $SWAP_PART is not a Linux swap partition! (see 'fdisk -l')"
30 beyerle@PS 268
	echo "Use fdisk and/or qtparted to create a Linux Swap partition!"
28 beyerle@PS 269
	echo "You have to reboot first to make the partition table active"; echo
21 beyerle@PS 270
	exit_now 1
15 beyerle@PS 271
    fi
272
fi
273
 
274
 
30 beyerle@PS 275
### set $INSTALL_DEV (eg. /dev/sda)
16 beyerle@PS 276
### -----------------------------------------------------------
30 beyerle@PS 277
INSTALL_DEV=$( echo "$INSTALL_PART" | sed -e 's%\([sh]d[a-z]\)[0-9]*$%\1%' )
278
INSTALL_PART_NR=$( echo "$INSTALL_PART" | sed -e 's%.*/[sh]d[a-z]\([0-9]*\)$%\1%' )
279
 
280
 
281
### print warning
282
### -----------------------------------------------------------
26 beyerle@PS 283
echo                     "------------------------------------------------------------"
284
echo                     "   LiveCD will be installed on partition $INSTALL_PART"
15 beyerle@PS 285
[ "$SWAP_PART" ] && echo " Partition $SWAP_PART will be used as swap partition."
26 beyerle@PS 286
[ ! $NOGRUB ]    && echo " GRUB will be installed in Master Boot Record of $MBR_DEV"
287
echo                     "       !! All data on $INSTALL_PART will be lost !!"
288
echo                     "------------------------------------------------------------"
15 beyerle@PS 289
echo
16 beyerle@PS 290
 
15 beyerle@PS 291
 
26 beyerle@PS 292
### continue?
16 beyerle@PS 293
### -----------------------------------------------------------
15 beyerle@PS 294
if [ ! $YES ]; then
295
    echo -n "Continue (y/N)? "
18 beyerle@PS 296
    read key
15 beyerle@PS 297
    echo
21 beyerle@PS 298
    [ "$key" != "y" ] && exit_now 0
15 beyerle@PS 299
fi
300
 
301
 
26 beyerle@PS 302
### format $SWAP_PART
21 beyerle@PS 303
### -----------------------------------------------------------
26 beyerle@PS 304
if [ $SWAP_PART ]; then
305
    echo "Make swap on $SWAP_PART ..."
306
    mkswap $SWAP_PART
24 beyerle@PS 307
    echo
308
fi
21 beyerle@PS 309
 
310
 
15 beyerle@PS 311
### format $INSTALL_PART
16 beyerle@PS 312
### -----------------------------------------------------------
15 beyerle@PS 313
echo -n "Format $INSTALL_PART, please wait ... " 
21 beyerle@PS 314
mkfs.ext3 -q $INSTALL_PART || exit_now 1
15 beyerle@PS 315
echo "done."; echo
316
 
317
 
318
### mount $INSTALL_PART
16 beyerle@PS 319
### -----------------------------------------------------------
15 beyerle@PS 320
echo -n "Try to mount $INSTALL_PART to $NEW ... "
321
mkdir -p $NEW
21 beyerle@PS 322
mount $INSTALL_PART $NEW || exit_now 1
15 beyerle@PS 323
echo "done."; echo
324
 
325
 
326
### copy root dirs
16 beyerle@PS 327
### -----------------------------------------------------------
26 beyerle@PS 328
echo "Copy Live System to $INSTALL_PART ..."
15 beyerle@PS 329
root_dirs=$( ls / )
330
for dir in $root_dirs; do
331
    # check if dir is not in $DIR_NOT_COPY
332
    do_not_copy=""
333
    for not_dir in $DIR_NOT_COPY; do
334
	if [ "$not_dir" = "/$dir" ]; then 
335
	    do_not_copy="yes"
336
	    break
337
	fi
338
    done
339
    # do not copy links
340
    [ -L /$dir ] && do_not_copy="yes"
341
 
21 beyerle@PS 342
    fail=""
15 beyerle@PS 343
    if [ ! $do_not_copy ]; then
344
	echo -n "  * Copy  /$dir ... "
21 beyerle@PS 345
	cp -a /$dir $NEW || fail=true
15 beyerle@PS 346
	echo "done."
347
    fi
348
done
349
echo
21 beyerle@PS 350
if [ $fail ]; then
351
    echo "ERROR: Not everything was copied to $INSTALL_PART"
352
    exit_now 1
353
fi
15 beyerle@PS 354
 
355
 
16 beyerle@PS 356
### move /usr/opt back to /opt
357
### -----------------------------------------------------------
15 beyerle@PS 358
if [ -d $NEW/usr/opt ]; then
359
    echo -n "Move /opt back ... "
360
    mv $NEW/usr/opt $NEW/
361
    echo "done."; echo
362
fi
363
 
364
 
365
### create dirs which were not copied
16 beyerle@PS 366
### -----------------------------------------------------------
15 beyerle@PS 367
for dir in $DIR_NOT_COPY; do
368
    mkdir $NEW/$dir
369
done
26 beyerle@PS 370
# we do not need this directories
371
rmdir $NEW/livecd
372
# if not yet existing, create
373
mkdir -p $NEW/srv
374
mkdir -p $NEW/selinux
15 beyerle@PS 375
 
376
 
377
### copy back original files
16 beyerle@PS 378
### -----------------------------------------------------------
15 beyerle@PS 379
echo -n "Restore original files ... " 
380
for file in $FILES_RESTORE; do
28 beyerle@PS 381
    [ -r $NEW/${file}.ori ] && mv -f $NEW/${file}.ori $NEW/${file} 
15 beyerle@PS 382
done
383
echo "done."; echo
384
 
385
 
16 beyerle@PS 386
### define kernel version
387
### -----------------------------------------------------------
388
rpm --quiet -q kernel     && UP_installed=true
389
rpm --quiet -q kernel-smp && SMP_installed=true
390
[ $UP_installed ]  && KERNEL_VERSION=$( rpm -q --qf "%{V}-%{R}" kernel 2>/dev/null )
391
[ $SMP_installed ] && KERNEL_VERSION=$( rpm -q --qf "%{V}-%{R}" kernel-smp  2>/dev/null )
392
if [ ! $KERNEL_VERSION ]; then
393
    echo "ERROR: Kernel version could not be determined - installation failed"; echo
21 beyerle@PS 394
    exit_now 1
16 beyerle@PS 395
fi    
15 beyerle@PS 396
 
18 beyerle@PS 397
 
22 beyerle@PS 398
 
24 beyerle@PS 399
if [ ! $NOGRUB ]; then
15 beyerle@PS 400
 
26 beyerle@PS 401
    ### Backup Master Boot Record MBR
402
    ### -----------------------------------------------------------
403
    if [ ! $NOGRUB ]; then
404
	# do we have already a backup?
405
	MBR_FILENAME="MBR$( echo $MBR_DEV | tr / _ ).bak"
406
	if [ ! -e /tmp/$MBR_FILENAME ]; then
407
	    echo "Backup Master Boot Record (MBR) of $MBR_DEV ..."
408
	    dd if=$MBR_DEV of=/tmp/$MBR_FILENAME bs=512 count=1
409
	fi
410
	cp -a /tmp/$MBR_FILENAME $NEW/$MBR_FILENAME
411
	echo "MBR saved as $MBR_FILENAME on $INSTALL_PART and on /tmp"
412
	echo
413
    fi
414
 
415
 
24 beyerle@PS 416
    ### install grub
417
    ### -----------------------------------------------------------
26 beyerle@PS 418
    echo "Run grub-install ... "
24 beyerle@PS 419
    mkdir -p $NEW/boot/grub
420
    if [ $FLOPPY ]; then
421
	grub-install --root-directory=$NEW $MBR_DEV
422
    else
423
	grub-install --no-floppy --root-directory=$NEW $MBR_DEV
424
    fi
425
    echo "done."; echo
15 beyerle@PS 426
 
427
 
24 beyerle@PS 428
    ### check for device.map file 
429
    ### -----------------------------------------------------------
430
    DEVICE_MAP=$NEW/boot/grub/device.map
431
    if [ ! -e $NEW/boot/grub/device.map ]; then
432
	echo "ERROR: $NEW/boot/grub/device.map not found"
433
	exit_now 1
434
    fi
15 beyerle@PS 435
 
22 beyerle@PS 436
 
24 beyerle@PS 437
    ### convert dev syntax to grub syntax
438
    ### -----------------------------------------------------------
439
    GRUB_INSTALL_DEV=$( grep $INSTALL_DEV $DEVICE_MAP | awk '{ print $1 }' )
440
    GRUB_ROOT_PART=$( echo "$GRUB_INSTALL_DEV" | sed "s%)$%,`expr $INSTALL_PART_NR - 1`)%" )
22 beyerle@PS 441
 
15 beyerle@PS 442
 
24 beyerle@PS 443
    ### find active Windows partition
444
    ### -----------------------------------------------------------
445
    if [ ! $WIN_PART ]; then
446
        # try to find active Windows partition
447
	WIN_PART=$( fdisk -l 2>/dev/null | awk '{ if ($2 == "*" && $7 ~ "NTFS") print $1 }' | head -1 )
448
    fi
449
 
450
    if [ $WIN_PART ]; then
451
	WIN_installed=true
452
	WIN_DISK=$( echo "$WIN_PART" | sed -e 's%\([sh]d[a-z]\)[0-9]*$%\1%' )
453
	WIN_PART_NR=$( echo "$WIN_PART" | sed -e 's%.*/[sh]d[a-z]\([0-9]*\)$%\1%' )
454
        # convert dev syntax to grub syntax
455
	GRUB_WIN_DEV=$( grep $WIN_DISK $DEVICE_MAP | awk '{ print $1 }' )
456
	GRUB_WIN_PART=$( echo "$GRUB_WIN_DEV" | sed "s%)$%,`expr $WIN_PART_NR - 1`)%" )
457
 
458
        # $GRUB_WIN_PART should be something like (hd0,0)
459
	echo "Found active Windows partition ( $WIN_PART = $GRUB_WIN_PART )" 
460
	echo "Will add entry for Windows in GRUB."
461
	echo
462
    fi
463
 
464
 
465
    ### create grub.conf file
466
    ### -----------------------------------------------------------
26 beyerle@PS 467
    echo "Create grub.conf ..."
24 beyerle@PS 468
 
28 beyerle@PS 469
    TITLE="Linux"
470
    [ -e $NEW//etc/redhat-release ] && TITLE=$( cat $NEW/etc/redhat-release )
471
 
24 beyerle@PS 472
    cat > $NEW/boot/grub/grub.conf <<EOF
15 beyerle@PS 473
# grub.conf generated by $SCRIPTNAME
474
default=0
475
timeout=5
476
splashimage=$GRUB_ROOT_PART/boot/grub/splash.xpm.gz
477
#hiddenmenu
16 beyerle@PS 478
EOF
479
 
24 beyerle@PS 480
    if [ $UP_installed ]; then
26 beyerle@PS 481
	echo "Add entry for UP kernel into grub.conf"
24 beyerle@PS 482
	cat >> $NEW/boot/grub/grub.conf <<EOF
28 beyerle@PS 483
title $TITLE (${KERNEL_VERSION})
15 beyerle@PS 484
        root $GRUB_ROOT_PART
485
	kernel /boot/vmlinuz-$KERNEL_VERSION ro root=$INSTALL_PART
486
	initrd /boot/initrd-$KERNEL_VERSION.img
16 beyerle@PS 487
EOF
24 beyerle@PS 488
    fi
16 beyerle@PS 489
 
24 beyerle@PS 490
    if [ $SMP_installed ]; then
26 beyerle@PS 491
	echo "Add entry for SMP kernel into grub.conf"
24 beyerle@PS 492
	cat >> $NEW/boot/grub/grub.conf <<EOF
28 beyerle@PS 493
title $TITLE (${KERNEL_VERSION}smp)
16 beyerle@PS 494
        root $GRUB_ROOT_PART
495
	kernel /boot/vmlinuz-${KERNEL_VERSION}smp ro root=$INSTALL_PART
496
	initrd /boot/initrd-${KERNEL_VERSION}smp.img
497
EOF
24 beyerle@PS 498
    fi
16 beyerle@PS 499
 
24 beyerle@PS 500
    if [ $WIN_installed ]; then
26 beyerle@PS 501
	echo "Add entry for Windows into grub.conf"
24 beyerle@PS 502
	cat >> $NEW/boot/grub/grub.conf <<EOF
15 beyerle@PS 503
title Windows
504
        rootnoverify $GRUB_WIN_PART
505
        chainloader +1
506
EOF
24 beyerle@PS 507
    fi
508
 
509
    chmod 600 $NEW/boot/grub/grub.conf
510
    ln -s ../boot/grub/grub.conf $NEW/etc/grub.conf
511
    ln -s ./grub.conf $NEW/boot/grub/menu.lst
512
    echo "done."; echo
513
 
16 beyerle@PS 514
fi
15 beyerle@PS 515
 
516
 
27 beyerle@PS 517
### install kernel and other files into /boot
16 beyerle@PS 518
### -----------------------------------------------------------
21 beyerle@PS 519
echo "Install kernel(s) ..."
15 beyerle@PS 520
 
16 beyerle@PS 521
[ -e /boot/vmlinuz ]      && BOOT_DIR=/boot
522
[ -e /boot/boot/vmlinuz ] && BOOT_DIR=/boot/boot
15 beyerle@PS 523
 
16 beyerle@PS 524
if [ ! $BOOT_DIR ]; then
525
    echo "ERROR: No kernel found - installation failed"; echo
21 beyerle@PS 526
    exit_now 1
16 beyerle@PS 527
fi
528
 
529
cp -a $BOOT_DIR/vmlinuz            $NEW/boot/vmlinuz-${KERNEL_VERSION}
530
cp -a $BOOT_DIR/vmlinuzs           $NEW/boot/vmlinuz-${KERNEL_VERSION}smp  2>/dev/null
531
cp -a $BOOT_DIR/System.map-*       $NEW/boot/
532
cp -a $BOOT_DIR/config-*           $NEW/boot/
26 beyerle@PS 533
cp -a $BOOT_DIR/symvers-*.gz       $NEW/boot/        2>/dev/null
16 beyerle@PS 534
cp -a $BOOT_DIR/grub/splash.xpm.gz $NEW/boot/grub/
26 beyerle@PS 535
cp -a $BOOT_DIR/message.ja         $NEW/boot/        2>/dev/null
536
cp -a $BOOT_DIR/message            $NEW/boot/        2>/dev/null
537
 
16 beyerle@PS 538
echo "done."; echo
539
 
540
 
21 beyerle@PS 541
### create /etc/fstab
16 beyerle@PS 542
### -----------------------------------------------------------
21 beyerle@PS 543
cat > $NEW/etc/fstab <<EOF
544
$INSTALL_PART         /                    ext3    defaults        1 1
545
devpts            /dev/pts             devpts  gid=5,mode=620  0 0
546
tmpfs             /dev/shm             tmpfs   defaults        0 0
547
proc              /proc                proc    defaults        0 0
548
sysfs             /sys                 sysfs   defaults        0 0
549
EOF
550
if [ $SWAP_PART ]; then
551
    echo "$SWAP_PART         swap                 swap    defaults        0 0" >> $NEW/etc/fstab
552
fi
553
 
554
 
555
### make initrd 
556
### (needs $NEW/etc/fstab to find correct modules for root filesystem !!)
557
### -----------------------------------------------------------
558
echo "Create initrd(s) ..."
22 beyerle@PS 559
# initrd should not be build on tmpfs (we take $NEW/tmp instead of /tmp)
560
sed -i "s|^TMPDIR=.*|TMPDIR=\"$NEW/tmp\"|" /usr/sbin/livecd-mkinitrd
561
 
16 beyerle@PS 562
if [ $UP_installed ]; then
21 beyerle@PS 563
    depmod -a ${KERNEL_VERSION}
22 beyerle@PS 564
    /usr/sbin/livecd-mkinitrd --fstab=$NEW/etc/fstab \
21 beyerle@PS 565
                    $NEW//boot/initrd-${KERNEL_VERSION}.img ${KERNEL_VERSION}
18 beyerle@PS 566
    if [ ! -e $NEW/boot/initrd-${KERNEL_VERSION}.img ]; then
567
	echo "ERROR: Failed to create $NEW/boot/initrd-${KERNEL_VERSION}.img"
21 beyerle@PS 568
	exit_now 1
18 beyerle@PS 569
    fi
16 beyerle@PS 570
fi
571
if [ $SMP_installed ]; then
21 beyerle@PS 572
    depmod -a ${KERNEL_VERSION}smp
22 beyerle@PS 573
    /usr/sbin/livecd-mkinitrd --fstab=$NEW/etc/fstab \
21 beyerle@PS 574
                    $NEW/boot/initrd-${KERNEL_VERSION}smp.img ${KERNEL_VERSION}smp
18 beyerle@PS 575
    if [ ! -e $NEW/boot/initrd-${KERNEL_VERSION}smp.img ]; then
576
	echo "ERROR: Failed to create $NEW/boot/initrd-${KERNEL_VERSION}smp.img"
21 beyerle@PS 577
	exit_now 1
18 beyerle@PS 578
    fi
16 beyerle@PS 579
fi
580
echo "done."; echo
581
 
582
 
15 beyerle@PS 583
### remove LiveCD init.d scripts
16 beyerle@PS 584
### -----------------------------------------------------------
585
for file in $LIVECD_INIT_SCRIPTS; do
33 beyerle@PS 586
    rm -f $NEW/etc/rc.d/init.d/$file
16 beyerle@PS 587
    for n in 0 1 2 3 4 5 6; do
588
	rm -f $NEW/etc/rc.d/rc${n}.d/*$file
589
    done
15 beyerle@PS 590
done
591
 
16 beyerle@PS 592
 
593
### restore cronjobs
594
### -----------------------------------------------------------
26 beyerle@PS 595
mv $NEW/etc/cron_backup/sysstat $NEW/etc/cron.d/ 2>/dev/null
596
mv $NEW/etc/cron_backup/00-makewhatis.cron.weekly $NEW/etc/cron.weekly/00-makewhatis.cron 2>/dev/null
597
mv $NEW/etc/cron_backup/* $NEW/etc/cron.daily/
16 beyerle@PS 598
 
599
 
29 beyerle@PS 600
### prepare chroot to $NEW
601
### -----------------------------------------------------------
602
mount --bind /dev $NEW/dev
603
mount --bind /sys $NEW/sys
604
mount -t proc proc $NEW/proc
605
 
606
 
18 beyerle@PS 607
### turn on kudzu again
608
### -----------------------------------------------------------
26 beyerle@PS 609
chroot $NEW chkconfig kudzu on
18 beyerle@PS 610
 
611
 
29 beyerle@PS 612
### remove RPMs that can break future updates  
613
### -----------------------------------------------------------
614
if [ ! $NORPMREMOVE ]; then
615
    echo "Remove RPMs that may break future updates ..."
616
    chroot $NEW rpm -qa 2>/dev/null > /tmp/rpmlist
617
 
618
    # Scientific Linux RPMs
619
    RPMSTOREMOVE="$RPMS_TO_REMOVE $RPMS_TO_REMOVE_SL"
620
 
621
    # PSI Scientific Linux RPMs
622
    if [ -e /etc/sysconfig/cfengine ]; then
623
	RPMSTOREMOVE="$RPMS_TO_REMOVE $RPMS_TO_REMOVE_PSI"
624
    fi
625
 
626
    for rpm in $RPMSTOREMOVE; do
627
	rpms_remove=$( cat /tmp/rpmlist | grep "^$rpm" )
628
	for rpm_remove in $rpms_remove; do	
47 beyerle@PS 629
	    chroot $NEW rpm -e --nodeps $rpm_remove >/dev/null 2>&1
46 beyerle@PS 630
	    [ "$?" = "0" ] && echo " removing $rpm_remove"
29 beyerle@PS 631
	done
632
    done
633
    echo "done."; echo
634
fi
635
 
636
 
43 beyerle@PS 637
### disable nvidia driver 
638
### -----------------------------------------------------------
639
# not in case of a PSI installation
640
if [ ! -e /etc/sysconfig/cfengine ]; then
47 beyerle@PS 641
    if [ -e $NEW/etc/X11/xorg.conf.nv_SAVED ]; then
43 beyerle@PS 642
        # copy back original xorg.conf
47 beyerle@PS 643
	mv -f $NEW/etc/X11/xorg.conf.nv_SAVED $NEW/etc/X11/xorg.conf
43 beyerle@PS 644
        # disable nvidia libs
645
	LIB=lib
646
	[ $( arch ) = "x86_64" ] && LIB=lib64
47 beyerle@PS 647
	mv -f $NEW/usr/X11R6/$LIB/modules/extensions/xxx.libGLcore.a.saved_by_nvidia \
648
              $NEW/usr/X11R6/$LIB/modules/extensions/libGLcore.a
649
	mv -f $NEW/usr/X11R6/$LIB/modules/extensions/xxx.libglx.a.saved_by_nvidia \
650
              $NEW/usr/X11R6/$LIB/modules/extensions/libglx.a
651
	rm -f $NEW/usr/X11R6/$LIB/modules/extensions/libglx.so
652
	rm -f $NEW/usr/X11R6/$LIB/libGL.so*
653
	rm -f $NEW/usr/$LIB/libGLcore.so
43 beyerle@PS 654
    fi
655
fi
656
 
657
 
15 beyerle@PS 658
### umount $INSTALL_PART
16 beyerle@PS 659
### -----------------------------------------------------------
29 beyerle@PS 660
umount $NEW/dev
661
umount $NEW/sys
662
umount $NEW/proc
16 beyerle@PS 663
umount $INSTALL_PART
15 beyerle@PS 664
 
22 beyerle@PS 665
 
666
### print summary
667
### -----------------------------------------------------------
26 beyerle@PS 668
echo                     "--------------------------------------------------------------"
669
echo                     "  LiveCD installed on partition $INSTALL_PART"
670
[ "$SWAP_PART" ] && echo "  Partition $SWAP_PART will be used as swap partition"
22 beyerle@PS 671
echo
28 beyerle@PS 672
[ ! $NOGRUB ]    && echo "  GRUB installed in Master Boot Record (MBR) of $MBR_DEV"
673
[ ! $NOGRUB ]    && echo "  MBR saved as $MBR_FILENAME on $INSTALL_PART and in /tmp"
26 beyerle@PS 674
[ ! $NOGRUB ]    && echo "  If you have to restore MBR, execute under Linux:"
675
[ ! $NOGRUB ]    && echo "  # dd if=$MBR_FILENAME of=$MBR_DEV bs=512 count=1"
676
echo 
677
[ $WIN_PART ]    && echo "  Entry created in grub.conf for Windows partition $WIN_PART"
678
echo                     "--------------------------------------------------------------"
679
echo                     "End of $SCRIPTNAME"
680
echo