LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Making a DVD Install ISO... (https://www.linuxquestions.org/questions/slackware-14/making-a-dvd-install-iso-198074/)

a3Rogue 06-26-2004 05:02 PM

Making a DVD Install ISO...
 
Hi, atm im downloading the directory "slackware-current" from one of the FTP's advertised @ www.slackware.org and I was wondering if it would be possible to burn it to dvd and make it bootable....has anyone accomplished this?

Thnx :)

pqbd 06-26-2004 05:09 PM

Search is your friend. This was asked two days ago. See here.


pqbd

coffeedrinker 06-26-2004 08:07 PM

Here is the script I use:

#!/bin/sh
#
# Script to make your very own Current ISOs
# Author - Jeremy Mann
# jeremy@biochem.uthscsa.edu
#
# Date Started - 09-05-2003
#
# First CD contains a bootable installation, kernels, boot disks,
# root disks and Slackware (minus KDE).
#
# Second CD contains all of KDE and leftovers, but not including source.
# That would mean *another* disc just for sources.
#
# Changelog:
# 03-22-2004: Added an exception for Gnome on the first disc. Current is just too
# big ;) The 2nd ISO has Gnome and KDE.

LOGFILE=isogen.log
DATE=`date +%m%d%y`
PATH=/usr/bin:/usr/local/bin

echo "Making first CD ..."
mkisofs -o ../Slackware-10.$DATE.CD1.iso -R -J -V "Slackware 10 Disc 1" \
-x ./extra -x ./pasture -x ./source -x ./zipslack -x ./testing -x ./attic \
-x ./slackware/gnome -x ./slackware/kde -x ./slackware/kdei \
--hide-rr-moved -v -d -N -no-emul-boot \
-boot-load-size 32 -boot-info-table -sort isolinux/iso.sort \
-b isolinux/isolinux.bin -c isolinux/isolinux.boot \
-A "Slackware 10 Disc 1" . >> $LOGFILE

echo "Making second CD ..."
mkisofs -o ../Slackware-10.$DATE.CD2.iso -R -J -V "Slackware 10 Disc 2" \
-x ./extra -x ./pasture -x ./source -x ./zipslack \
-x ./testing -x ./attic -x ./slackware/a \
-x ./slackware/ap -x ./slackware/d -x ./slackware/e -x ./slackware/f \
-x ./slackware/k -x ./slackware/l \
-x ./slackware/n -x ./slackware/t -x ./slackware/tcl \
-x ./slackware/x -x ./slackware/xap -x ./slackware/y \
--hide-rr-moved -v -d -N -no-emul-boot \
-boot-load-size 32 -boot-info-table -sort isolinux/iso.sort \
-b isolinux/isolinux.bin -c isolinux/isolinux.boot \
-A "Slackware 10 Disc 2" . >> $LOGFILE


All times are GMT -5. The time now is 02:56 PM.