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.

    Dual Boot, Boot Menu Query

    Discussion in 'Linux Compatibility and Software' started by Wizard Of Oz, Nov 11, 2008.

  1. Wizard Of Oz

    Wizard Of Oz Notebook Consultant

    Reputations:
    0
    Messages:
    179
    Likes Received:
    0
    Trophy Points:
    30
    I've just installed ubuntu 8.10 on my laptop and it's my first experience with ubuntu.

    When booting up my laptop the boot menu has ubuntu at the top as the default option and the windows vista option as the last on the list. Is there some way I can change that around so that windows will be at the top?

    For the time being, until I feel completely comfortable with ubuntu, vista is going to be my main os. So I'd like to be able to just turn the laptop on and have it go to vista instead of waiting around to select vista from the list.

    I know it's only a few seconds more when starting up my laptop but for the time being I'd like to see if it can be done.
     
  2. zoryfl

    zoryfl Notebook Enthusiast

    Reputations:
    6
    Messages:
    37
    Likes Received:
    0
    Trophy Points:
    15
    You have to edit your menu.lst (should be here: /boot/grub/menu.lst)

    Now go to the bottom and just change the entries to what you want them to be.
     
  3. Wizard Of Oz

    Wizard Of Oz Notebook Consultant

    Reputations:
    0
    Messages:
    179
    Likes Received:
    0
    Trophy Points:
    30
    Thanks for that. I've found the list, just need to read through it and work out how to do it now. shouldn't be too tough, i hope ;)
     
  4. zoryfl

    zoryfl Notebook Enthusiast

    Reputations:
    6
    Messages:
    37
    Likes Received:
    0
    Trophy Points:
    15
    Think of consulting some ubuntu wiki/forum before changing something you don't know about.. You should be able to do it with no problem though :)
     
  5. Wizard Of Oz

    Wizard Of Oz Notebook Consultant

    Reputations:
    0
    Messages:
    179
    Likes Received:
    0
    Trophy Points:
    30
    Yeah, i thought I'd have a look at this first. It looks very similar to making some simple changes to .ini files.

    The only problem I'm currently having with making the changes is that I'm being told I don't have file permissions. So I'm just going to delete the old one and replace it with a new modified version with the info the way I want it.
    Is that ok to do? I'll keep a copy of the original file too in case I need to reuse that.
     
  6. Amranu

    Amranu Notebook Consultant

    Reputations:
    103
    Messages:
    233
    Likes Received:
    0
    Trophy Points:
    30
    use sudo or gksu to open it
     
  7. archer7

    archer7 Notebook Evangelist

    Reputations:
    289
    Messages:
    647
    Likes Received:
    0
    Trophy Points:
    30
    Open it from gnome using
    Code:
    sudo gedit /boot/grub/menu.lst
    The order of the OS blocks in menu.lst determines the order they appear in the boot menu. For example, my menu.lst looks like this:
    Code:
    # (0) Arch Linux
    title  Arch Linux
    root   (hd0,0)
    kernel /boot/vmlinuz26 root=/dev/sda1 resume=/dev/sda2 ro vga=790
    initrd /boot/kernel26.img
    
    # (1) Arch Linux
    title  Arch Linux Fallback
    root   (hd0,0)
    kernel /boot/vmlinuz26 root=/dev/sda1 ro
    initrd /boot/kernel26-fallback.img
    
    # (1) Windows
    title Windows
    rootnoverify (hd0,0)
    makeactive
    chainloader +1
    If I wanted Windows to come up first, I'd just have to move the Windows block above the first linux block, which would give me this:
    Code:
    # (1) Windows
    title Windows
    rootnoverify (hd0,0)
    makeactive
    chainloader +1
    
    # (0) Arch Linux
    title  Arch Linux
    root   (hd0,0)
    kernel /boot/vmlinuz26 root=/dev/sda1 resume=/dev/sda2 ro vga=790
    initrd /boot/kernel26.img
    
    # (1) Arch Linux
    title  Arch Linux Fallback
    root   (hd0,0)
    kernel /boot/vmlinuz26 root=/dev/sda1 ro
    initrd /boot/kernel26-fallback.img
     
  8. Wizard Of Oz

    Wizard Of Oz Notebook Consultant

    Reputations:
    0
    Messages:
    179
    Likes Received:
    0
    Trophy Points:
    30
    Thanks. I just did that 20 mins back. I might mess around with it a bit more to sort out the options a bit more to my liking later on though.
    I'm enjoying messing around like this though, reminds me of using DOS prompt, with all the typing
     
  9. Telkwa

    Telkwa Notebook Consultant

    Reputations:
    68
    Messages:
    294
    Likes Received:
    0
    Trophy Points:
    30
    open Synaptic Package Manager and search for startup manager. Install it. You'll have a GUI that lets you change boot-up settings without the risk of mistyping one letter and screwing up menu.lst.
    Once you've installed Start-up Manager, you'll find it in System>Administration>StartUp-Manager
     
  10. archer7

    archer7 Notebook Evangelist

    Reputations:
    289
    Messages:
    647
    Likes Received:
    0
    Trophy Points:
    30
    That all takes the fun out of it, man.
     
  11. Telkwa

    Telkwa Notebook Consultant

    Reputations:
    68
    Messages:
    294
    Likes Received:
    0
    Trophy Points:
    30
    I keep telling myself I gotta get better at the CLI, but it doesn't seem to be happening. :eek: