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.

    OS boot priority

    Discussion in 'Linux Compatibility and Software' started by Techie09, Aug 20, 2009.

  1. Techie09

    Techie09 Notebook Enthusiast

    Reputations:
    0
    Messages:
    24
    Likes Received:
    0
    Trophy Points:
    5
    currently I have an asus g71gx-rx05(bb version) and it was sold to me with vista 64-bit on it. Yesterday i recieved Ubuntu 9.04 in the mail and installed it onto my computer later that evening. I selected the "install side by side" instead of largest continuous space.

    Both systems work great. I really have 2 concerns.
    1) Can I make Vista the Priority on my boot list instead of ubuntu?
    2) is there anyway to customize your boot screen to make it similar to say...vista log in screen?
     
  2. archer7

    archer7 Notebook Evangelist

    Reputations:
    289
    Messages:
    647
    Likes Received:
    0
    Trophy Points:
    30
    Yes, but it's a very involved process involving kernel configurations. Ubuntu might have an easy tool to change it, but I'm not sure.

    Yes again. There are two ways to do it:
    1) Edit the /boot/grub/menu.lst file, or
    2) Use a graphical grub editor. (Add/Remove Programs might have one on database.)

    For method 1, which is my preferred way, just open up menu.lst with root permissions:
    Code:
    sudo gedit /boot/grub/menu.lst
    Then look for a line that says
    Code:
    default NUM
    where NUM is a number, usually 0. If the default line doesn't exist, just write it at the top of the file. The number you put after default will be the list number of the OS you want to default to, starting with 0.
    Code:
    default 0 # this will default to the top of the list, a.k.a. Ubuntu
    default 4 # this will default to the 5th OS on the list
    Make sure you only have one default line in the whole file.
     
  3. v1k1ng1001

    v1k1ng1001 Notebook Deity

    Reputations:
    239
    Messages:
    738
    Likes Received:
    0
    Trophy Points:
    30
    use add remove to download "start-up manager"
     
  4. pixelot

    pixelot Notebook Acolyte

    Reputations:
    3,732
    Messages:
    6,833
    Likes Received:
    0
    Trophy Points:
    205
    You should download and install this, and then it will be found under System > Administration > StartUp-Manager. Then simply change the default OS.

    Cheers... :)