Again hello community,
I'd tried to made my own live CD with programms installed but I dont get the programms installed into the iso...
without installed programm only with files it's no problem
I'd found several tutorials like these:http://forum.tinycorelinux.net/index.php?topic=6637.0http://wiki.tinycorelinux.net/wiki:remastering[removed due to policy violation]/modified-cd.html
http://wiki.tinycorelinux.net/wiki:integrating_extensions.
.
.
so I'd tried it that way:
cd
wget
http://www.tinycorelinux.net/4.x/x86/release/Core-current.isosudo mkdir /mnt/tmp
sudo mount Core-current.iso /mnt/tmp -o loop,ro
sudo cp -a /mnt/tmp/boot /tmp
sudo mv /tmp/boot/core.gz /tmp
sudo umount /mnt/tmp
mkdir /tmp/extract
cd /tmp/extract
sudo zcat /tmp/core.gz | sudo cpio -i -H newc -d
sudo depmod -a -b /tmp/extract 3.0.21-tinycore
tce-load -wi gzip
cd /tmp/extract
sudo find | sudo cpio -o -H newc | gzip -2 > ../mycore.gz
tce-load -wi mkisofs-tools.tcz
tce-load -wi brasero.tcz
tce-load -wi isomaster.tcz
cd /tmp
sudo mv mycore.gz boot
sudo mv boot/mycore.gz boot/core.gz
mkdir newiso
sudo mv boot newiso
mkdir newiso/tce/optional
tce-load -wi nano # thats the example for all programms....
sudo cp /tmp/tce/optional /tmp/newiso/tce/optional
sudo mkisofs -l -J -R -V TC-custom -no-emul-boot -boot-load-size 4 \
-boot-info-table -b boot/isolinux/isolinux.bin \
-c boot/isolinux/boot.cat -o sfos.iso newiso
what did I do wrong?
in own tutoral it said that it should be in "optional" other said only "tce" I'm confused
Thank you in advance