ADD YOUR PKG FILE(S)
PKG files should be named so that they appear alphabetically in the order you wish them to be installed when doing an "ls -l" command.
The easiest way to do this is to prepend "00" "01" 02" etc in front of each filename.
Example: I want "my-daemon" to be installed first, then "my-config",
then "my-archiver". I would do the following (in whatever directory
my PKG files are stored): |
cd /my/pkgfile/directory
cp my-daemon.pkg 00my-daemon.pkg
cp my-config.pkg 01my-config.pkg
cp my-archiver.pkg 02my-archiver.pkg
|
| If you are only adding a single PKG file, then you don't need to
worry about this step. |
| Switch to the "bundles" directory: |
cd /home/osrcd/nfsroot-x86/bto-sync/bundles
|
| Copy your PKG files (individually): |
cp /my/pkgfile/directory/00my-daemon.pkg .
cp /my/pkgfile/directory/01my-config.pkg .
cp /my/pkgfile/directory/02my-archiver.pkg .
or via wildcard (if you know you want _all_ PKG files in the directory):
cp /my/pkgfile/directory/*.pkg .
|
| Double-check the order in which they will be installed: |
ls -l
|
| CREATE A NEW ISO-9660 IMAGE OF THE MODIFIED CD CONTENTS |
cd /home/osrcd
mkisofs -P YourName -b boot/eltorito.img
-c boot/boot.catalog -R -l -L -o /tmp/filename.iso .
This is ONE LONG LINE. Make sure you copy the entire line!
|
Note: the trailing period (preceded with a space) is part of the
mkisofs command!
Note: the third switch on the second line above is a small "L" -- not the number one!
Note: if YourName has whitespace in it, then put quotes around it ("Your Name")
Note: use "man mkisofs" to see what the various switches are for
This makes an ISO image of your new OSRCD, named filename.iso, in the
/tmp directory. We provide directions here how to burn the ISO to a CD under Linux using cdrecord. You can also transfer this ISO
image (via FTP, etc) to another computer if that one has your CD burning software/hardware already installed.
|
| BURN YOUR NEW ISO IMAGE TO A CD |