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.

    how to make vista primary boot option in grub?

    Discussion in 'Linux Compatibility and Software' started by littleasian, Nov 4, 2007.

  1. littleasian

    littleasian Notebook Consultant

    Reputations:
    0
    Messages:
    113
    Likes Received:
    0
    Trophy Points:
    30
    can someone help me figure this out? i wnated to play with ubuntu and it works so im happy, but i still use vista as my primary os.

    how can i configure grub so that it boots vista by default? also, how can i change the default time countdown from the normal 10 sec to something like 2 sec?

    thankss
     
  2. chimpanzee

    chimpanzee Notebook Virtuoso

    Reputations:
    683
    Messages:
    2,561
    Likes Received:
    0
    Trophy Points:
    55
    look into the menu.lst file, not sure where it is located in your setup though. It is a simple text file which can be edited with any text editor, very much like the boot.ini in XP.
     
  3. John B

    John B Notebook Prophet

    Reputations:
    1,767
    Messages:
    4,195
    Likes Received:
    0
    Trophy Points:
    105
    You can also install via Synaptics package manager the following package: startup-manager, it's a GUI to edit GRUB settings
     
  4. jas

    jas Notebook Evangelist

    Reputations:
    697
    Messages:
    622
    Likes Received:
    5
    Trophy Points:
    31
    From this Mandriva Users Wiki
    So to make the changes you want you simply have to boot into Ubuntu and edit the default Ubuntu grub configuration file of /boot/grub/menu.lst to either include or edit the values for those entries in your grub configuration file. They're at the top of the grub config file and you have to edit it as root or with the sudo command in order to save changes. Those options in my grub configuration file are;
    Code:
    default 0
    timeout 5
    Since my first grub profile in my grub configuration file is to boot normal Linux, my grub boots into that profile after a 5 second delay. Windows XP is the third profile in my grub configuration file. So if I wanted to change to default booting into XP, I would edit it to be
    Code:
    default 2
    timeout 5