Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I think you could use the Lilo package that College Linux ships. In Slackware there is a command "liloconfig" which helps you to set this up. In this case you would have to choose "install to MBR" to install it over the WinXP bootloader.
An other possibility is to install other bootloaders, like f.x. XFDisk http://www.mecronome.de/xfdisk/index.php , which can boot Windows, Linux and FreeBSD (maybe more, didn't test it for other OSes).
In the beginning, when I didn't know much about Linux but knew well how to create a rescue disk in Windows, I found it more secure to use a bootloader that I can start from a FAT partition oder floppy.
If you haven't the liloconfig command I mentioned (College Linux is Slackware based, but I don't know if it's included) you have to edit the file /etc/lilo.conf with the editor of your choice. After that you have to execute /sbin/lilo to write the boot loader.
I am no lilo expert, but I think your lilo.conf should look like the following one. It assumes that Windows is installed on the first harddisk (hda1) and your Linux is on the first partition of the second harddisk (hdb1). If you would like to use framebuffer, you could chose other than "vga = normal" in the Global section. I left one entry for a framebuffer at 1024x768.
The bootloader will be installed on /dev/hda1 what should be your windows partition.
Cheers,
titopoquito
Code:
# Start LILO global section
boot = /dev/hda1
#compact # faster, but won't work on all systems.
prompt
timeout = 10
# VESA framebuffer console @ 1024x768x256
# vga = 773
# Normal VGA console
vga = normal
# End LILO global section
# Linux bootable partition config begins
image = /boot/vmlinuz
root = /dev/hdb1
label = CollegeLinux
read-only # Non-UMSDOS filesystems should be mounted read-only for checking
# Linux bootable partition config ends
# Windows bootable partition config begins
other = /dev/hda1
label = Windows
table = /dev/hda
# Windows bootable partition config ends
yes yes yes. it worked now. I simpley just deleted all the text and added on new. so thnx to all of you. If it had been the other way and I needed help, nobody woud help me.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.