- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Dual boot with windows 2000 professional
Operating System - Linux
1821984
Members
3315
Online
109638
Solutions
Forums
Categories
Company
Local Language
юдл
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
юдл
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-23-2001 04:52 PM
тАО08-23-2001 04:52 PM
Dual boot with windows 2000 professional
Hi,
I have installed windows 2000 professional on my PC then I installed Linux 7.0 sucessfully. When I reboot the PC, it always boot to Win2K. How I can make it to dual boot options?
Thanks for your help in advance.
I have installed windows 2000 professional on my PC then I installed Linux 7.0 sucessfully. When I reboot the PC, it always boot to Win2K. How I can make it to dual boot options?
Thanks for your help in advance.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-24-2001 08:16 AM
тАО08-24-2001 08:16 AM
Re: Dual boot with windows 2000 professional
When you are installing linux, in the Lilo Section, specify your Linux-root-partition as your boot device because the Master Boot Record (MBR) of your harddisk is owned by Windows 2000.
If you have an IDE harddisk and your Linux partition is the second partition, the boot partition for Lilo is /dev/hda2.
If you have two disks and your Linux resides on the first partition of your second disk, the boot partition for Lilo is /dev/hdb1.
You must specify that you want a boot diskette at the installation, so you can boot from Linux the first time.
Now you have to peel the bootsector from your Linux-root-Partition. With /dev/hda2 as your linux-partition, the dd-command is:
# dd if=/dev/hda2 of=/bootsect.lnx bs=512 count=1
There is something wrong if your bootsect.lnx has more than 512 bytes.
Now copy the file bootsect.lnx to a DOS-formated floppy if this is your way to transfer files to the NTFS-Windows-partition.
You can copy it with
# mcopy /bootsect.lnx a:
or with
# mount -t msdos /dev/fd0 /mnt
# copy /bootsect.lnx /mnt
# umount /mnt
Remember to usa a DOS formated diskette.
Now, reboot the PC and boot with Windows 2000 normally.
Copy the file from the diskette to C:\bootsect.lnx. I don't tell you how to do that.
Remove the, system- and the read-only-attribute of the boot.ini file before you can modify it with:
C:\attrib -s -r c:\boot.ini
Now change the file boot.ini with an editor, notepad for example, as follows:
[boot loader]
timeout=30
default=multi(0)disk(0)rdisk(0)partition(1)\WINNT
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINNT="Microsoft Windows 2000 Professional" /fastdetect
multi(0)disk(0)rdisk(0)partition(3)\WINNT="Microsoft Windows 2000 Server" /fastdetect
c:\bootsect.lnx="Linux"
Only the last line has been added in this example. Restore the attributes after you have saved boot.ini with:
C:\attrib +s +r c:\boot.ini
After a shutdown of your Windows 2000 and a restart your should see the following:
OS Loader V4.00
Please select the operating system to start:
Windows 2000 Professional
Linux
Select Linux and see
LILO loading zImage ....
If you have an IDE harddisk and your Linux partition is the second partition, the boot partition for Lilo is /dev/hda2.
If you have two disks and your Linux resides on the first partition of your second disk, the boot partition for Lilo is /dev/hdb1.
You must specify that you want a boot diskette at the installation, so you can boot from Linux the first time.
Now you have to peel the bootsector from your Linux-root-Partition. With /dev/hda2 as your linux-partition, the dd-command is:
# dd if=/dev/hda2 of=/bootsect.lnx bs=512 count=1
There is something wrong if your bootsect.lnx has more than 512 bytes.
Now copy the file bootsect.lnx to a DOS-formated floppy if this is your way to transfer files to the NTFS-Windows-partition.
You can copy it with
# mcopy /bootsect.lnx a:
or with
# mount -t msdos /dev/fd0 /mnt
# copy /bootsect.lnx /mnt
# umount /mnt
Remember to usa a DOS formated diskette.
Now, reboot the PC and boot with Windows 2000 normally.
Copy the file from the diskette to C:\bootsect.lnx. I don't tell you how to do that.
Remove the, system- and the read-only-attribute of the boot.ini file before you can modify it with:
C:\attrib -s -r c:\boot.ini
Now change the file boot.ini with an editor, notepad for example, as follows:
[boot loader]
timeout=30
default=multi(0)disk(0)rdisk(0)partition(1)\WINNT
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINNT="Microsoft Windows 2000 Professional" /fastdetect
multi(0)disk(0)rdisk(0)partition(3)\WINNT="Microsoft Windows 2000 Server" /fastdetect
c:\bootsect.lnx="Linux"
Only the last line has been added in this example. Restore the attributes after you have saved boot.ini with:
C:\attrib +s +r c:\boot.ini
After a shutdown of your Windows 2000 and a restart your should see the following:
OS Loader V4.00
Please select the operating system to start:
Windows 2000 Professional
Linux
Select Linux and see
LILO loading zImage ....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-26-2001 10:56 AM
тАО08-26-2001 10:56 AM
Re: Dual boot with windows 2000 professional
Please go to and follow the information found on this link. This is one way that i managed to get the Linux and 2000 professional on my laptop to function properly. The easier way is to just add the windows portion of the script to lilo and use that to boot into windows. But if you like to use the MBR and boot into windows as the default option this is a most helpful link. The problem that i ran into that no one explained was making sure when you copy the boot from Linux to add to the Microsoft MBR you must mount the disk as msdos for it to work took me a couple of days to figure that out that is why i'm referencing this link follow exactly and you'll fly through it. http://www.littlewhitedog.com/reviews_other_00011.asp Another handy trick for laptops is how to change all of your linux network settings from work home internal network etc... here is a wonderful script to automate that process. http://www.linuxtricks.org/changenet.html Remember to stay calm and have fun you'll learn more than when you get frustrated.
One can't escape one's self...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-26-2001 12:17 PM
тАО08-26-2001 12:17 PM
Re: Dual boot with windows 2000 professional
Hi,
When you installed linux, if you installed lilo on your boot partition which is different than your win2k, the easiest way to modify your bootsector on your win2k box is to use bootpart. Its very lightweight, simple to use.
You can get bootpart from
http://www.winimage.com/bootpart.htm
Try it, the instructions that come along are very self explanatory.
-Regards
Ramesh
When you installed linux, if you installed lilo on your boot partition which is different than your win2k, the easiest way to modify your bootsector on your win2k box is to use bootpart. Its very lightweight, simple to use.
You can get bootpart from
http://www.winimage.com/bootpart.htm
Try it, the instructions that come along are very self explanatory.
-Regards
Ramesh
They think they know but don't. At least I know I don't know - Socrates
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Learn About
News and Events
Support
© Copyright 2025 Hewlett Packard Enterprise Development LP