shui
Group: Members
Posts: 15
Joined: May 2005 |
|
Posted: June 25 2005,14:40 |
|
Ok, I'm just starting to figure this all out. When you say $sudo mke2fs /dev/hda3 to format a new partition, is there any reason you can't just make the directories on an old partition?
Code Sample | #cp -Rp /mnt/hda1/Dokument /mnt/hda3/newcd (Docs I want on my disc) #cp -Rp /mnt/hda1/optional /mnt/hda3/newcd (The “optional” directory) #cp -Rp /mnt/hda1/Bootload/* /mnt/hda3/newcd (Modules I want to load at boottime) |
For this part, I can just copy all of the files I want into the same place? Like .dsl files and documents all go into that one folder?
Code Sample | #cp -Rp /mnt/hda1/backgrounds/* /mnt/hda3/source/etc/skel/.fluxbox #cp -Rp /mnt/hda1/styles/* /mnt/hda3/source/usr/share/fluxbox/styles |
What should I be getting out of these folders? Will I have these folders on my windows hard drive? Can I skip this step?
Quote | Create the custom compressed image file:
#mkisofs -R /mnt/hda3/source | create_compressed_fs - 65536 > /mnt/hda3/newcd/KNOPPIX/KNOPPIX
Create the iso-file as follows:
#cd /mnt/hda3 #mkisofs -no-pad -l -r -J -no-emul-boot -boot-load-size 4 -boot-info-table -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat -hide-rr-moved -o mydsl.iso newcd
Copy the iso-file to the first partition on your harddrive
#cp /mnt/hda3/mydsl.iso /mnt/hda1
Reboot and burn the cd and you are good to go with your brand new remaster |
This is where the actual .iso file is made, which is the part I can't do in windows. Could I do all the previous steps in windows, then load DSL, mount hda1, and do these steps?
|