Find the answer to your Linux question:
Results 1 to 5 of 5
hello... I've windows and I openSuse 11.2 I want to install Ubuntu 9.10 but When I did I found in boot leader Windows & Ubuntu & openSuse the problem is ...
  1. #1
    Just Joined!
    Join Date
    Sep 2008
    Posts
    42

    Unhappy Proplem when installation 2 distro

    hello...
    I've windows and I openSuse 11.2
    I want to install Ubuntu 9.10
    but When I did I found in boot leader Windows & Ubuntu & openSuse
    the problem is when I try to access to OpenSuse
    this message show :

    Error : you need to load Kernel
    and now I just can access to Windows and Ubuntu

    thanks for all

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Boot Loader of Ubuntu 9.10 detects other OSes and configure multi boot perfectly.
    Execute this
    Code:
    sudo update-grub
    It will try to detect and regenerate GRUB Menu.

    In case it doesn't work, post the output of sudo fdisk -l command here.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Just Joined!
    Join Date
    Sep 2008
    Posts
    42
    thanks for reply
    I try sudo update-grub
    OpenSuse and Windows were found but when I reboot and choose OpenSuse
    same Error
    You need to load Kernel
    the result of fdisk -l is

    Disk /dev/sda: 320.1 GB, 320072933376 bytes
    255 heads, 63 sectors/track, 38913 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0x5c128273

    Device Boot Start End Blocks Id System
    /dev/sda1 1 10445 83891200 7 HPFS/NTFS
    /dev/sda2 * 10446 38913 228669210 f W95 Ext'd (LBA)
    /dev/sda5 24676 38913 114365440 7 HPFS/NTFS
    /dev/sda6 10446 15545 40957717 83 Linux
    /dev/sda7 15545 20766 41945652 83 Linux
    /dev/sda8 20767 21288 4192933+ 82 Linux swap / Solaris
    /dev/sda9 21289 21549 2096451 83 Linux
    /dev/sda10 21550 24540 24025176 83 Linux
    /dev/sda11 24541 24675 1084356 82 Linux swap / Solaris

    Partition table entries are not in disk order

    Disk /dev/mmcblk0: 1015 MB, 1015021568 bytes
    4 heads, 16 sectors/track, 30976 cylinders
    Units = cylinders of 64 * 512 = 32768 bytes
    Disk identifier: 0x00000000

    Device Boot Start End Blocks Id System

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Partition structure is correct except you have created two SWAP partitions. You can share single SWAP partition in both distros.
    Post the contents of /boot/grub/grub.cfg file here.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  5. #5
    Just Joined!
    Join Date
    Sep 2008
    Posts
    42
    PHP Code:
    #
    # DO NOT EDIT THIS FILE
    #
    # It is automatically generated by /usr/sbin/grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    #

    ### BEGIN /etc/grub.d/00_header ###
    if [ -/boot/grub/grubenv ]; then
      have_grubenv
    =true
      load_env
    fi
    set 
    default="0"
    if [ ${prev_saved_entry} ]; then
      saved_entry
    =${prev_saved_entry}
      
    save_env saved_entry
      prev_saved_entry
    =
      
    save_env prev_saved_entry
    fi
    insmod ext2
    set root
    =(hd0,10)
    search --no-floppy --fs-uuid --set 9917b2ea-10c8-466a-8ed4-818332deed09
    if loadfont /usr/share/grub/unicode.pf2 then
      set gfxmode
    =640x480
      insmod gfxterm
      insmod vbe
      
    if terminal_output gfxterm then true ; else
        
    # For backward compatibility with versions of terminal.mod that don't
        # understand terminal_output
        
    terminal gfxterm
      fi
    fi
    if [ ${recordfail} = ]; then
      set timeout
    =-1
    else
      
    set timeout=10
    fi
    ### END /etc/grub.d/00_header ###

    ### BEGIN /etc/grub.d/05_debian_theme ###
    set menu_color_normal=white/black
    set menu_color_highlight
    =black/white
    ### END /etc/grub.d/05_debian_theme ###

    ### BEGIN /etc/grub.d/10_linux ###
    menuentry "Ubuntu, Linux 2.6.31-14-generic" {
            
    recordfail=1
            
    if [ -${have_grubenv} ]; then save_env recordfailfi
        set quiet
    =1
        insmod ext2
        set root
    =(hd0,10)
        
    search --no-floppy --fs-uuid --set 9917b2ea-10c8-466a-8ed4-818332deed09
        linux    
    /boot/vmlinuz-2.6.31-14-generic root=UUID=9917b2ea-10c8-466a-8ed4-818332deed09 ro   quiet splash
        initrd    
    /boot/initrd.img-2.6.31-14-generic
    }
    menuentry "Ubuntu, Linux 2.6.31-14-generic (recovery mode)" {
            
    recordfail=1
            
    if [ -${have_grubenv} ]; then save_env recordfailfi
        insmod ext2
        set root
    =(hd0,10)
        
    search --no-floppy --fs-uuid --set 9917b2ea-10c8-466a-8ed4-818332deed09
        linux    
    /boot/vmlinuz-2.6.31-14-generic root=UUID=9917b2ea-10c8-466a-8ed4-818332deed09 ro single 
        initrd    
    /boot/initrd.img-2.6.31-14-generic
    }
    ### END /etc/grub.d/10_linux ###

    ### BEGIN /etc/grub.d/20_memtest86+ ###
    menuentry "Memory test (memtest86+)" {
        
    linux16    /boot/memtest86+.bin
    }
    menuentry "Memory test (memtest86+, serial console 115200)" {
        
    linux16    /boot/memtest86+.bin console=ttyS0,115200n8
    }
    ### END /etc/grub.d/20_memtest86+ ###

    ### BEGIN /etc/grub.d/30_os-prober ###
    menuentry "Windows 7 (loader) (on /dev/sda1)" {
        
    insmod ntfs
        set root
    =(hd0,1)
        
    search --no-floppy --fs-uuid --set 12841a82841a690d
        chainloader 
    +1
    }
    menuentry "Desktop -- openSUSE 11.2 - 2.6.31.5-0.1 (on /dev/sda6)" {
        
    insmod ext2
        set root
    =(hd0,6)
        
    search --no-floppy --fs-uuid --set c2902bea-0dde-4629-8dc8-62ddff84ec66
        linux 
    /boot/vmlinuz-2.6.31.5-0.1-desktop root=/dev/disk/by-id/ata-ST9320320AS_5SX4XHWE-part6 resume=/dev/disk/by-id/ata-ST9320320AS_5SX4XHWE-part8 splash=silent quiet showopts vga=0x317
        initrd 
    /boot/initrd-2.6.31.5-0.1-desktop
    }
    menuentry "Failsafe -- openSUSE 11.2 - 2.6.31.5-0.1 (on /dev/sda6)" {
        
    insmod ext2
        set root
    =(hd0,6)
        
    search --no-floppy --fs-uuid --set c2902bea-0dde-4629-8dc8-62ddff84ec66
        linux 
    /boot/vmlinuz-2.6.31.5-0.1-desktop root=/dev/disk/by-id/ata-ST9320320AS_5SX4XHWE-part6 showopts apm=off noresume nosmp maxcpus=0 edd=off powersaved=off nohz=off highres=off processor.max_cstate=1 x11failsafe vga=0x317
        initrd 
    /boot/initrd-2.6.31.5-0.1-desktop
    }
    ### END /etc/grub.d/30_os-prober ###

    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries.  Simply type the
    # menu entries you want to add after this comment.  Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ### 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...