LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   syslinux boot cd (https://www.linuxquestions.org/questions/linux-software-2/syslinux-boot-cd-410277/)

eqi 02-01-2006 01:24 AM

syslinux boot cd
 
Please help....

hello , i have created a bootable cd rom with syslinux , but when it starts i get the following errors:

FATAL: Module unknown not found.
mount: Mounting /dev/ram0 on /root failed: No such device
Begin : Runing /scripts/local-bottom ...
Done.
Done.
Begin: Running /scripts/init-bottom ...
Done.
mount: Mounting /root/dev on /dev/ .static/dev failed: No such fail or directory
mount: Mounting /dev on /root/dev failed: No such file or directory
Target filesystem desn't have /sbin/init

BusyBox v1.00-pre10(Debian 20040623-1ubuntu22) Built-in shell (ash)
Enter 'help' for a list of vuilt-in commands.

/bin/sh: can't access tty; job control turned off


To make the CD I used the ubuntu kernel and initrd , and mi isolinux.cfg is the following:


label linux
kernel vmlinuz
append root=/dev/ram0 initrd=initrd


Please help me....

Thank you..

homey 02-01-2006 06:55 PM

Check out the instructions from coofercat...
http://www.coofercat.com/wiki/CustomFedoraBootableCD

Here is part of what I used.
Code:

mkdir /home/boot
mkbootdisk --iso --device /home/boot.iso `uname -r`
mount -o loop,rw /home/boot.iso /home/boot

You'll find nothing but an isolinux subdirectory, which you should copy into your "CD system". After that, you're done with the image, so unmount /home/boot and delete /home/boot.iso.

mkdir /home/bootcd
cp -R /home/boot/isolinux /home/bootcd
umount /home/boot
rmdir /home/boot
rm -f /home/boot.iso

isolinux.cfg

default linux
prompt 0
timeout 0
label linux
kernel vmlinuz
append initrd=initrd.gz ro root=/dev/hdc

This will instruct isolinux to look to /dev/hdc for the root of the system,
where it will also find the initrd image.


All times are GMT -5. The time now is 01:08 PM.