LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   what do I add to /etc/lilo.conf to boot windbloze ? (https://www.linuxquestions.org/questions/linux-general-1/what-do-i-add-to-etc-lilo-conf-to-boot-windbloze-852522/)

rob.rice 12-26-2010 09:36 PM

what do I add to /etc/lilo.conf to boot windbloze ?
 
the title of the thread says it all

TobiSGD 12-26-2010 09:59 PM

My friend Google knows it all: http://lmgtfy.com/?q=boot+windows+with+lilo

rob.rice 12-26-2010 10:11 PM

I went through the first 25 results
none of them had what I put behind "image="
none of them covered the simple case of
windbloze on /dev/sda2
linux on /dev/sda3

TobiSGD 12-26-2010 10:51 PM

That is simply because there will be no image entry. Windows is started via chainloading from lilo, I should have made that more clear.
Try an entry in the lilo configuration file like
Code:

other=/dev/hda1
    label=Windows

Of course you have to replace hda1 with your real Windows-partition.

By the way, I found this information in the first link.

speck 12-26-2010 11:35 PM

The relevant sections of my Slackware 13.1/Windows 7 lilo.conf file. Windows on sda and Linux on sdb.

Code:

boot = /dev/sda

# Generic Kernel Linux bootable partition config begins
image = /boot/vmlinuz
  initrd = /boot/initrd.gz
  root = /dev/sdb1
  label = Linux
  read-only
# Generic Kernel Linux bootable partition config ends

# Windows bootable partition config begins
other = /dev/sda2
  label = Windows
  table = /dev/sda
# Windows bootable partition config ends



All times are GMT -5. The time now is 04:21 PM.