Linux Forums - Linux Help,Advice & support community:LinuxSolved.com

Linux Software => Linux Installation Support => Topic started by: guru on November 10, 2003, 04:57:08 PM

Title: making boot disk
Post by: guru on November 10, 2003, 04:57:08 PM
how to make boot disk after installtion ....
i know we have to use mkbootdisk command wat r the option we must give for it......
wat r the content there will be in bootdisk ...

advanced Thank you!
Title: making boot disk
Post by: Ricky on November 10, 2003, 09:20:25 PM
Well..
To make a boot disk after installation u have gui utility in almost every newer version of Linux distro, better to use that .. but if u want to make urself.. then.

Grub uses two stage for booting.. so u have to copy to stage files found /usr/share/grub as stage1 and stage2 so follow the following command..

for grub...
Code: [Select]
cd /usr/share/grub/i386-pc
 dd if=stage1 of=/dev/fd0 bs=512 count=1 # this will write on first sector

 dd if=stage2 of=/dev/fd0 bs=512 seek=1  # This will skip the first sector so write on second sector.