The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Triple-boot problem...

    Discussion in 'Linux Compatibility and Software' started by Rakien, Apr 22, 2007.

  1. Rakien

    Rakien Notebook Geek

    Reputations:
    0
    Messages:
    85
    Likes Received:
    0
    Trophy Points:
    15
    The other day, I tried to triple-boot my Dell E1705 computer with XP Pro, Vista and Ubuntu. I started by making a clean installation of XP Pro I then proceeded to installing Vista Ultimate on a second partition. After installing Vista, I went to installing Ubuntu using the live CD. Everything went well, I created the Linux swap partition as well as the EXT3 one, I then rebooted my computer and chose to go into Ubuntu; everything seemed to work fine. However, when I tried to go into XP the system said there was an error of some sort and that I could not get into XP anymore. Does anyone have any idea on why this occurred?

    Thanks.

    - Robert A.
     
  2. mujtaba

    mujtaba ZzzZzz Super Moderator

    Reputations:
    4,242
    Messages:
    3,088
    Likes Received:
    518
    Trophy Points:
    181
    Can you exactly tell the error, does it have anything to do with NTLDR ?
     
  3. rockharder

    rockharder Notebook Evangelist

    Reputations:
    26
    Messages:
    653
    Likes Received:
    0
    Trophy Points:
    30
    Does your XP bootable after Vista installed?
     
  4. Rakien

    Rakien Notebook Geek

    Reputations:
    0
    Messages:
    85
    Likes Received:
    0
    Trophy Points:
    15
    Darn, I'm really stupid... I don't remember. I was so frustrated that I just reinstalled Windows XP and Vista right after didn't bother to try to get Ubuntu to work again.

    Yup, it was bootable so I decided to try my luck with Ubuntu right after... Unfortunately, this last one did not work and ended up ruining all my previous installation work.
     
  5. Paul

    Paul Mom! Hot Pockets! NBR Reviewer

    Reputations:
    759
    Messages:
    2,637
    Likes Received:
    0
    Trophy Points:
    55
    The problem is Vista's boot loader. When you triple boot like that, GRUB (Ubuntu's boot loader) will detect your Windows XP partition and thus show it in your boot menu. However, when you put Vista on after XP, it basically over-writes XP's boot loader. So basically, what's happening is that GRUB is trying to send you to XP's boot loader (which you would never see since it's transparent and automatically assumes that Windows is the only OS on your system), but it's not there any more. What should happen is that you boot into Vista from GRUB, and Vista's boot loader should appear, giving you the option to boot into Vista or XP. It's annoying, but that's what Vista does. The beauty of GRUB is that you can edit to just take away the Windows XP option, and then rename the Vista option to just Windows. GRUB will then direct you to the Windows boot loader.
     
  6. Rakien

    Rakien Notebook Geek

    Reputations:
    0
    Messages:
    85
    Likes Received:
    0
    Trophy Points:
    15
    Thanks for the helpful and informative post. :)

    How do you edit GRUB? And how do you rename the Vista option to just Windows?

    Thanks again for your help.
     
  7. Paul

    Paul Mom! Hot Pockets! NBR Reviewer

    Reputations:
    759
    Messages:
    2,637
    Likes Received:
    0
    Trophy Points:
    55
    You'll want to edit the grub configuration file. This file is found in /boot/grub/menu.lst. To edit it, you'll want to go to a terminal and type the following command:
    Code:
    sudo gedit /boot/grub/menu.lst
    From there, you'll see some entries towards the bottom of the file making references to operating systems and the partitions on which they are found. All you really need to do is find where it says "Windows XP," delete that whole sections (about 3-5 lines usually). Then you can find the Windows Vista entry, and edit the line
    Code:
    title                 Windows Vista
    to
    Code:
    title                 Windows
    It's pretty simple really. If you feel like venturing into it, post your file (/boot/grub/menu.lst) up here and we can help you.
     
  8. rockharder

    rockharder Notebook Evangelist

    Reputations:
    26
    Messages:
    653
    Likes Received:
    0
    Trophy Points:
    30
    Just in case you would forgot anything, you can use "#" to mask options that you are not currently use. Grub also let you choose which OS is your default OS, but remember it count from 0.
     
  9. Rakien

    Rakien Notebook Geek

    Reputations:
    0
    Messages:
    85
    Likes Received:
    0
    Trophy Points:
    15
    Thanks everyone for your help.

    I've been a wuss and haven't tried installing Ubuntu for a second time since I'm scared that what happened last time might happen again. Here's what someone else said in another thread. I never did this and I'm wondering whether it would change anything if I did it or not and whether this might actually be the reason why I wasn't able to boot into XP.

    notebook_ftw thanks for showing me how to edit GRUB. :)
     
    Last edited by a moderator: May 8, 2015
  10. LIVEFRMNYC

    LIVEFRMNYC Blah Blah Blah!!!

    Reputations:
    3,741
    Messages:
    2,382
    Likes Received:
    0
    Trophy Points:
    55
    It would prevent Grub from being installed on any other Partition. Grub will be installed on the same Partition as Ubuntu. This will eliminate any risk of messing up the MBR, Windows Partition or any other partition other than Ubuntu. No worries at all about messing Windows up. But you will need a Bootloader like GAG to enter the Ubuntu Partition(Grub menu) or you can edit Windows Bootloader to pick up Ubuntu Partition. I recomend GAG though.

    Go to my post and give it a try if you install Ubuntu again.