HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- unable to boot windows 2000 after installing redha...
Operating System - Linux
1827808
Members
2975
Online
109969
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
Forums
Discussions
Discussions
Discussions
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
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
09-11-2003 07:57 AM
09-11-2003 07:57 AM
unable to boot windows 2000 after installing redhat Advanced server
I installed RedHat on previously installed windows 2000 machine
The partition details are
C drive 7 GB
D drive 7 GB
E drive 10 GB
F drive 14 GB
I used E drive 10GB for insalling redhat
i created three partitions
/dev/hda5 - /boot 50mb
/dev/hda6 - swap 256mb
/dev/hda7 - / remaining 10GB
After installing RedHat iam not able to boot in to windows. In my /boot iam having grub and not lilo.
Kindly help me out
Thanks in advance
Jagadesh
The machine in which i installed RedHat
The partition details are
C drive 7 GB
D drive 7 GB
E drive 10 GB
F drive 14 GB
I used E drive 10GB for insalling redhat
i created three partitions
/dev/hda5 - /boot 50mb
/dev/hda6 - swap 256mb
/dev/hda7 - / remaining 10GB
After installing RedHat iam not able to boot in to windows. In my /boot iam having grub and not lilo.
Kindly help me out
Thanks in advance
Jagadesh
The machine in which i installed RedHat
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2003 08:51 AM
09-11-2003 08:51 AM
Re: unable to boot windows 2000 after installing redhat Advanced server
have a look at /etc/grub.conf it should have enty's for your W2K in this file
to get more info type the following command and have a look at section abour booting
#info grub
sorry I cant give you an extract of a multi boot /etc/grub.conf I dont have one under-hand at the present
J-P
to get more info type the following command and have a look at section abour booting
#info grub
sorry I cant give you an extract of a multi boot /etc/grub.conf I dont have one under-hand at the present
J-P
Smile I will feel the difference
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2003 09:11 AM
09-11-2003 09:11 AM
Re: unable to boot windows 2000 after installing redhat Advanced server
Ok one of my /etc/grub.conf
has theses entry's for a dos boot
default=0
timeout=0
splashimage=(hd1,0)/boot/grub/splash.xprm.gz
password --md5 $1$xxxxxxxxxxxxxxxxxxxxxxxxxxxx
title Red Hat Linux (2.4.20-20.9)
root (hd1,0)
kernel /boot/vmslinux-2.4.20-20.9 ro root=LABEL=/
initrd /boot/initrd-2.4.20-20.9.img
title DOS
rootnoverify (hd0,0)
chainloader +1
---------------
hope this help you a long
good luck
J-P
has theses entry's for a dos boot
default=0
timeout=0
splashimage=(hd1,0)/boot/grub/splash.xprm.gz
password --md5 $1$xxxxxxxxxxxxxxxxxxxxxxxxxxxx
title Red Hat Linux (2.4.20-20.9)
root (hd1,0)
kernel /boot/vmslinux-2.4.20-20.9 ro root=LABEL=/
initrd /boot/initrd-2.4.20-20.9.img
title DOS
rootnoverify (hd0,0)
chainloader +1
---------------
hope this help you a long
good luck
J-P
Smile I will feel the difference
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2003 09:32 AM
09-11-2003 09:32 AM
Re: unable to boot windows 2000 after installing redhat Advanced server
Hi,
Follow Jean Piere's tip : it's quite a common effect on installing advanced server on 2k machine or even normal distro on 2k server machine, as normally there are not 2 server systems on one machine.
From what you write, I understand that all is on first ide disk, which is identified by hda. So C: is hda1 for linux, d: hda2. I do not know about F: drive (you can check all this doing fdisk -l /dev/hda), but your extended partition is /dev/hda4, in which logical partitions appear the way you describe.
So, from Jean Pierre grub.conf, yours should be :
default=0
timeout=10
splashimage=(hd1,0)/boot/grub/splash.xprm.gz
title Red Hat Linux (2.4.20-20.9)
root (hd0,4)
kernel /boot/vmslinux-2.4.20-20.9 ro root=LABEL=/
initrd /boot/initrd-2.4.20-20.9.img
title win 2k
rootnoverify (hd0,0)
chainloader +1
Assuming that hda1 is your windows partition, which is referenced her as (hd0,0), hd0 meaning first ide disk, ',0' being the first partition.
If it's on the second, it'll be (hd0,1), and so on.
Change these values on your grub.conf, save and just reboot. It should work.
hth
J
Follow Jean Piere's tip : it's quite a common effect on installing advanced server on 2k machine or even normal distro on 2k server machine, as normally there are not 2 server systems on one machine.
From what you write, I understand that all is on first ide disk, which is identified by hda. So C: is hda1 for linux, d: hda2. I do not know about F: drive (you can check all this doing fdisk -l /dev/hda), but your extended partition is /dev/hda4, in which logical partitions appear the way you describe.
So, from Jean Pierre grub.conf, yours should be :
default=0
timeout=10
splashimage=(hd1,0)/boot/grub/splash.xprm.gz
title Red Hat Linux (2.4.20-20.9)
root (hd0,4)
kernel /boot/vmslinux-2.4.20-20.9 ro root=LABEL=/
initrd /boot/initrd-2.4.20-20.9.img
title win 2k
rootnoverify (hd0,0)
chainloader +1
Assuming that hda1 is your windows partition, which is referenced her as (hd0,0), hd0 meaning first ide disk, ',0' being the first partition.
If it's on the second, it'll be (hd0,1), and so on.
Change these values on your grub.conf, save and just reboot. It should work.
hth
J
You can lean only on what resists you...
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
Support
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP