Page 53 of 69 FirstFirst ... 343515253545563 ... LastLast
Results 521 to 530 of 686

Thread: HOWTO: migrate wubi install to partition

  1. #521
    Join Date
    Nov 2009
    Location
    North Vancouver
    Beans
    Hidden!
    Distro
    Edubuntu 14.04 Trusty Tahr

    Re: HOWTO: migrate wubi install to partition

    Quote Originally Posted by javacookies View Post
    Thanks for the fix bcbc
    I'm having another problem..stupid me My swap space is sda1 and my root partition is sda2. Evrytime I boot, it always try to mount sda1 and of course it results to an error. How can I stop that?
    Code:
    sudo bash wubi-move-2.1.sh /dev/sda2 /dev/sda1
    The root and swap partition parameters are positional so the first is always assumed to be root.

    Let me know if you have any other issues

  2. #522
    Join Date
    Oct 2011
    Beans
    40

    Re: HOWTO: migrate wubi install to partition

    hey bcbc,
    i am new to ubuntu.i just have 40GB harddrive (not joke).which is shared by 2 windows xp and 11.10 using wubi....i want to make ubuntu partition and free space i have on harddrive excluding the space under wubi is 2GB....help me out what should i do,do i have to empty space then partition wubi there or the space where wubi is stored can be made partition.

  3. #523
    Join Date
    Sep 2011
    Beans
    56

    Re: HOWTO: migrate wubi install to partition

    what I mean is I already migrated it and it's booting fine except that it always tries to mount sda1 which is the swap space so I always have to press S to skip mounting.

  4. #524
    Join Date
    Nov 2009
    Location
    North Vancouver
    Beans
    Hidden!
    Distro
    Edubuntu 14.04 Trusty Tahr

    Re: HOWTO: migrate wubi install to partition

    Quote Originally Posted by javacookies View Post
    what I mean is I already migrated it and it's booting fine except that it always tries to mount sda1 which is the swap space so I always have to press S to skip mounting.
    Oh okay, got it. You probably have an entry in /etc/fstab that mounts /dev/sda1 from before the migration. Check and remove this if that is the case.

  5. #525
    Join Date
    Nov 2009
    Location
    North Vancouver
    Beans
    Hidden!
    Distro
    Edubuntu 14.04 Trusty Tahr

    Re: HOWTO: migrate wubi install to partition

    Quote Originally Posted by CHAUDHRY07 View Post
    hey bcbc,
    i am new to ubuntu.i just have 40GB harddrive (not joke).which is shared by 2 windows xp and 11.10 using wubi....i want to make ubuntu partition and free space i have on harddrive excluding the space under wubi is 2GB....help me out what should i do,do i have to empty space then partition wubi there or the space where wubi is stored can be made partition.
    That's a tough one. Basically you're going to have to make space or migrate to an external drive. I can't really help you with the decision on how to make space.

    There is another option. The script can be run from a live CD/USB and migrate from the root.disk file - what this means is that it's possible to move the virtual disks from \ubuntu\disks to e.g. a USB drive, then uninstall wubi, create partitions in the space, and then boot a live CD/USB and migrate the root.disk to those new partitions.
    It sounds like this might be your only option if all you have is 2GB space and you can't remove one of your XP installs. This option might be a bit more difficult if you're new to Ubuntu.
    If you have questions about this, feel free to ask.

  6. #526
    Join Date
    Sep 2011
    Beans
    8

    Re: HOWTO: migrate wubi install to partition

    Couldn't get past step 1, the Terminal refuses to acknowledge the wubi-move-2.1.sh file despite the fact that I have it and can open it.

    I think this is a record for failing at simple instructions.

  7. #527
    Join Date
    Nov 2009
    Location
    North Vancouver
    Beans
    Hidden!
    Distro
    Edubuntu 14.04 Trusty Tahr

    Re: HOWTO: migrate wubi install to partition

    Quote Originally Posted by aciddesir View Post
    Couldn't get past step 1, the Terminal refuses to acknowledge the wubi-move-2.1.sh file despite the fact that I have it and can open it.

    I think this is a record for failing at simple instructions.
    Generally you'd download it into your Downloads directory:
    Code:
    cd ~/Downloads
    bash wubi-move-2.1.sh --help
    You can also use the [TAB] key to autocomplete file names. This really helps as it's easy to make a typo or get the case wrong. So type:
    Code:
    bash wubi[TAB]
    and it should automatically complete. If it doesn't you're likely in the wrong directory.

    Let me know if you run into any difficulty.

  8. #528
    Join Date
    Nov 2011
    Beans
    12

    Re: HOWTO: migrate wubi install to partition

    Hi,
    I'm very new to Linux/Ubuntu, but giving it a go and have struck a snag...




    After going through the migrate process as described with no problems, upon booting, I get the usual Windows boot selector, I select Ubuntu, then Grub pops up and I select the new "Ubuntu on dev/sdb5" entry as per below... but then it just hangs on a purple screen.


    I started with Paragon Partition manager under WinXP to shrink my existing C: drive to allow space for a new extended partition, but then rebooted into the Ubuntu Wubi install to use GParted to actually create the partitions. (sdb5 & sdb6)



    GParted identified my drive as sdb and my (so I thought) second drive as sda, so I modified the "wubi-move" command line to suit and as stated all seemed to go through with out problems.... except for not booting into the newly moved install. The original wubi install still works fine.



    Can anyone identify any obvious problems???


    I'm suspecting the "insmod ext2" line, but only because I created an ext4 sdb5 partition OR maybe the "set=root a8d11602-6074-43fc-92c8-3d8de4ce6b63" entry as this identifier looks a lot larger than the previous ones. Can I just directly modify this line?



    The below is (obviously) just an extract from the grub config of the entry that hangs... if the whole file is required, I can post it if needed.



    Grub2 Entry:


    menuentry "Ubuntu, with Linux 2.6.38-12-generic (on /dev/sdb5)" --class gnu-linux --class gnu --class os {
    insmod part_msdos
    insmod ext2
    set root='(/dev/sdb,msdos5)'
    search --no-floppy --fs-uuid --set=root a8d11602-6074-43fc-92c8-3d8de4ce6b63
    linux /boot/vmlinuz-2.6.38-12-generic root=/dev/sdb5 ro quiet splash vt.handoff=7
    initrd /boot/initrd.img-2.6.38-12-generic


    Any help is much appreciated.. TIA.



    Peter.

  9. #529
    Join Date
    Nov 2009
    Location
    North Vancouver
    Beans
    Hidden!
    Distro
    Edubuntu 14.04 Trusty Tahr

    Re: HOWTO: migrate wubi install to partition

    Quote Originally Posted by Rythmtech View Post
    Any help is much appreciated.. TIA.
    Please post the results of the bootinfoscript between [CODE][/CODE] tags

    Thanks

  10. #530
    Join Date
    Nov 2011
    Beans
    12

    Re: HOWTO: migrate wubi install to partition

    Wow! That was quick!
    Thanks.

    Code:
                      Boot Info Script 0.60    from 17 May 2011
    
    
    ============================= Boot Info Summary: ===============================
    
     => Windows is installed in the MBR of /dev/sda.
     => No known boot loader is installed in the MBR of /dev/sdb.
    
    sda1: __________________________________________________________________________
    
        File system:       ntfs
        Boot sector type:  Windows XP
        Boot sector info:   No errors found in the Boot Parameter Block.
        Operating System:  
        Boot files:        
    
    sdb1: __________________________________________________________________________
    
        File system:       ntfs
        Boot sector type:  Windows Vista/7
        Boot sector info:   No errors found in the Boot Parameter Block.
        Operating System:  Windows XP
        Boot files:        /boot.ini /ntldr /NTDETECT.COM /wubildr 
                           /ubuntu/winboot/wubildr /wubildr.mbr 
                           /ubuntu/winboot/wubildr.mbr /ubuntu/disks/root.disk 
                           /ubuntu/disks/swap.disk
    
    sdb1/Wubi: _____________________________________________________________________
    
        File system:       ext4
        Boot sector type:  -
        Boot sector info:  
        Operating System:  Ubuntu 11.04
        Boot files:        /boot/grub/grub.cfg /etc/fstab
    
    sdb2: __________________________________________________________________________
    
        File system:       Extended Partition
        Boot sector type:  Unknown
        Boot sector info:  
    
    sdb5: __________________________________________________________________________
    
        File system:       ext4
        Boot sector type:  -
        Boot sector info:  
        Operating System:  Ubuntu 11.04
        Boot files:        /boot/grub/grub.cfg /etc/fstab
    
    sdb6: __________________________________________________________________________
    
        File system:       swap
        Boot sector type:  -
        Boot sector info:  
    
    ============================ Drive/Partition Info: =============================
    
    Drive: sda _____________________________________________________________________
    
    Disk /dev/sda: 400.1 GB, 400087375360 bytes
    16 heads, 63 sectors/track, 775218 cylinders, total 781420655 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    
    Partition  Boot  Start Sector    End Sector  # of Sectors  Id System
    
    /dev/sda1                  63   781,419,743   781,419,681   7 NTFS / exFAT / HPFS
    
    
    Drive: sdb _____________________________________________________________________
    
    Disk /dev/sdb: 164.7 GB, 164696555520 bytes
    255 heads, 63 sectors/track, 20023 cylinders, total 321672960 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    
    Partition  Boot  Start Sector    End Sector  # of Sectors  Id System
    
    /dev/sdb1    *             63   266,245,244   266,245,182   7 NTFS / exFAT / HPFS
    /dev/sdb2         266,246,144   321,671,167    55,425,024   5 Extended
    /dev/sdb5         266,248,192   317,577,215    51,329,024  83 Linux
    /dev/sdb6         317,579,264   321,671,167     4,091,904  82 Linux swap / Solaris
    
    
    "blkid" output: ________________________________________________________________
    
    Device           UUID                                   TYPE       LABEL
    
    /dev/loop0       863ad177-206f-446c-afda-e47d67426c7f   ext4       
    /dev/sda1        0A8CB7218CB705EB                       ntfs       DATA
    /dev/sdb1        78DC33EADC33A0F4                       ntfs       ACER
    /dev/sdb5        73b03530-ccf9-4f7e-b597-6081771c777a   ext4       
    /dev/sdb6        77831b94-dacf-4026-90ff-832f89dd0616   swap       
    
    ================================ Mount points: =================================
    
    Device           Mount_Point              Type       Options
    
    /dev/loop0       /                        ext4       (rw,errors=remount-ro,commit=0)
    /dev/sdb1        /host                    fuseblk    (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other)
    
    
    ================================ sdb1/boot.ini: ================================
    
    --------------------------------------------------------------------------------
    [boot loader] 
    timeout=30 
    default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS 
    [operating systems] 
    multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /noexecute=optin /fastdetect 
    C:\wubildr.mbr = "Ubuntu" 
    --------------------------------------------------------------------------------
    
    ======================== sdb1/Wubi/boot/grub/grub.cfg: =========================
    
    --------------------------------------------------------------------------------
    #
    # DO NOT EDIT THIS FILE
    #
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    #
    
    ### BEGIN /etc/grub.d/00_header ###
    if [ -s $prefix/grubenv ]; then
      set have_grubenv=true
      load_env
    fi
    set default="0"
    if [ "${prev_saved_entry}" ]; then
      set saved_entry="${prev_saved_entry}"
      save_env saved_entry
      set prev_saved_entry=
      save_env prev_saved_entry
      set boot_once=true
    fi
    
    function savedefault {
      if [ -z "${boot_once}" ]; then
        saved_entry="${chosen}"
        save_env saved_entry
      fi
    }
    
    function recordfail {
      set recordfail=1
      if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
    }
    
    function load_video {
    true
    }
    
    insmod part_msdos
    insmod ntfs
    set root='(/dev/sdb,msdos1)'
    search --no-floppy --fs-uuid --set=root 78DC33EADC33A0F4
    loopback loop0 /ubuntu/disks/root.disk
    set root=(loop0)
    if loadfont /usr/share/grub/unicode.pf2 ; then
      set gfxmode=auto
      load_video
      insmod gfxterm
    fi
    terminal_output gfxterm
    if [ "${recordfail}" = 1 ]; 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/light-gray
    if background_color 44,0,30; then
      clear
    fi
    ### END /etc/grub.d/05_debian_theme ###
    
    ### BEGIN /etc/grub.d/10_linux ###
    ### END /etc/grub.d/10_linux ###
    
    ### BEGIN /etc/grub.d/10_lupin ###
    menuentry "Ubuntu, Linux 2.6.38-12-generic" {
        insmod part_msdos
        insmod ntfs
        set root='(/dev/sdb,msdos1)'
        search --no-floppy --fs-uuid --set=root 78DC33EADC33A0F4
        loopback loop0 /ubuntu/disks/root.disk
        set root=(loop0)
        linux /boot/vmlinuz-2.6.38-12-generic root=UUID=78DC33EADC33A0F4 loop=/ubuntu/disks/root.disk ro   quiet splash
        initrd /boot/initrd.img-2.6.38-12-generic
    }
    menuentry "Ubuntu, Linux 2.6.38-12-generic (recovery mode)" {
        insmod part_msdos
        insmod ntfs
        set root='(/dev/sdb,msdos1)'
        search --no-floppy --fs-uuid --set=root 78DC33EADC33A0F4
        loopback loop0 /ubuntu/disks/root.disk
        set root=(loop0)
        linux /boot/vmlinuz-2.6.38-12-generic root=UUID=78DC33EADC33A0F4 loop=/ubuntu/disks/root.disk ro single 
        initrd /boot/initrd.img-2.6.38-12-generic
    }
    menuentry "Ubuntu, Linux 2.6.38-8-generic" {
        insmod part_msdos
        insmod ntfs
        set root='(/dev/sdb,msdos1)'
        search --no-floppy --fs-uuid --set=root 78DC33EADC33A0F4
        loopback loop0 /ubuntu/disks/root.disk
        set root=(loop0)
        linux /boot/vmlinuz-2.6.38-8-generic root=UUID=78DC33EADC33A0F4 loop=/ubuntu/disks/root.disk ro   quiet splash
        initrd /boot/initrd.img-2.6.38-8-generic
    }
    menuentry "Ubuntu, Linux 2.6.38-8-generic (recovery mode)" {
        insmod part_msdos
        insmod ntfs
        set root='(/dev/sdb,msdos1)'
        search --no-floppy --fs-uuid --set=root 78DC33EADC33A0F4
        loopback loop0 /ubuntu/disks/root.disk
        set root=(loop0)
        linux /boot/vmlinuz-2.6.38-8-generic root=UUID=78DC33EADC33A0F4 loop=/ubuntu/disks/root.disk ro single 
        initrd /boot/initrd.img-2.6.38-8-generic
    }
    ### END /etc/grub.d/10_lupin ###
    
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    
    ### BEGIN /etc/grub.d/20_memtest86+ ###
    ### END /etc/grub.d/20_memtest86+ ###
    
    ### BEGIN /etc/grub.d/30_os-prober ###
    menuentry "Microsoft Windows XP Professional (on /dev/sdb1)" --class windows --class os {
        insmod part_msdos
        insmod ntfs
        set root='(/dev/sdb,msdos1)'
        search --no-floppy --fs-uuid --set=root 78DC33EADC33A0F4
        drivemap -s (hd0) ${root}
        chainloader +1
    }
    menuentry "Ubuntu, with Linux 2.6.38-12-generic (on /dev/sdb5)" --class gnu-linux --class gnu --class os {
        insmod part_msdos
        insmod ext2
        set root='(/dev/sdb,msdos5)'
        search --no-floppy --fs-uuid --set=root a8d11602-6074-43fc-92c8-3d8de4ce6b63
        linux /boot/vmlinuz-2.6.38-12-generic root=/dev/sdb5 ro quiet splash vt.handoff=7
        initrd /boot/initrd.img-2.6.38-12-generic
    }
    menuentry "Ubuntu, with Linux 2.6.38-12-generic (recovery mode) (on /dev/sdb5)" --class gnu-linux --class gnu --class os {
        insmod part_msdos
        insmod ext2
        set root='(/dev/sdb,msdos5)'
        search --no-floppy --fs-uuid --set=root a8d11602-6074-43fc-92c8-3d8de4ce6b63
        linux /boot/vmlinuz-2.6.38-12-generic root=/dev/sdb5 ro single
        initrd /boot/initrd.img-2.6.38-12-generic
    }
    menuentry "Ubuntu, with Linux 2.6.38-8-generic (on /dev/sdb5)" --class gnu-linux --class gnu --class os {
        insmod part_msdos
        insmod ext2
        set root='(/dev/sdb,msdos5)'
        search --no-floppy --fs-uuid --set=root a8d11602-6074-43fc-92c8-3d8de4ce6b63
        linux /boot/vmlinuz-2.6.38-8-generic root=/dev/sdb5 ro quiet splash vt.handoff=7
        initrd /boot/initrd.img-2.6.38-8-generic
    }
    menuentry "Ubuntu, with Linux 2.6.38-8-generic (recovery mode) (on /dev/sdb5)" --class gnu-linux --class gnu --class os {
        insmod part_msdos
        insmod ext2
        set root='(/dev/sdb,msdos5)'
        search --no-floppy --fs-uuid --set=root a8d11602-6074-43fc-92c8-3d8de4ce6b63
        linux /boot/vmlinuz-2.6.38-8-generic root=/dev/sdb5 ro single
        initrd /boot/initrd.img-2.6.38-8-generic
    }
    ### 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 ###
    
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f  $prefix/custom.cfg ]; then
      source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    --------------------------------------------------------------------------------
    
    ============================= sdb1/Wubi/etc/fstab: =============================
    
    --------------------------------------------------------------------------------
    # /etc/fstab: static file system information.
    #
    # Use 'blkid -o value -s UUID' to print the universally unique identifier
    # for a device; this may be used with UUID= as a more robust way to name
    # devices that works even if disks are added and removed. See fstab(5).
    #
    # <file system> <mount point>   <type>  <options>       <dump>  <pass>
    proc            /proc           proc    nodev,noexec,nosuid 0       0
    /host/ubuntu/disks/root.disk /               ext4    loop,errors=remount-ro 0       1
    /host/ubuntu/disks/swap.disk none            swap    loop,sw         0       0
    --------------------------------------------------------------------------------
    
    ================= sdb1/Wubi: Location of files loaded by Grub: =================
    
               GiB - GB             File                                 Fragment(s)
    
      12.242542267 = 13.145329664   boot/grub/grub.cfg                             1
       1.410411835 = 1.514418176    boot/initrd.img-2.6.38-12-generic              1
       1.004127502 = 1.078173696    boot/initrd.img-2.6.38-8-generic               2
       0.988590240 = 1.061490688    boot/vmlinuz-2.6.38-12-generic                 1
       6.799411774 = 7.300812800    boot/vmlinuz-2.6.38-8-generic                  1
       1.410411835 = 1.514418176    initrd.img                                     1
       1.004127502 = 1.078173696    initrd.img.old                                 2
       0.988590240 = 1.061490688    vmlinuz                                        1
       6.799411774 = 7.300812800    vmlinuz.old                                    1
    
    =========================== sdb5/boot/grub/grub.cfg: ===========================
    
    --------------------------------------------------------------------------------
    #
    # DO NOT EDIT THIS FILE
    #
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    #
    
    ### BEGIN /etc/grub.d/00_header ###
    if [ -s $prefix/grubenv ]; then
      set have_grubenv=true
      load_env
    fi
    set default="0"
    if [ "${prev_saved_entry}" ]; then
      set saved_entry="${prev_saved_entry}"
      save_env saved_entry
      set prev_saved_entry=
      save_env prev_saved_entry
      set boot_once=true
    fi
    
    function savedefault {
      if [ -z "${boot_once}" ]; then
        saved_entry="${chosen}"
        save_env saved_entry
      fi
    }
    
    function recordfail {
      set recordfail=1
      if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
    }
    
    function load_video {
    true
    }
    
    insmod part_msdos
    insmod ext2
    set root='(/dev/sdb,msdos5)'
    search --no-floppy --fs-uuid --set=root a8d11602-6074-43fc-92c8-3d8de4ce6b63
    if loadfont /usr/share/grub/unicode.pf2 ; then
      set gfxmode=auto
      load_video
      insmod gfxterm
    fi
    terminal_output gfxterm
    if [ "${recordfail}" = 1 ]; 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/light-gray
    if background_color 44,0,30; then
      clear
    fi
    ### END /etc/grub.d/05_debian_theme ###
    
    ### BEGIN /etc/grub.d/10_linux ###
    if [ ${recordfail} != 1 ]; then
      if [ -e ${prefix}/gfxblacklist.txt ]; then
        if hwmatch ${prefix}/gfxblacklist.txt 3; then
          if [ ${match} = 0 ]; then
            set linux_gfx_mode=keep
          else
            set linux_gfx_mode=text
          fi
        else
          set linux_gfx_mode=text
        fi
      else
        set linux_gfx_mode=keep
      fi
    else
      set linux_gfx_mode=text
    fi
    export linux_gfx_mode
    if [ "$linux_gfx_mode" != "text" ]; then load_video; fi
    menuentry 'Ubuntu, with Linux 2.6.38-12-generic' --class ubuntu --class gnu-linux --class gnu --class os {
        recordfail
        set gfxpayload=$linux_gfx_mode
        insmod part_msdos
        insmod ext2
        set root='(/dev/sdb,msdos5)'
        search --no-floppy --fs-uuid --set=root a8d11602-6074-43fc-92c8-3d8de4ce6b63
        linux    /boot/vmlinuz-2.6.38-12-generic root=/dev/sdb5 ro   quiet splash vt.handoff=7
        initrd    /boot/initrd.img-2.6.38-12-generic
    }
    menuentry 'Ubuntu, with Linux 2.6.38-12-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
        recordfail
        set gfxpayload=$linux_gfx_mode
        insmod part_msdos
        insmod ext2
        set root='(/dev/sdb,msdos5)'
        search --no-floppy --fs-uuid --set=root a8d11602-6074-43fc-92c8-3d8de4ce6b63
        echo    'Loading Linux 2.6.38-12-generic ...'
        linux    /boot/vmlinuz-2.6.38-12-generic root=/dev/sdb5 ro single 
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-2.6.38-12-generic
    }
    submenu "Previous Linux versions" {
    menuentry 'Ubuntu, with Linux 2.6.38-8-generic' --class ubuntu --class gnu-linux --class gnu --class os {
        recordfail
        set gfxpayload=$linux_gfx_mode
        insmod part_msdos
        insmod ext2
        set root='(/dev/sdb,msdos5)'
        search --no-floppy --fs-uuid --set=root a8d11602-6074-43fc-92c8-3d8de4ce6b63
        linux    /boot/vmlinuz-2.6.38-8-generic root=/dev/sdb5 ro   quiet splash vt.handoff=7
        initrd    /boot/initrd.img-2.6.38-8-generic
    }
    menuentry 'Ubuntu, with Linux 2.6.38-8-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
        recordfail
        set gfxpayload=$linux_gfx_mode
        insmod part_msdos
        insmod ext2
        set root='(/dev/sdb,msdos5)'
        search --no-floppy --fs-uuid --set=root a8d11602-6074-43fc-92c8-3d8de4ce6b63
        echo    'Loading Linux 2.6.38-8-generic ...'
        linux    /boot/vmlinuz-2.6.38-8-generic root=/dev/sdb5 ro single 
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-2.6.38-8-generic
    }
    }
    ### END /etc/grub.d/10_linux ###
    
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    
    ### BEGIN /etc/grub.d/20_memtest86+ ###
    menuentry "Memory test (memtest86+)" {
        insmod part_msdos
        insmod ext2
        set root='(/dev/sdb,msdos5)'
        search --no-floppy --fs-uuid --set=root a8d11602-6074-43fc-92c8-3d8de4ce6b63
        linux16    /boot/memtest86+.bin
    }
    menuentry "Memory test (memtest86+, serial console 115200)" {
        insmod part_msdos
        insmod ext2
        set root='(/dev/sdb,msdos5)'
        search --no-floppy --fs-uuid --set=root a8d11602-6074-43fc-92c8-3d8de4ce6b63
        linux16    /boot/memtest86+.bin console=ttyS0,115200n8
    }
    ### END /etc/grub.d/20_memtest86+ ###
    
    ### BEGIN /etc/grub.d/30_os-prober ###
    menuentry "Microsoft Windows XP Professional (on /dev/sdb1)" --class windows --class os {
        insmod part_msdos
        insmod ntfs
        set root='(/dev/sdb,msdos1)'
        search --no-floppy --fs-uuid --set=root 78DC33EADC33A0F4
        drivemap -s (hd0) ${root}
        chainloader +1
    }
    ### 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 ###
    
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f  $prefix/custom.cfg ]; then
      source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    --------------------------------------------------------------------------------
    
    =============================== sdb5/etc/fstab: ================================
    
    --------------------------------------------------------------------------------
    # /etc/fstab: static file system information.
    #
    # Use 'blkid -o value -s UUID' to print the universally unique identifier
    # for a device; this may be used with UUID= as a more robust way to name
    # devices that works even if disks are added and removed. See fstab(5).
    #
    # <file system> <mount point>   <type>  <options>       <dump>  <pass>
    proc            /proc           proc    nodev,noexec,nosuid 0       0
    
    
    # root was on /dev/sdb5 when migrated
    UUID=73b03530-ccf9-4f7e-b597-6081771c777a    /    ext4    errors=remount-ro    0    1
    # swap was on /dev/sdb6 when migrated
    UUID=77831b94-dacf-4026-90ff-832f89dd0616    none    swap    sw    0    0
    --------------------------------------------------------------------------------
    
    =================== sdb5: Location of files loaded by Grub: ====================
    
               GiB - GB             File                                 Fragment(s)
    
     139.322296143 = 149.596176384  boot/grub/grub.cfg                             1
     128.660156250 = 138.147790848  boot/initrd.img-2.6.38-12-generic              2
     127.117408752 = 136.491278336  boot/initrd.img-2.6.38-8-generic               1
     141.092124939 = 151.496515584  boot/vmlinuz-2.6.38-12-generic                 1
     141.096336365 = 151.501037568  boot/vmlinuz-2.6.38-8-generic                  1
     128.660156250 = 138.147790848  initrd.img                                     2
     127.117408752 = 136.491278336  initrd.img.old                                 1
     141.092124939 = 151.496515584  vmlinuz                                        1
     141.096336365 = 151.501037568  vmlinuz.old                                    1
    
    ======================== Unknown MBRs/Boot Sectors/etc: ========================
    
    Unknown MBR on /dev/sdb
    
    00000000  e8 12 01 b9 f0 01 be 10  7c bf 10 06 57 f3 a4 c3  |........|...W...|
    00000010  8b 4e 14 83 f9 0e 75 08  8d 5e 07 43 02 07 e2 fb  |.N....u..^.C....|
    00000020  8c 56 0c 8c 56 0e 75 69  8a 56 10 84 d2 79 62 e8  |.V..V.ui.V...yb.|
    00000030  f6 00 bb aa 55 cd 13 72  6f 3b 5e 5c 75 6a d1 e9  |....U..ro;^\uj..|
    00000040  73 66 b4 42 c6 46 02 01  eb 66 89 b6 f6 fe 8a 44  |sf.B.F...f.....D|
    00000050  04 84 c0 74 0f 3c 05 74  0b 3c 0f 74 07 8a 14 80  |...t.<.t.<.t....|
    00000060  e2 80 75 cb 83 c6 10 06  c4 5c 08 89 5e 08 8c 46  |..u......\..^..F|
    00000070  0a 07 fe 8e f9 fe 75 d2  b0 31 c6 46 d7 50 88 46  |......u..1.F.P.F|
    00000080  d4 be 6a 07 ac 84 c0 74  08 b4 0e b3 07 cd 10 eb  |..j....t........|
    00000090  f3 e8 81 00 88 46 11 be  ae 07 3c 05 75 c6 cd 16  |.....F....<.u...|
    000000a0  33 d2 89 56 08 89 56 0a  e8 7d 00 72 1b b8 01 02  |3..V..V..}.r....|
    000000b0  bf 05 00 8b dc 56 50 50  32 e4 cd 13 58 8b f5 cd  |.....VPP2...X...|
    000000c0  13 58 5e 73 03 4f 75 eb  b0 32 72 b2 40 8a 66 11  |.X^s.Ou..2r.@.f.|
    000000d0  9e 7b 04 c6 47 02 0e 72  35 75 0c 88 57 40 c4 4e  |.{..G..r5u..W@.N|
    000000e0  08 89 4f 1c 8c 47 1e 79  06 8a 4e 12 88 4f 25 80  |..O..G.y..N..O%.|
    000000f0  c7 02 81 7f fe 55 aa 75  85 81 7f fa cd 19 75 09  |.....U.u......u.|
    00000100  c6 47 fa e9 c7 47 fb 94  88 e8 1c 00 ff e4 74 ce  |.G...G........t.|
    00000110  88 57 24 eb c9 5d 33 c0  8e d8 8e c0 8e d0 bc 00  |.W$..]3.........|
    00000120  7c 55 bd a2 07 fc fb c3  b4 08 52 06 cd 13 07 72  ||U........R....r|
    00000130  33 33 db 8a de 8b 46 0a  33 d2 83 e1 3f f7 f1 91  |33....F.3...?...|
    00000140  97 8b 46 08 f7 f7 42 87  ca 3b da 72 17 43 f7 f3  |..F...B..;.r.C..|
    00000150  8a f2 86 c5 d1 e8 d1 e8  0a c8 d0 cc d0 cc 0a f4  |................|
    00000160  84 e4 74 02 b4 41 5b 8a  d3 c3 0d 0a 4d 42 52 20  |..t..A[.....MBR |
    00000170  45 72 72 6f 72 20 00 0d  0a 00 72 65 73 73 20 61  |Error ....ress a|
    00000180  6e 79 20 6b 65 79 20 74  6f 20 62 6f 6f 74 20 66  |ny key to boot f|
    00000190  72 6f 6d 20 66 6c 6f 70  70 79 2e 2e 2e 00 00 00  |rom floppy......|
    000001a0  00 00 10 00 01 00 00 7c  00 00 00 00 00 00 00 00  |.......|........|
    000001b0  00 00 00 00 00 00 00 00  a3 e8 8d 57 00 00 80 01  |...........W....|
    000001c0  01 00 07 fe ff fe 3f 00  00 00 3e 94 de 0f 00 fe  |......?...>.....|
    000001d0  ff ff 05 fe ff ff 00 98  de 0f 00 b8 4d 03 00 00  |............M...|
    000001e0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
    000001f0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 55 aa  |..............U.|
    00000200
    
    Unknown BootLoader on sdb2
    
    00000000  ae e5 3b bf 0e b2 6c a5  7d db 62 a1 8a 5d 73 d1  |..;...l.}.b..]s.|
    00000010  7f 2d a2 a1 9a 95 a4 29  71 99 66 e5 ec fa ec 96  |.-.....)q.f.....|
    00000020  72 c4 d5 de da ce d0 2f  36 d8 97 cb 37 6e 6d af  |r....../6...7nm.|
    00000030  36 a2 c9 b9 2f 3f e0 53  fa 95 cd 1d 54 cf ca b3  |6.../?.S....T...|
    00000040  de ca b4 96 e8 c1 27 fd  f7 f8 ae 24 fb 28 e3 29  |......'....$.(.)|
    00000050  77 cf 9f 2e fa ae ca 3d  2e 5e 4d 8d e7 61 51 fb  |w......=.^M..aQ.|
    00000060  36 7f 66 c0 ea 8a c1 0f  26 bc d9 4a 9c 76 45 7f  |6.f.....&..J.vE.|
    00000070  f6 ee 97 c5 e0 33 71 71  d4 e7 f1 78 34 b2 fb f2  |.....3qq...x4...|
    00000080  55 56 25 83 81 0a 92 07  a6 18 6a 4b a2 cb d3 db  |UV%.......jK....|
    00000090  91 3d b7 6f 7d d5 c7 7d  e8 6b 9e 3d 4c 14 ee eb  |.=.o}..}.k.=L...|
    000000a0  0f 57 be 3f 7b a8 28 7d  7b de e6 29 ea 50 0a 7b  |.W.?{.(}{..).P.{|
    000000b0  db da c6 42 3d d8 ab ca  7f 83 a9 19 a1 59 17 af  |...B=........Y..|
    000000c0  57 98 ab 6f 29 7c e5 60  79 2d 93 2a 7f ca 81 ef  |W..o)|.`y-.*....|
    000000d0  58 23 74 de 81 45 dd dc  29 a2 81 b3 e2 77 c7 8c  |X#t..E..)....w..|
    000000e0  ed a1 63 99 d8 8d 19 b6  2f 01 38 98 47 d8 8e 73  |..c...../.8.G..s|
    000000f0  13 65 bd 2a 7a 79 73 95  0c 31 5d 7a 82 4e af 3e  |.e.*zys..1]z.N.>|
    00000100  68 95 fb ab ec f2 aa de  cb 9f 03 31 b5 b2 b0 ae  |h..........1....|
    00000110  63 14 83 db de fa 2a 05  4f b4 0f 5a 9e 36 3e 18  |c.....*.O..Z.6>.|
    00000120  23 f7 63 73 25 66 76 22  7f b3 00 d7 17 55 66 aa  |#.cs%fv".....Uf.|
    00000130  ff 16 d9 7c 95 57 23 75  d2 59 72 60 f3 e0 a6 57  |...|.W#u.Yr`...W|
    00000140  fd 9f c6 4b be ca 6f 72  9c 63 62 e5 f1 d7 74 3e  |...K..or.cb...t>|
    00000150  cb 9c b2 55 5b df 59 b1  10 29 aa d7 c3 07 11 aa  |...U[.Y..)......|
    00000160  d3 e1 7e 70 bf 22 df 93  55 7d 2b 31 9d 8a f1 30  |..~p."..U}+1...0|
    00000170  05 dc d6 91 68 e7 38 93  e8 9f 2c 83 55 7b ef f0  |....h.8...,.U{..|
    00000180  7f 36 f3 a0 a5 4a 05 f0  94 43 d2 ee 93 e9 75 80  |.6...J...C....u.|
    00000190  75 57 f7 da dc 29 9c cb  a4 f3 57 19 04 c2 e3 78  |uW...)....W....x|
    000001a0  bd ce d3 eb ef 7b 9d f7  2a c8 8f 3e 3a ce 3d 5c  |.....{..*..>:.=\|
    000001b0  c9 38 c2 b3 ee 73 56 f1  b4 e1 f7 ab 3e 6b 00 fe  |.8...sV.....>k..|
    000001c0  ff ff 83 fe ff ff 00 08  00 00 00 38 0f 03 00 fe  |...........8....|
    000001d0  ff ff 05 fe ff ff 00 40  0f 03 00 78 3e 00 00 00  |.......@...x>...|
    000001e0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
    000001f0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 55 aa  |..............U.|
    00000200

Page 53 of 69 FirstFirst ... 343515253545563 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

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