Link to home
Start Free TrialLog in
Avatar of hke72
hke72Flag for Norway

asked on

How to make a partition bootable?

I have a boot CD from G4L (Ghost for Linux) which I want to copy into a partition, install GRUB to make a multiboot-system and then have the possebility to boot from this partition. The main reason for not installing another OS on this partition is because of the size. The boot CD is less then 100MB.

I could install a smal linux-OS, but with DSL (damn smal Linux) the dell M65's do not respond.

The reason is that I want to be able to boot into this partition and copy my actual workable partition to other computers.
ASKER CERTIFIED SOLUTION
Avatar of arnold
arnold
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of hke72

ASKER

I got the answer from Mr. g4l himself (Michael Setzer II). Here is a copy
G4L doesn't require a partition. It can be run from a grub menu if your existing OS is linux. It can run from Windows using grub4dos.
 
If you have linux, adding g4l to the grub menu is just adding some lines to the grub.conf or menu.lst depending on the distro.
 
title G4l
kernel /bzxx.xx ramdisk_size=65536 root=/dev/ram0 telnetd=yes
initrd /ramdisk.gz
 
You also need to copy the bzxx.xx kernel that you want to use from the cd, and the ramdisk.gz. That includes the kernel, and the full filesystem to run from the ramdisk.
 
With windows, it can be added using grub4dos.  
 
ftp://amd64gcc.dyndns.org/g4l-win.exe 
 
Includes the files and instructions to add to windows. Windows is easy, and a little more with vista...

so... after this I desided to just keep 1 partition since g4l is running from memory and the whole HD can be cloned :)
Sincerely
Hans Kristian
 
Avatar of hke72

ASKER

Thank you for the help!