View Single Post

   
  #3 (permalink)  
Old 02-19-2008, 12:42 PM
Peter Christy
 
Posts: n/a
Default Re: Slackware 10 DVD?

Here's the script I use to build a bootable dvd. I call it "dvd.build", make
sure its executable, and put it in the slackware-current (or 10 ;-) directory
(where the changelog.txt file sits). Then simply run it. It will build an iso
image in the path dictated by the second line, and exclude itself from the
finished dvd with line 4.

This was modified from the script used to build cds that was suggested in the
original slack documentation, so I can't claim any great credit for it :-)

The complete image is getting on for 3 GB, so make sure you have plenty of disk
space!

#! /bin/bash
/usr/bin/mkisofs -udf -o /path/to/slackware-10.0_DVD.iso \
-R -J -V "Slackware-10.0" \
-x ./dvd.build \
-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.0 DVD" .

--
Pete
christy@NOattglobalSPAM.net
(make the obvious amendments to reply!)
Reply With Quote