Page 2 of 15 FirstFirst 123412 ... LastLast
Results 11 to 20 of 142

Thread: Vista (32) won't boot after 12.04 dual boot install

  1. #11
    Join Date
    Nov 2012
    Location
    White Hall, WV
    Beans
    278
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Vista (32) won't boot after 12.04 dual boot install

    Here is grub.cfg:

    Code:
    #
    # 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="Windows Vista (loader) (on /dev/sda1)"
    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 {
      insmod vbe
      insmod vga
      insmod video_bochs
      insmod video_cirrus
    }
    
    insmod part_msdos
    insmod ext2
    set root='(hd1,msdos5)'
    search --no-floppy --fs-uuid --set=root d6a1667f-6349-428c-bfa4-e2d9db952354
    if loadfont /usr/share/grub/unicode.pf2 ; then
      set gfxmode=auto
      load_video
      insmod gfxterm
      insmod part_msdos
      insmod ext2
      set root='(hd1,msdos5)'
      search --no-floppy --fs-uuid --set=root d6a1667f-6349-428c-bfa4-e2d9db952354
      set locale_dir=($root)/boot/grub/locale
      set lang=en_US
      insmod gettext
    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 ###
    function gfxmode {
        set gfxpayload="${1}"
        if [ "${1}" = "keep" ]; then
            set vt_handoff=vt.handoff=7
        else
            set vt_handoff=
        fi
    }
    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 3.8.0-29-generic' --class ubuntu --class gnu-linux --class gnu --class os {
        recordfail
        gfxmode $linux_gfx_mode
        insmod gzio
        insmod part_msdos
        insmod ext2
        set root='(hd1,msdos5)'
        search --no-floppy --fs-uuid --set=root d6a1667f-6349-428c-bfa4-e2d9db952354
        linux    /boot/vmlinuz-3.8.0-29-generic root=UUID=d6a1667f-6349-428c-bfa4-e2d9db952354 ro   quiet splash $vt_handoff
        initrd    /boot/initrd.img-3.8.0-29-generic
    }
    menuentry 'Ubuntu, with Linux 3.8.0-29-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
        recordfail
        insmod gzio
        insmod part_msdos
        insmod ext2
        set root='(hd1,msdos5)'
        search --no-floppy --fs-uuid --set=root d6a1667f-6349-428c-bfa4-e2d9db952354
        echo    'Loading Linux 3.8.0-29-generic ...'
        linux    /boot/vmlinuz-3.8.0-29-generic root=UUID=d6a1667f-6349-428c-bfa4-e2d9db952354 ro recovery nomodeset 
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-3.8.0-29-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/30_os-prober ###
    menuentry "Windows Vista (loader) (on /dev/sda1)" --class windows --class os {
        insmod part_msdos
        insmod ntfs
        set root='(hd0,msdos1)'
        search --no-floppy --fs-uuid --set=root 4C303B4F303B3EF0
        chainloader +1
    }
    ### END /etc/grub.d/30_os-prober ###
    
    ### BEGIN /etc/grub.d/30_uefi-firmware ###
    ### END /etc/grub.d/30_uefi-firmware ###
    
    ### 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 ###
    /\_/\
    (='.'=) Angus
    (") (") Skye
    (") (") Finn

  2. #12
    Join Date
    Nov 2012
    Location
    White Hall, WV
    Beans
    278
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Vista (32) won't boot after 12.04 dual boot install

    OK here is the output of boot repair

    Code:
     	       		       	    Ubuntu Pastebin 	      Paste from boot-repair at Tue, 17 Sep 2013 18:34:01 +0100  Download as text  
    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 Boot Info Script e7fc706 + Boot-Repair extra info [Boot-Info 5Sep2013] ============================= Boot Info Summary: =============================== => Grub2 (v1.99) is installed in the MBR of /dev/sda and looks at sector 1 of the same hard drive for core.img. core.img is at this location and looks in partition 5 for /boot/grub. => Grub2 (v1.99) is installed in the MBR of /dev/sdb and looks at sector 1 of the same hard drive for core.img. core.img is at this location and looks for (,msdos5)/boot/grub on this drive. sda1: __________________________________________________________________________ File system: ntfs Boot sector type: Windows Vista: NTFS Boot sector info: No errors found in the Boot Parameter Block. Operating System: Windows Vista Boot files: /bootmgr /Boot/BCD /Windows/System32/winload.exe sdb1: __________________________________________________________________________ File system: ntfs Boot sector type: Windows Vista: NTFS Boot sector info: No errors found in the Boot Parameter Block. Operating System: Boot files: 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 12.04.3 LTS Boot files: /boot/grub/grub.cfg /etc/fstab /boot/grub/core.img sdb6: __________________________________________________________________________ File system: swap Boot sector type: - Boot sector info: ============================ Drive/Partition Info: ============================= Drive: sda _____________________________________________________________________ Disk /dev/sda: 320.1 GB, 320072933376 bytes 255 heads, 63 sectors/track, 38913 cylinders, total 625142448 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 625,137,344 625,137,282 7 NTFS / exFAT / HPFS Drive: sdb _____________________________________________________________________ Disk /dev/sdb: 60.0 GB, 60011642880 bytes 255 heads, 63 sectors/track, 7296 cylinders, total 117210240 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 105,090,774 105,090,712 7 NTFS / exFAT / HPFS /dev/sdb2 105,091,070 117,209,087 12,118,018 5 Extended /dev/sdb5 * 105,091,072 113,037,311 7,946,240 83 Linux /dev/sdb6 113,039,360 117,209,087 4,169,728 82 Linux swap / Solaris "blkid" output: ________________________________________________________________ Device UUID TYPE LABEL /dev/sda1 4C303B4F303B3EF0 ntfs /dev/sdb1 5BBEC93F78D5C006 ntfs /dev/sdb5 d6a1667f-6349-428c-bfa4-e2d9db952354 ext4 /dev/sdb6 5c412063-e907-4d54-83ad-4d060dbe340a swap ================================ Mount points: ================================= Device Mount_Point Type Options /dev/sdb5 / ext4 (rw,errors=remount-ro) =========================== 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="Windows Vista (loader) (on /dev/sda1)" 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 { insmod vbe insmod vga insmod video_bochs insmod video_cirrus } insmod part_msdos insmod ext2 set root='(hd1,msdos5)' search --no-floppy --fs-uuid --set=root d6a1667f-6349-428c-bfa4-e2d9db952354 if loadfont /usr/share/grub/unicode.pf2 ; then set gfxmode=auto load_video insmod gfxterm insmod part_msdos insmod ext2 set root='(hd1,msdos5)' search --no-floppy --fs-uuid --set=root d6a1667f-6349-428c-bfa4-e2d9db952354 set locale_dir=($root)/boot/grub/locale set lang=en_US insmod gettext 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 ### function gfxmode { set gfxpayload="${1}" if [ "${1}" = "keep" ]; then set vt_handoff=vt.handoff=7 else set vt_handoff= fi } 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 3.8.0-29-generic' --class ubuntu --class gnu-linux --class gnu --class os { recordfail gfxmode $linux_gfx_mode insmod gzio insmod part_msdos insmod ext2 set root='(hd1,msdos5)' search --no-floppy --fs-uuid --set=root d6a1667f-6349-428c-bfa4-e2d9db952354 linux /boot/vmlinuz-3.8.0-29-generic root=UUID=d6a1667f-6349-428c-bfa4-e2d9db952354 ro quiet splash $vt_handoff initrd /boot/initrd.img-3.8.0-29-generic } menuentry 'Ubuntu, with Linux 3.8.0-29-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os { recordfail insmod gzio insmod part_msdos insmod ext2 set root='(hd1,msdos5)' search --no-floppy --fs-uuid --set=root d6a1667f-6349-428c-bfa4-e2d9db952354 echo 'Loading Linux 3.8.0-29-generic ...' linux /boot/vmlinuz-3.8.0-29-generic root=UUID=d6a1667f-6349-428c-bfa4-e2d9db952354 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.8.0-29-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/30_os-prober ### menuentry "Windows Vista (loader) (on /dev/sda1)" --class windows --class os { insmod part_msdos insmod ntfs set root='(hd0,msdos1)' search --no-floppy --fs-uuid --set=root 4C303B4F303B3EF0 chainloader +1 } ### END /etc/grub.d/30_os-prober ### ### BEGIN /etc/grub.d/30_uefi-firmware ### ### END /etc/grub.d/30_uefi-firmware ### ### 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' 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 # / was on /dev/sdb5 during installation UUID=d6a1667f-6349-428c-bfa4-e2d9db952354 / ext4 errors=remount-ro 0 1 # swap was on /dev/sdb6 during installation UUID=5c412063-e907-4d54-83ad-4d060dbe340a none swap sw 0 0 -------------------------------------------------------------------------------- =================== sdb5: Location of files loaded by Grub: ==================== GiB - GB File Fragment(s) 51.002082825 = 54.763069440 boot/grub/grub.cfg 1 53.258567810 = 57.185951744 boot/grub/core.img 1 51.108581543 = 54.877421568 boot/vmlinuz-3.8.0-29-generic 1 51.108581543 = 54.877421568 vmlinuz 1 51.540164948 = 55.340830720 boot/initrd.img-3.8.0-29-generic 1 51.540164948 = 55.340830720 initrd.img 1 ======================== Unknown MBRs/Boot Sectors/etc: ======================== Unknown BootLoader on sdb2 00000000 bb b1 ca 8d 1e 4f 52 91 c5 2a 28 42 a0 da 50 bb |.....OR..*(B..P.| 00000010 15 0d 26 49 4b ca ea ee 02 31 b7 f0 6e a4 e6 93 |..&IK....1..n...| 00000020 91 df b7 47 d6 e5 24 c3 0d d1 53 46 7b 8c d4 75 |...G..$...SF{..u| 00000030 6a eb d0 c9 c2 49 de 26 21 e8 7a 09 4f 52 59 87 |j....I.&!.z.ORY.| 00000040 7b b9 0c b4 77 52 00 a7 cc 6e 99 44 22 0d 61 92 |{...wR...n.D".a.| 00000050 e0 a6 f6 fa 8b 93 59 87 bc 8f 4b 3e 7b 85 78 09 |......Y...K>{.x.| 00000060 31 34 4a 70 64 bc fe a9 e0 a8 27 6c a9 a1 23 95 |14Jpd.....'l..#.| 00000070 4b 85 d2 3f 93 33 c2 54 82 c9 d8 3d 69 c0 0a a4 |K..?.3.T...=i...| 00000080 75 fa 6f 9b cc 46 4f 9b 4a aa 01 f5 64 fc 24 9a |u.o..FO.J...d.$.| 00000090 4f fd b4 09 28 b4 27 56 d2 0d c7 cb 9d 19 ee 3f |O...(.'V.......?| 000000a0 7e ca f8 6d 8d a7 64 ef b6 91 65 12 f9 a7 9e 21 |~..m..d...e....!| 000000b0 58 5c 2e c3 d3 62 b6 95 64 af b8 62 a2 e5 96 5b |X\...b..d..b...[| 000000c0 7d 12 10 01 49 91 01 9b 34 57 a0 57 c8 be 04 9f |}...I...4W.W....| 000000d0 79 9b 21 46 d2 81 53 9a 0b 46 fa 7d 54 ed 22 97 |y.!F..S..F.}T.".| 000000e0 65 b9 80 d1 87 99 90 81 25 7c 4b 1d 9d 62 4a c5 |e.......%|K..bJ.| 000000f0 95 0a 34 c9 71 17 67 ef 71 81 6d ba 18 c0 dc 19 |..4.q.g.q.m.....| 00000100 cf 7e 42 0a 30 55 a9 ac e2 64 a5 bc 4a d7 91 e3 |.~B.0U...d..J...| 00000110 b1 4a 22 18 91 4c 21 92 dc bb 4a 4d a6 aa c6 06 |.J"..L!...JM....| 00000120 34 8e f4 9f e2 57 88 3d a2 e6 e0 00 0f d4 c2 af |4....W.=........| 00000130 20 04 6c 94 f1 93 2c 24 d5 15 ca 2b 99 57 5e 9a | .l...,$...+.W^.| 00000140 68 a2 59 44 3a d6 c1 cd b1 57 b2 33 d4 68 68 29 |h.YD:....W.3.hh)| 00000150 09 24 9b 2c 75 13 0a 46 c4 99 42 5b 8e 15 51 25 |.$.,u..F..B[..Q%| 00000160 7b 6e e6 ab 83 f0 5e 32 fc 2a 13 3c ac 62 01 5a |{n....^2.*.<.b.Z| 00000170 2e d8 c0 a6 3b 57 49 35 9d 44 87 0f 9c 48 5b 99 |....;WI5.D...H[.| 00000180 85 70 0c 96 e8 71 d9 8c cb 29 85 aa 3d d0 75 97 |.p...q...)..=.u.| 00000190 5a 22 9b c4 43 4d 27 1b 75 b8 3f 33 a4 18 4f ed |Z"..CM'.u.?3..O.| 000001a0 a6 92 9a 0c 49 93 31 47 6d 79 01 ab 9b a5 1e 61 |....I.1Gmy.....a| 000001b0 40 d9 93 d3 c2 a8 32 ac 6d ff ff dc 4e 0e 80 fe |@.....2.m...N...| 000001c0 ff ff 83 fe ff ff 02 00 00 00 00 40 79 00 00 fe |...........@y...| 000001d0 ff ff 05 fe ff ff 02 40 79 00 00 a8 3f 00 00 00 |.......@y...?...| 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 ========= Devices which don't seem to have a corresponding hard drive: ========= sdc ADDITIONAL INFORMATION : =================== log of boot-repair 2013-09-17__13h31 =================== boot-repair version : 3.199~ppa27~precise boot-sav version : 3.199~ppa27~precise glade2script version : 3.2.2~ppa45~precise boot-sav-extra version : 3.199~ppa27~precise boot-repair is executed in installed-session (Ubuntu 12.04.3 LTS, precise, Ubuntu, i686) CPU op-mode(s): 32-bit, 64-bit BOOT_IMAGE=/boot/vmlinuz-3.8.0-29-generic root=UUID=d6a1667f-6349-428c-bfa4-e2d9db952354 ro quiet splash vt.handoff=7 =================== os-prober: /dev/sdb5:The OS now in use - Ubuntu 12.04.3 LTS CurrentSession:linux /dev/sda1:Windows Vista (loader):Windows:chain =================== blkid: /dev/sda1: UUID="4C303B4F303B3EF0" TYPE="ntfs" /dev/sdb1: UUID="5BBEC93F78D5C006" TYPE="ntfs" /dev/sdb5: UUID="d6a1667f-6349-428c-bfa4-e2d9db952354" TYPE="ext4" /dev/sdb6: UUID="5c412063-e907-4d54-83ad-4d060dbe340a" TYPE="swap" 2 disks with OS, 2 OS : 1 Linux, 0 MacOS, 1 Windows, 0 unknown type OS. Warning: extended partition does not start at a cylinder boundary. DOS and Linux will interpret the contents differently. =================== /etc/grub.d/ : drwxr-xr-x 2 root root 4096 Sep 17 13:04 grub.d drwxr-xr-x 2 root root 4096 Aug 20 13:59 grub.d.bak total 56 -rwxr-xr-x 1 root root 6743 Jul 19 19:32 00_header -rwxr-xr-x 1 root root 5522 Jul 19 19:17 05_debian_theme -rwxr-xr-x 1 root root 7780 Jul 19 19:32 10_linux -rwxr-xr-x 1 root root 6335 Jul 19 19:32 20_linux_xen -rwxr-xr-x 1 root root 7603 Jul 19 19:32 30_os-prober -rwxr-xr-x 1 root root 1388 Jul 19 19:32 30_uefi-firmware -rwxr-xr-x 1 root root 214 Jul 19 19:32 40_custom -rwxr-xr-x 1 root root 95 Jul 19 19:32 41_custom -rw-r--r-- 1 root root 483 Jul 19 19:32 README =================== /etc/default/grub : # If you change this file, run 'update-grub' afterwards to update # /boot/grub/grub.cfg. # For full documentation of the options in this file, see: # info -f grub -n 'Simple configuration' GRUB_DEFAULT="Windows Vista (loader) (on /dev/sda1)" #GRUB_HIDDEN_TIMEOUT=0 GRUB_HIDDEN_TIMEOUT_QUIET=true GRUB_TIMEOUT=10 GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian` GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" GRUB_CMDLINE_LINUX="" # Uncomment to enable BadRAM filtering, modify to suit your needs # This works with Linux (no patch required) and with any kernel that obtains # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...) #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef" # Uncomment to disable graphical terminal (grub-pc only) #GRUB_TERMINAL=console # The resolution used on graphical terminal # note that you can use only modes which your graphic card supports via VBE # you can see them in real GRUB with the command `vbeinfo' #GRUB_GFXMODE=640x480 # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux #GRUB_DISABLE_LINUX_UUID=true # Uncomment to disable generation of recovery mode menu entries #GRUB_DISABLE_RECOVERY="true" # Uncomment to get a beep at grub start #GRUB_INIT_TUNE="480 440 1" =================== UEFI/Legacy mode: This installed-session is not EFI-compatible. SecureBoot disabled. =================== PARTITIONS & DISKS: sdb5 : sdb, not-sepboot, grubenv-ok grub2, grub-pc , update-grub, 32, with-boot, is-os, not--efi--part, fstab-without-boot, fstab-without-efi, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot, apt-get, grub-install, with--usr, fstab-without-usr, not-sep-usr, standard, not-far, . sda1 : sda, not-sepboot, no-grubenv nogrub, no-docgrub, no-update-grub, 32, no-boot, is-os, not--efi--part, part-has-no-fstab, part-has-no-fstab, no-nt, haswinload, no-recov-nor-hid, bootmgr, is-winboot, nopakmgr, nogrubinstall, no---usr, part-has-no-fstab, not-sep-usr, standard, farbios, /mnt/boot-sav/sda1. sdb1 : sdb, not-sepboot, no-grubenv nogrub, no-docgrub, no-update-grub, 32, no-boot, no-os, not--efi--part, part-has-no-fstab, part-has-no-fstab, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot, nopakmgr, nogrubinstall, no---usr, part-has-no-fstab, not-sep-usr, standard, not-far, /mnt/boot-sav/sdb1. sdb : not-GPT, BIOSboot-not-needed, has-no-EFIpart, not-usb, has-os, 63 sectors * 512 bytes sda : not-GPT, BIOSboot-not-needed, has-no-EFIpart, not-usb, has-os, 63 sectors * 512 bytes =================== parted -l: Model: ATA WDC WD3200AAJS-0 (scsi) Disk /dev/sda: 320GB Sector size (logical/physical): 512B/512B Partition Table: msdos Number Start End Size Type File system Flags 1 32.3kB 320GB 320GB primary ntfs boot Model: ATA ST96812AS (scsi) Disk /dev/sdb: 60.0GB Sector size (logical/physical): 512B/512B Partition Table: msdos Number Start End Size Type File system Flags 1 32.3kB 53.8GB 53.8GB primary ntfs 2 53.8GB 60.0GB 6204MB extended 5 53.8GB 57.9GB 4068MB logical ext4 boot 6 57.9GB 60.0GB 2135MB logical linux-swap(v1) =================== parted -lm: BYT; /dev/sda:320GB:scsi:512:512:msdos:ATA WDC WD3200AAJS-0; 1:32.3kB:320GB:320GB:ntfs::boot; BYT; /dev/sdb:60.0GB:scsi:512:512:msdos:ATA ST96812AS; 1:32.3kB:53.8GB:53.8GB:ntfs::; 2:53.8GB:60.0GB:6204MB:::; 5:53.8GB:57.9GB:4068MB:ext4::boot; 6:57.9GB:60.0GB:2135MB:linux-swap(v1)::; =================== mount: /dev/sdb5 on / type ext4 (rw,errors=remount-ro) proc on /proc type proc (rw,noexec,nosuid,nodev) sysfs on /sys type sysfs (rw,noexec,nosuid,nodev) none on /sys/fs/fuse/connections type fusectl (rw) none on /sys/kernel/debug type debugfs (rw) none on /sys/kernel/security type securityfs (rw) udev on /dev type devtmpfs (rw,mode=0755) devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620) tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755) none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880) none on /run/shm type tmpfs (rw,nosuid,nodev) gvfs-fuse-daemon on /home/michael/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev,user=michael) gvfs-fuse-daemon on /root/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev) /dev/sda1 on /mnt/boot-sav/sda1 type fuseblk (rw,nosuid,nodev,allow_other,blksize=4096) /dev/sdb1 on /mnt/boot-sav/sdb1 type fuseblk (rw,nosuid,nodev,allow_other,blksize=4096) =================== ls: /sys/block/sda (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro sda1 size slaves stat subsystem trace uevent /sys/block/sdb (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro sdb1 sdb2 sdb5 sdb6 size slaves stat subsystem trace uevent /sys/block/sdc (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro size slaves stat subsystem trace uevent /sys/block/sr0 (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro size slaves stat subsystem trace uevent /dev (filtered): agpgart alarm ashmem autofs binder block bsg btrfs-control bus cdrom cdrw char console core cpu cpu_dma_latency disk dri dvd dvdrw ecryptfs fb0 fd full fuse fw0 hidraw0 hidraw1 hpet input kmsg lirc0 log mapper mcelog mem net network_latency network_throughput null oldmem port ppp psaux ptmx pts random rfkill rtc rtc0 sda sda1 sdb sdb1 sdb2 sdb5 sdb6 sdc sg0 sg1 sg2 sg3 shm snapshot snd sr0 stderr stdin stdout uinput urandom usb vga_arbiter vhost-net zero ls /dev/mapper: control =================== hexdump -n512 -C /dev/sda1 00000000 eb 52 90 4e 54 46 53 20 20 20 20 00 02 08 00 00 |.R.NTFS .....| 00000010 00 00 00 00 00 f8 00 00 3f 00 ff 00 3f 00 00 00 |........?...?...| 00000020 00 00 00 00 80 00 80 00 80 d6 42 25 00 00 00 00 |..........B%....| 00000030 5c 5e 0a 00 00 00 00 00 26 ad af 00 00 00 00 00 |^......&.......| 00000040 f6 00 00 00 01 00 00 00 f0 3e 3b 30 4f 3b 30 4c |.........>;0O;0L| 00000050 00 00 00 00 fa 33 c0 8e d0 bc 00 7c fb 68 c0 07 |.....3.....|.h..| 00000060 1f 1e 68 66 00 cb 88 16 0e 00 66 81 3e 03 00 4e |..hf......f.>..N| 00000070 54 46 53 75 15 b4 41 bb aa 55 cd 13 72 0c 81 fb |TFSu..A..U..r...| 00000080 55 aa 75 06 f7 c1 01 00 75 03 e9 d2 00 1e 83 ec |U.u.....u.......| 00000090 18 68 1a 00 b4 48 8a 16 0e 00 8b f4 16 1f cd 13 |.h...H..........| 000000a0 9f 83 c4 18 9e 58 1f 72 e1 3b 06 0b 00 75 db a3 |.....X.r.;...u..| 000000b0 0f 00 c1 2e 0f 00 04 1e 5a 33 db b9 00 20 2b c8 |........Z3... +.| 000000c0 66 ff 06 11 00 03 16 0f 00 8e c2 ff 06 16 00 e8 |f...............| 000000d0 40 00 2b c8 77 ef b8 00 bb cd 1a 66 23 c0 75 2d |@.+.w......f#.u-| 000000e0 66 81 fb 54 43 50 41 75 24 81 f9 02 01 72 1e 16 |f..TCPAu$....r..| 000000f0 68 07 bb 16 68 70 0e 16 68 09 00 66 53 66 53 66 |h...hp..h..fSfSf| 00000100 55 16 16 16 68 b8 01 66 61 0e 07 cd 1a e9 6a 01 |U...h..fa.....j.| 00000110 90 90 66 60 1e 06 66 a1 11 00 66 03 06 1c 00 1e |..f`..f...f.....| 00000120 66 68 00 00 00 00 66 50 06 53 68 01 00 68 10 00 |fh....fP.Sh..h..| 00000130 b4 42 8a 16 0e 00 16 1f 8b f4 cd 13 66 59 5b 5a |.B..........fY[Z| 00000140 66 59 66 59 1f 0f 82 16 00 66 ff 06 11 00 03 16 |fYfY.....f......| 00000150 0f 00 8e c2 ff 0e 16 00 75 bc 07 1f 66 61 c3 a0 |........u...fa..| 00000160 f8 01 e8 08 00 a0 fb 01 e8 02 00 eb fe b4 01 8b |................| 00000170 f0 ac 3c 00 74 09 b4 0e bb 07 00 cd 10 eb f2 c3 |..<.t...........| 00000180 0d 0a 41 20 64 69 73 6b 20 72 65 61 64 20 65 72 |..A disk read er| 00000190 72 6f 72 20 6f 63 63 75 72 72 65 64 00 0d 0a 42 |ror occurred...B| 000001a0 4f 4f 54 4d 47 52 20 69 73 20 6d 69 73 73 69 6e |OOTMGR is missin| 000001b0 67 00 0d 0a 42 4f 4f 54 4d 47 52 20 69 73 20 63 |g...BOOTMGR is c| 000001c0 6f 6d 70 72 65 73 73 65 64 00 0d 0a 50 72 65 73 |ompressed...Pres| 000001d0 73 20 43 74 72 6c 2b 41 6c 74 2b 44 65 6c 20 74 |s Ctrl+Alt+Del t| 000001e0 6f 20 72 65 73 74 61 72 74 0d 0a 00 00 00 00 00 |o restart.......| 000001f0 00 00 00 00 00 00 00 00 80 9d b2 ca 00 00 55 aa |..............U.| 00000200 =================== hexdump -n512 -C /dev/sdb1 00000000 eb 52 90 4e 54 46 53 20 20 20 20 00 02 08 00 00 |.R.NTFS .....| 00000010 00 00 00 00 00 f8 00 00 3f 00 ff 00 3f 00 00 00 |........?...?...| 00000020 00 00 00 00 80 00 80 00 90 8e 43 06 00 00 00 00 |..........C.....| 00000030 04 00 00 00 00 00 00 00 c4 c7 6f 00 00 00 00 00 |..........o.....| 00000040 f6 00 00 00 01 00 00 00 06 c0 d5 78 3f c9 be 5b |...........x?..[| 00000050 00 00 00 00 fa 33 c0 8e d0 bc 00 7c fb 68 c0 07 |.....3.....|.h..| 00000060 1f 1e 68 66 00 cb 88 16 0e 00 66 81 3e 03 00 4e |..hf......f.>..N| 00000070 54 46 53 75 15 b4 41 bb aa 55 cd 13 72 0c 81 fb |TFSu..A..U..r...| 00000080 55 aa 75 06 f7 c1 01 00 75 03 e9 d2 00 1e 83 ec |U.u.....u.......| 00000090 18 68 1a 00 b4 48 8a 16 0e 00 8b f4 16 1f cd 13 |.h...H..........| 000000a0 9f 83 c4 18 9e 58 1f 72 e1 3b 06 0b 00 75 db a3 |.....X.r.;...u..| 000000b0 0f 00 c1 2e 0f 00 04 1e 5a 33 db b9 00 20 2b c8 |........Z3... +.| 000000c0 66 ff 06 11 00 03 16 0f 00 8e c2 ff 06 16 00 e8 |f...............| 000000d0 40 00 2b c8 77 ef b8 00 bb cd 1a 66 23 c0 75 2d |@.+.w......f#.u-| 000000e0 66 81 fb 54 43 50 41 75 24 81 f9 02 01 72 1e 16 |f..TCPAu$....r..| 000000f0 68 07 bb 16 68 70 0e 16 68 09 00 66 53 66 53 66 |h...hp..h..fSfSf| 00000100 55 16 16 16 68 b8 01 66 61 0e 07 cd 1a e9 6a 01 |U...h..fa.....j.| 00000110 90 90 66 60 1e 06 66 a1 11 00 66 03 06 1c 00 1e |..f`..f...f.....| 00000120 66 68 00 00 00 00 66 50 06 53 68 01 00 68 10 00 |fh....fP.Sh..h..| 00000130 b4 42 8a 16 0e 00 16 1f 8b f4 cd 13 66 59 5b 5a |.B..........fY[Z| 00000140 66 59 66 59 1f 0f 82 16 00 66 ff 06 11 00 03 16 |fYfY.....f......| 00000150 0f 00 8e c2 ff 0e 16 00 75 bc 07 1f 66 61 c3 a0 |........u...fa..| 00000160 f8 01 e8 08 00 a0 fb 01 e8 02 00 eb fe b4 01 8b |................| 00000170 f0 ac 3c 00 74 09 b4 0e bb 07 00 cd 10 eb f2 c3 |..<.t...........| 00000180 0d 0a 41 20 64 69 73 6b 20 72 65 61 64 20 65 72 |..A disk read er| 00000190 72 6f 72 20 6f 63 63 75 72 72 65 64 00 0d 0a 42 |ror occurred...B| 000001a0 4f 4f 54 4d 47 52 20 69 73 20 6d 69 73 73 69 6e |OOTMGR is missin| 000001b0 67 00 0d 0a 42 4f 4f 54 4d 47 52 20 69 73 20 63 |g...BOOTMGR is c| 000001c0 6f 6d 70 72 65 73 73 65 64 00 0d 0a 50 72 65 73 |ompressed...Pres| 000001d0 73 20 43 74 72 6c 2b 41 6c 74 2b 44 65 6c 20 74 |s Ctrl+Alt+Del t| 000001e0 6f 20 72 65 73 74 61 72 74 0d 0a 00 00 00 00 00 |o restart.......| 000001f0 00 00 00 00 00 00 00 00 80 9d b2 ca 00 00 55 aa |..............U.| 00000200 =================== df -Th: Filesystem Type Size Used Avail Use% Mounted on /dev/sdb5 ext4 3.7G 2.4G 1.2G 67% / udev devtmpfs 996M 12K 996M 1% /dev tmpfs tmpfs 402M 844K 401M 1% /run none tmpfs 5.0M 0 5.0M 0% /run/lock none tmpfs 1004M 76K 1004M 1% /run/shm /dev/sda1 fuseblk 299G 139G 160G 47% /mnt/boot-sav/sda1 /dev/sdb1 fuseblk 51G 88M 51G 1% /mnt/boot-sav/sdb1 =================== fdisk -l: Disk /dev/sda: 320.1 GB, 320072933376 bytes 255 heads, 63 sectors/track, 38913 cylinders, total 625142448 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x652868aa Device Boot Start End Blocks Id System /dev/sda1 * 63 625137344 312568641 7 HPFS/NTFS/exFAT Disk /dev/sdb: 60.0 GB, 60011642880 bytes 255 heads, 63 sectors/track, 7296 cylinders, total 117210240 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x08673c5f Device Boot Start End Blocks Id System /dev/sdb1 63 105090774 52545356 7 HPFS/NTFS/exFAT /dev/sdb2 105091070 117209087 6059009 5 Extended /dev/sdb5 * 105091072 113037311 3973120 83 Linux /dev/sdb6 113039360 117209087 2084864 82 Linux swap / Solaris User choice: Is sdb (60.0GB) a removable disk? no =================== Final advice in case of recommended repair Please do not forget to make your BIOS boot on sdb (60.0GB) disk! =================== Default settings Recommended-Repair This setting would reinstall the grub2 of sdb5 into the MBRs of all disks (except USB without OS). The boot flag would be placed on sdb5. Additional repair would be performed: unhide-bootmenu-10s =================== Settings chosen by the user Boot-Info This setting will not act on the MBR. No change has been performed on your computer.
    Download as text
    /\_/\
    (='.'=) Angus
    (") (") Skye
    (") (") Finn

  3. #13
    Join Date
    Nov 2012
    Location
    White Hall, WV
    Beans
    278
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Vista (32) won't boot after 12.04 dual boot install

    OK there is all the information requested, I sure you can come up with a solution.
    Thanks everyone who responded and is trying to help!
    Michael
    /\_/\
    (='.'=) Angus
    (") (") Skye
    (") (") Finn

  4. #14
    Join Date
    Aug 2007
    Location
    a puddle in Manchester
    Beans
    9,198
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Vista (32) won't boot after 12.04 dual boot install

    Sorry, please ignore (wrong info).
    I'll have a look at your boot script output.
    MacBook Pro 10,1 retina

  5. #15
    Join Date
    Aug 2007
    Location
    a puddle in Manchester
    Beans
    9,198
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Vista (32) won't boot after 12.04 dual boot install

    I don't see anything wrong with the output of the boot script.
    Can you state which hard drive is set to boot first in your bios please?
    Also do you have a Windows Vista repair disc or installation disc?
    MacBook Pro 10,1 retina

  6. #16
    Join Date
    Nov 2012
    Location
    White Hall, WV
    Beans
    278
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Vista (32) won't boot after 12.04 dual boot install

    yes to both and it is set to boot off sdb
    /\_/\
    (='.'=) Angus
    (") (") Skye
    (") (") Finn

  7. #17
    Join Date
    Aug 2007
    Location
    a puddle in Manchester
    Beans
    9,198
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Vista (32) won't boot after 12.04 dual boot install

    By all means see what others have to say but what I would recommend is that the bios be set to boot from the cd first then boot from the Windows repair cd and run the automatic repair utility. You may need to run this utility up to 3 times.
    Then set the bios to boot from the Windows drive and see if Windows will then boot.
    Once Windows is booting normally you can then switch the bios back to booting from the Ubuntu drive and boot Ubuntu.
    Once booted run sudo update-grub in the terminal and then reboot to see if Windows will boot from the grub menu.
    MacBook Pro 10,1 retina

  8. #18
    Join Date
    Nov 2012
    Location
    White Hall, WV
    Beans
    278
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Vista (32) won't boot after 12.04 dual boot install

    I did pretty much what you said:
    If I remove the Ubuntu drive and run boot repair then I can boot windows normally (no grub), but of course I cannot boot Ubuntu if I put the drive back in and set the bios to boot from it. If I put the Ubuntu drive back in and run boot repair I can then boot Ubuntu but not Vista. This is driving me NUTZ!!
    Michael
    /\_/\
    (='.'=) Angus
    (") (") Skye
    (") (") Finn

  9. #19
    Join Date
    Nov 2012
    Location
    White Hall, WV
    Beans
    278
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Vista (32) won't boot after 12.04 dual boot install

    I'm trying exactally what you said to do, see how that works
    /\_/\
    (='.'=) Angus
    (") (") Skye
    (") (") Finn

  10. #20
    Join Date
    Aug 2007
    Location
    a puddle in Manchester
    Beans
    9,198
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Vista (32) won't boot after 12.04 dual boot install

    Why would you need to run Boot-Repair once you've put the Ubuntu drive back in and set that drive to boot first in bios?
    That drive should boot Ubuntu fine. It's likely that you'll just re-install grub to your Windows drive.
    MacBook Pro 10,1 retina

Page 2 of 15 FirstFirst 123412 ... LastLast

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
  •