Hi leekimpark
While it may be possible to automate this, it's too easy to get wrong, so I won't attempt it. How about this:
Create a file called CopyMysql containing
#!/bin/sh
SRC=$1
DEST=$2
cd /mnt/$SRC/DirectoryContainingMysql
mkdir -p /mnt/$DEST/tce/optional
echo mysql.tcz >> /mnt/$DEST/tce/onboot.lst
cp mysql.* /mnt/$DEST/tce/optional
for i in `cat mysql.tcz.dep`; do cp $i* /mnt/$DEST/tce/optional
Replace DirectoryContainingMysql with the path to where the extension is on the CD, for example, cde/optional
if that is where the extension is in your remaster.
Make the file executable by entering chmod 755 CopyMysql
To run the script, just enter CopyMysql SRC DEST
Where SRC is CDs mount point (sr0, sr1, etc.) and DEST is the drive you installed to (sda2, hdb1, etc.)
Are you talking about mydata.tgz?
Yes, that's what he is referring to, and I don't think that is what you want for this.