Cannot boot in Windows/Boot Camp anymore

Hello.
I'm Running OSX 10.10 Yosemite and Windows 7 x64 Ultimate.
I had Bootcamp working pretty well in my MacbookPro late 2013. But I needed a bit more space into the Win7/BootCamp partition. So I went to Disk Utility and reduced the "Macintosh HD" partition and applied the modifications. Until this, no problem.
I restarted my Mac with ALT key to boot into windows and assign the unallocated space to the Win7/Bootcamp partition. I used "MiniTool Partition Wizard Home Edition Free" in windows to allocate the space to the Win7/BootCamp partition. The program "said" it needed to reboot so that the changes could be applied because "Drive C is being used". And so I did.
When booting (in Win7/Bootcamp partition), Minitool partition wizard began making the changes, but right after they were done I got the message that "...changes were made to the partition..." and "...no bootable device...". So now, I cannot boot into Win7.
Also, if it helps, I followed this tutorial on youtube that seemed to work for the "youtuber" -- http://youtu.be/zhkdOLXT6Eg
So, anyone know how to proceed so that I can keep my partitions as is, whilst fully restoring normal BootCamp functionality ?
Thank you,
Ricardo Monteiro

The NTFS Header looks correct, which is surprising. It seems to be the old NTFS header.
From your current GPT output, you have
546998272  195733504      4   
742731776  234373120      4  GPT part - EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 
From your Fdisk output you have
*4: 07 1023 254 63 - 1023 254  63 [ 546998272 -  430106624] HPFS/QNX/AUX 
This is what recommend. Download GPT Fdisk from http://sourceforge.net/projects/gptfdisk/.
1. Delete the old entry and create a new entry at GPT#4.
sudo gdisk /dev/disk0
p
d
4
n
4
546998272
430106624
0700
p
w
y
Here is an example of the delete/new...
Command (? for help): d
Partition number (1-4): 4
Command (? for help): n
Partition number (4-128, default 4): 4
First sector (34-1954210086, default = 1454210080) or {+-}size{KMGTP}: 1454211072
Last sector (1454211072-1954210086, default = 1954210086) or {+-}size{KMGTP}: 1954209791
Current type is 'Apple HFS/HFS+'
Hex code or GUID (L to show codes, Enter = AF00): 0700
Changed type of partition to 'Microsoft basic data'
Command (? for help): p
Disk /dev/disk0: 1954210120 sectors, 931.8 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): 6ED0C429-00D1-4759-B50E-04B6FB80D0E3
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 1954210086
Partitions will be aligned on 8-sector boundaries
Total free space is 1293 sectors (646.5 KiB)
Number  Start (sector)    End (sector)  Size       Code  Name
   1              40          409639   200.0 MiB   EF00  EFI System Partition
   2          409640      1452940543   692.6 GiB   AF00  Customer
   3      1452940544      1454210079   619.9 MiB   AB00  Recovery HD
   4      1454211072      1954209791   238.4 GiB   0700  Microsoft basic data
2. This is a tedious process and you want to check after the second 'p'rint command that it looks reasonable, before the 'w'rite and 'y'es to confirm.
3. You will need to reboot after the change, because the disk you are booted from is the one being modified. Reboot will rebuild disk0s4 using the start/end you entered.
4. Run the dd command - sudo dd if=/dev/rdisk0s4 count=1 2>/dev/null | hexdump -C and check that the first line contains "R.NTFS".
5. Once you have a working GPT#4, a new hybrid MBR needs to be created which will overwrite what you see in your Fdisk output. This is also done using GPT Fdisk (Gdisk). Your numbers will look different than what are in the following example. In most cases, you will use the default except entry 4, which should have a 'y' for bootable flag.
sudo gdisk /dev/disk0
GPT fdisk (gdisk) version 0.8.10
Warning: Devices opened with shared lock will not have their
partition table automatically reloaded!
Partition table scan:
  MBR: hybrid
  BSD: not present
  APM: not present
  GPT: present
Found valid GPT with hybrid MBR; using GPT.
Command (? for help): p
Disk /dev/disk0: 490234752 sectors, 233.8 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): 59BDFEEB-1EB4-4529-94FE-3CBC2C3CD513
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 490234718
Partitions will be aligned on 8-sector boundaries
Total free space is 2604 sectors (1.3 MiB)
Number  Start (sector)    End (sector)  Size       Code  Name
   1              40          409639   200.0 MiB   EF00  EF
   2          409640       401060383   191.0 GiB   AF05  Macintosh HD
   3       401060384       402329919   619.9 MiB   AB00  Re
   4       402331648       490233848   41.9 GiB    0700  Microsoft basic data
Command (? for help): r
Recovery/transformation command (? for help): h
WARNING! Hybrid MBRs are flaky and dangerous! If you decide not to use one,
just hit the Enter key at the below prompt and your MBR partition table will
be untouched.
Type from one to three GPT partition numbers, separated by spaces, to be
added to the hybrid MBR, in sequence: 2 3 4
Place EFI GPT (0xEE) partition first in MBR (good for GRUB)? (Y/N): y
Creating entry for GPT partition #2 (MBR partition #2)
Enter an MBR hex code (default AF): AF
Set the bootable flag? (Y/N): n
Creating entry for GPT partition #3 (MBR partition #3)
Enter an MBR hex code (default AB): AB
Set the bootable flag? (Y/N): n
Creating entry for GPT partition #4 (MBR partition #4)
Enter an MBR hex code (default 07): 07
Set the bootable flag? (Y/N): y
Recovery/transformation command (? for help): w
Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
PARTITIONS!!
Do you want to proceed? (Y/N): y
OK; writing new GUID partition table (GPT) to /dev/disk0.
Warning: Devices opened with shared lock will not have their
partition table automatically reloaded!
Warning: The kernel may continue to use old or deleted partitions.
You should reboot or remove the drive.
The operation has completed successfully.
6. a. Test 1 - Can you see your Bootcamp volume in Finder.
    b. Test 2 - Can you files in the Bootcamp volume?
    c. Test 3 - Can you see Bootcamp in your System Preferences -> Startup Disk.
    d. Test 4 - If Test 1-3 are successful, select Bootcamp and click on Restart. You may need Windows startup repair, if you see a hanging underline cursor at the top left corner of your screen. In most cases, it is not required.

Similar Messages

  • Cannot boot in Windows 8.1 anymore (after making some changes in both systems)

    Problem: I cannot boot in the Windows 8.1 partition created with Bootcamp anymore. When I try to do that, the system displays the grey screen then goes into a command line mode similar with MS-DOS and asks for inserting a disk (it reports no bootable drive).
    Possible causes:
    - I disabled the Bootcamp process in the Notification area in the Windows 8.1 systray
    - I created a new partition in OS X on which I installed an older OS X version I still need to use (Mt Lion)

    BroFlav wrote:
    Can you tell me what exactly I should do in gdisk after merging the OS X partitions with their respective Recovery partitions?
    Thanks, in advance.
    Once you have EFI, Yosemite HD, Lion HD and Bootcamp, use the following steps. Your values will be different then this example. Use defaults except the boot ability flag for the last Bootcamp partitions to be 'y'.
    sudo gdisk /dev/disk0
    GPT fdisk (gdisk) version 0.8.10
    Warning: Devices opened with shared lock will not have their
    partition table automatically reloaded!
    Partition table scan:
      MBR: hybrid
      BSD: not present
      APM: not present
      GPT: present
    Found valid GPT with hybrid MBR; using GPT.
    Command (? for help): p
    Disk /dev/disk0: 490234752 sectors, 233.8 GiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): 59BDFEEB-1EB4-4529-94FE-3CBC2C3CD513
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 490234718
    Partitions will be aligned on 8-sector boundaries
    Total free space is 2604 sectors (1.3 MiB)
    Number  Start (sector)    End (sector)  Size       Code  Name
       1              40          409639   200.0 MiB   EF00  EF
       2          409640       401060383   191.0 GiB   AF05  Macintosh HD
       3       401060384       402329919   619.9 MiB   AB00  Re
       4       402331648       490233848   41.9 GiB    0700  Microsoft basic data
    Command (? for help): r
    Recovery/transformation command (? for help): h
    WARNING! Hybrid MBRs are flaky and dangerous! If you decide not to use one,
    just hit the Enter key at the below prompt and your MBR partition table will
    be untouched.
    Type from one to three GPT partition numbers, separated by spaces, to be
    added to the hybrid MBR, in sequence: 2 3 4
    Place EFI GPT (0xEE) partition first in MBR (good for GRUB)? (Y/N): y
    Creating entry for GPT partition #2 (MBR partition #2)
    Enter an MBR hex code (default AF): AF
    Set the bootable flag? (Y/N): n
    Creating entry for GPT partition #3 (MBR partition #3)
    Enter an MBR hex code (default AB): AB
    Set the bootable flag? (Y/N): n
    Creating entry for GPT partition #4 (MBR partition #4)
    Enter an MBR hex code (default 07): 07
    Set the bootable flag? (Y/N): y
    Recovery/transformation command (? for help): w
    Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
    PARTITIONS!!
    Do you want to proceed? (Y/N): y
    OK; writing new GUID partition table (GPT) to /dev/disk0.
    Warning: Devices opened with shared lock will not have their
    partition table automatically reloaded!
    Warning: The kernel may continue to use old or deleted partitions.
    You should reboot or remove the drive.
    The operation has completed successfully.
    Now Reboot and verify the output of fdisk again.

  • Cannot boot to Windows disk to install XP (via Boot Camp)

    I've got an issue w/ my late 2006 24" Imac that I have not been able to resolve.
    Last week, I had the local Apple store replace the Video card in my Imac. The installed card was a nvidia 7300 GT. It was replaced w/ a 7600 GT (or at least that is what is reporting in System Profiler). My Imac had Tiger running w/ bootcamp beta 1.1.1 & a Windows XP partition.
    After the card replacement, I was no longer able to boot to Windows. Selecting the Windows HD at boot-up resulted in just a grey screen. The tech at the Apple store said to try and do a Windows repair install, which seemed fine to me. Got the Imac home and found that I could not boot to the Windows install CD. Same result: a plain grey screen. You could hear the drive accessing the disk, but I saw nothing on the screen.
    Went back to the Apple store, where the tech said all he could reccomend was a full wipe and re-install of the Mac OS & then new Windows install via boot camp. I was loath to do this for obvious reasons, but I went ahead and wiped the disk and installed Snow Leopard, with all updates.
    So, of course, after creating the boot camp partition, I am STILL not able to boot to the Windows install disk. Everything else works fine, but when I try to boot to the Windows disk, I get just that same grey screen. I have tried re-burned copies of this disk, as well as two other Windows XP disks. I've also tried a Windows 7 disk; None of them worked.
    So I ask here: Has anyone ever seen anything like this, and been able to get it resolved? What steps should I try next? Thanks for any help or insight you can provide.

    WHY did you take it in?
    And go back and have them provide (if they or AppleCare can) with a proper correct 7300GT. I don't see 7600GT as being used in iMac.
    http://support.apple.com/kb/SP28
    http://www.apple.com/support/imac/intel/
    http://www.apple.com/support/bootcamp
    Buy a copy of Snow Leopard for $29 to get Boot Camp 3.0. I assume you wanted Boot Camp 2.2 and that you need to upgrade to XP SP3 or later at this point.
    As for burning Windows ISO - from where? and how? Disk Utility can, but not well, and to do so needs to be burned at REDUCED 2X if it is to work.
    I'd say 75% of Store Geniuses are clueless when it comes to Windows on Mac, unless they've actually done it themselves and have hands on experience and "quote" gotten their hands dirty "end-quote."
    That or build your own off the shelf Sandy Bridge based system.

  • Cannot print from Windows XP in Boot Camp

    I rarely boot into Windows using Boot Camp. Usually will use Windows as a VM with VMware Fusion.
    Now I am unable to print when in Windows/Boot Camp!
    Yes, I can print just fine in Mac & in Windows as a VM.
    My Boot Camp installation of WinXP is the same one I use as a VM.
    I wonder if I changed some printer setting long ago & forgot. I am fairly certain I used to be able to print from Windows/Boot Camp.
    From: Windows XP/Control Panel/Printers & Faxes/My printer/properties/Ports
    The last port/box in the list is checked, “TPVM: ThinPrint Print Port for VM”
    I thought this may be incorrect for when I am in Windows using Boot Camp so tried changing it to LPT1 & then LPT2 & LPT3 & no real help. However, when using
    TPVM: ThinPrint Print Port for VM, When I attempt to print, nothing happens & no print job appears in the print queue. (See what’s printing) If I change the port to LPT1,2 or 3, than the job DOES appear & under status says “error.”
    I think I need to change some setting when I boot into Windows via Boot Camp vs. Start Windows as a VM.
    What is the problem?
    Thanks!

    Thanks but, no help.
    I did set up printer sharing. Even though I only have one computer I still share the printer between the Mac & WIndows on the Mac in both VM & BC.
    On Mac: System Preferences/Print & Fax, I do have the box checked “Share this printer on the network.”   Under Sharing Preferences I have checked; Printer sharing, Scanner sharing & file sharing. Users: Everyone Can Print.
    If I remember correctly, b4 I had set up printer sharing, I was unable to print from Windows as VM. It would send the print job over to the Mac side & would not print. Then I used to go into the sys tray on Windows & change something re the printer (I forget what) but essentially telling Windows to use this printer or activate it. Then when finished -- If I forget to undo that change, it would not print on the Mac side. Setting the printer to share fixed that so, I can easily print Mac or Windows VM.  Again, I very rarely boot into Windows/BC but I would like to be able to print when I do.
    It may be similar to use of the optical drive for DVDs/CDs. If I am in Windows/VM The Drive doesn't work until I go into some menu (Virtual Machine?) & enable the drive & then I must disable it to get it back working for Mac.
    I am going to try DVD & CD sharing & see if that fixes it so I can use the drive in both Mac & Windows VM w/o having to bother to change settings back & forth, Then I will see if doing that somehow breaks the DVD/CD drive for Windows/BC.
    Maybe I need to uncheck printer sharing in order for the printer to once again work on Windows/BC?
    Or maybe since I enabled printer sharing, I must somehow tell my Mac or tell Windows that all 3 can share; Mac, Windows/VM & Windows BC?  I’m sure if I had 3 different computers I would need to somehow tell the system which computers are authorized to use my Network printer. Maybe since Windows BC is never online/running at the same time as the Mac, it was not recognized?

  • M-Audio ProFire audio interfaice not seen by Windows/Boot Camp

    It seems Windows XP SP2 under Boot Camp, running on a Mac Pro dual-quad Nahalem 2.66 has a problem with connecting to Firewire devices. It won't even boot up with Firewire 800 drives connected, and I understand from reading posts in other threads that this is a common problem.
    The problem I'm looking to get resolved has to do with my M-Audio ProFire FW 400 interface. Windows will boot up in Boot Camp with the ProFire connected and powered on, and I have installed the latest driver from M-Audio. But when I launch the ProFire control panel, it reports that it cannot find a ProFire connected. I use the ProFire in the Mac OS side in Logic and ProTools, so the unit and connection are fine. I will also be contacting M-Audio to see if they know of this issue.
    TIA for any help.
    - Paul

    hey i don't know if this helps but i have M-audio Firewire Audiophile...it seems that when you boot windows, if m-audio is "ON" it searches for the pc Bios... but maybe it's not possible on a mac...
    first time i rebooted bootcamp i noticed that i could see the levels volume on the m-audio control panel but i didn't hear any audio from speakers....
    so what i did???
    now every time i boot windows, m-audio first is OFF...then after completely booted, i turn it on...autosearching for its drivers,wait for 2 beeps from the speakers...then
    AUDIO IS ALWAYS ON AFTER MANY HOURS... :-)TESTED [OK]
    but i hope they solve this problem soon...

  • Windows Boot Camp Printing

    I have a printer installed on my network attached directly to Time capsule. All my Macs in OSX print fine. However, I cannot get my Windows XP Boot Camp to find the printer. Any suggestions. Thanks.

    Download and install Bonjour for Windows and that will solve your problem.
    Read this thread;
    http://discussions.apple.com/thread.jspa?threadID=1440665&tstart=30
    Good Luck!

  • Can't boot into windows 7 anymore......

    Hi all, I have a Mac mini late 2012 with windows7 installed through bootcamp5. It has worked flawless until recently, now I can't boot into windows anymore. I've checked in finder and the bootcamp partition is present and also all the files. Before that, I did have some trouble with my LaCie 2big thunderbolt hdd, it kept on saying I had to reformat one of the discs in the drive, but only when used in windows, in OSX there was/are no problems reading the hdd .......
    Any idea of how I can make windows bootable again?, do I really have to make a fresh install of windows to make it work??
    Any help is very much appreciated
    Kindly
    Jan

    You might want to visit the Boot Camp forum where the Boot Camp gurus hang out. https://discussions.apple.com/community/windows_software/boot_camp

  • Cannot boot into Windows XP, should I replace hard drive?

    THE PROBLEM: I have not been able to boot into or use Windows XP (SP2) for almost 3 years. I have been using Linux instead for 3 years and am using it now. The Windows Recovery process only half works, it works up until you have to boot up the computer from the hard drive. Then it no longer works. The computer will load the files from the TOSHIBA Recovery and Applications/Drivers DVD that came new with the computer onto the hard drive. But when you get to the point of booting off the hard drive, with newly added Windows & Toshiba files, nothing happens. It does not boot up into Windows XP. In fact I can see the newly added Windows & Toshiba fileson the hard drive when I boot into Linux (Live) off the hard drive.
    THE HARD DRIVE (Specs below): I ran a SMART Data check using a Linux (Ubuntu) Disk utility on the hard drive and it passed everything except for Reallocated Sector Count. There are 20 bad sectors. I called the Toshiba 800 # on the DVD and they told me that the problem may be the hard drive. A new TOSHIBA Recovery and Applications/Drivers DVD costs $40. Toshiba also said there is no Windows XP Recovery Console on the DVD. 
    CAUSE OF THE PROBLEM: I think, and TOSHIBA agreed it is either the hard drive or corrupteD files on the TOSHIBA Recovery and Applications/Drivers DVD
    POSSIBLE SOLUTIONS: I have found a couple of sites that seem to have instructions for making a  Windows XP Recovery Console CD. And I have thought I might try to run some Windows XP Recovery Console commands  from such a CD, such as fixboot, fixmbr, etc. The try to see if I can boot into Windows XP from the hard drive. If I can, then that might suggest he problem is corrupted files on the TOSHIBA Recovery and Applications/Drivers DVD. If I still cannot boot into Windows, then maybe I should replace the hard drive. This should be very easy to do.
    QUESTION(S): Does anybody have any comments or suggestions? Does my approach sound good? Do you have any other suggestions?
    I have a TOSHIBA Satellite L25 S1216 that I bought new in early 2006. It has a 40 GB (5400 RPM) Enhanced IDE (ATA-6) 9.5 mm height hard disk drive in it. User removable, i.e., it is easy to replace.
    Thank you,
    Bob
    Solved!
    Go to Solution.

    My plan is to try to use the TOSHIBA Recovery and Applications/Drivers DVD to load the WIndows XP files onto the hard drive, then use the Windows XP Recovery console CD I downloaded from here
    http://www.proposedsolution.com/downloads/download​-windows-recovery-console/ 
    by using commmands such as fxmbr, fixboot, etc to see if I can get the computer to boot up into Windows XP.
    Good plan, Bob!
       Description of the Windows XP Recovery Console for advanced users
    A backup plan would be to obtain a Windows XP installation CD from eBay or wherever. They are super cheap now. Then you could install Windows clean and add the drivers and utilities from the website here. Or you could use it to repair-install Windows.
       How to Perform a Windows XP Repair Install
    You are entitled to activate Home Edition for free. I understand that even after Microsoft no longer supports Windows XP (in April), they will honor activation attempts.
    I wouldn't mess with SSDs. And stick with IDE PATA drives. You won't need to worry about advanced-format technology since that didn't come along until the very recent SATA drives. Your BIOS should support 120GB (KB303013).  Some here.
    -Jerry

  • Windows will not boot to my boot camp partition on a DIY fusion drive - gives "No bootable device found" error

    I have a MacBookPro 9,1 (mid-2012, non-retina) running OS X 10.8.2.  Here is what I have done to my system:
    Installed Windows 7 x64 Pro to a boot camp partition; installed all windows updates.
    Using WinClone, save an image of this boot camp partition.
    Removed optical drive and HDD.
    Installed HDD in place of optical drive.
    Installed SSD in place of HDD.
    Booted to recovery partition, installed OS X on a flash drive.
    Booted to flash drive, created fusion drive using [MacWorld's instructions](http://www.macworld.com/article/2014011/how-to-make-your-own-fusion-drive.html)
    Booted to recovery partition on flash drive.
    Restored system to fusion drive from a Time Machine backup. Unfortunately, it seems that because I never installed OS X on my fusion drive, I do not have a recovery partition. But that's an issue for another day.
    Using Boot Camp assistant, created a boot camp partition on my HDD.
    Using WinClone, restore my Windows installation from the previously created image.
    Now, Windows boots to a black screen telling me that it can't find a bootable device. I have tried a few things to resolve this, all without effect:
    I know that VMware Fusion has to prepare a boot camp partition in order to virtualize it, so I figured it might inadvertently fix things. Alas, while it *did* successfully boot my boot camp partition into a virtual machine, I still can't boot into Windows.
    I figured I'd just try to reinstall Windows. Surprisingly, my system booted to my Windows install disc, which was in my original optical drive (which I had put in a USB case). But, Windows refused to install, giving me a an error 0x8030024. It seems the solution to this issue is to disconnect all drives but the one on which you want to install Windows, which is something I would dearly like to avoid. It would be a pain, but more than that, I'm afraid it would bork my fusion drive, even if I'm careful to never boot to OS X with the SSD disconnected.
    A lot of places said that this error results from a borked MBR, and suggest using a tool like gptfdisk to rewrite it. I followed the instructions [here](https://discussions.apple.com/thread/4144252?start=0&tstart=0), but *that* didn't work either.
    I am now completely at a loss as to how to proceed, and Google isn't much help either.
    In conclusion, here is some information that you may find helpful:
        $ diskutil list
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *240.1 GB   disk0
       1:                        EFI                         209.7 MB   disk0s1
       2:          Apple_CoreStorage                         239.7 GB   disk0s2
       3:                 Apple_Boot Boot OS X               134.2 MB   disk0s3
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *750.2 GB   disk1
       1:                        EFI                         209.7 MB   disk1s1
       2:          Apple_CoreStorage                         648.4 GB   disk1s2
       3:                 Apple_Boot Boot OS X               650.0 MB   disk1s3
       4:       Microsoft Basic Data BOOTCAMP                100.9 GB   disk1s4
    /dev/disk2
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                  Apple_HFS Mayfly                 *884.0 GB   disk2
    $ diskutil cs list
    CoreStorage logical volume groups (1 found)
    |
    +-- Logical Volume Group 63DC419F-1A09-4C5B-977A-F59F79502CA1
       =========================================================
       Name:         FusionDrive
       Size:         888087773184 B (888.1 GB)
       Free Space:   0 B (0 B)
       |
       +-< Physical Volume B1B14251-2DB3-491C-9E7A-5C2FD11881BA
       |   ----------------------------------------------------
       |   Index:    0
       |   Disk:     disk0s2
       |   Status:   Online
       |   Size:     239713435648 B (239.7 GB)
       |
       +-< Physical Volume D0BA2837-514D-4620-8E1D-26D18137CA94
       |   ----------------------------------------------------
       |   Index:    1
       |   Disk:     disk1s2
       |   Status:   Online
       |   Size:     648374337536 B (648.4 GB)
       |
       +-> Logical Volume Family 736A8900-FE9C-4342-A932-EDC35444774C
           Encryption Status:       Unlocked
           Encryption Type:         None
           Conversion Status:       NoConversion
           Conversion Direction:    -none-
           Has Encrypted Extents:   No
           Fully Secure:            No
           Passphrase Required:     No
           |
           +-> Logical Volume B4997853-59F8-4480-BB48-3481B2F2A123
               Disk:               disk2
               Status:             Online
               Size (Total):       884000030720 B (884.0 GB)
               Size (Converted):   -none-
               Revertible:         No
               LV Name:            Mayfly
               Volume Name:        Mayfly
               Content Hint:       Apple_HFS
    $  sudo gpt -r -vv show disk1
    Password:
    gpt show: disk1: mediasize=750156374016; sectorsize=512; blocks=1465149168
    gpt show: disk1: Suspicious MBR at sector 0
    gpt show: disk1: Pri GPT at sector 1
    gpt show: disk1: Sec GPT at sector 1465149167
          start        size  index  contents
              0           1         MBR
              1           1         Pri GPT header
              2          32         Pri GPT table
             34           6        
             40      409600      1  GPT part - C12A7328-F81F-11D2-BA4B-00A0C93EC93B
         409640  1266356128      2  GPT part - 53746F72-6167-11AA-AA11-00306543ECAC
    1266765768     1269536      3  GPT part - 426F6F74-0000-11AA-AA11-00306543ECAC
    1268035304         280        
    1268035584   197111808      4  GPT part - EBD0A0A2-B9E5-4433-87C0-68B6B72699C7
    1465147392        1743        
    1465149135          32         Sec GPT table
    1465149167           1         Sec GPT header
    $ sudo fdisk /dev/disk1
    Disk: /dev/disk1     geometry: 91201/255/63 [1465149168 sectors]
    Signature: 0xAA55
             Starting       Ending
    #: id  cyl  hd sec -  cyl  hd sec [     start -       size]
    1: EE    0   0   2 - 1023 254  63 [         1 - 1268035583]     *2: 07 1023 254  63 - 1023 254  63 [1268035584 -  197111808] HPFS/QNX/AUX
    3: 00    0   0   0 -    0   0   0 [         0 -          0] unused     
    4: 00    0   0   0 -    0   0   0 [         0 -          0] unused

    My setup is very similar to your's, Ryan, on a Mac Mini5,2 and the ordering is different and Winclone was not used.
    1. New Mini with internal 500GB with Mountain Lion(ML), put into an external FW enclosure, so the Mini can/could be booted using an external drive for contigency.
    2. Replaced internal stock HDD (500Gb/5400rpm) with SSD/HDD (256Gb SSD/1TB 5400rpm).
    3. Installed W7 x64 on 64GB partition on HDD, which was a single-partition drive to begin with.
    4. The remaining HDD partition and the entire SSD was put into a Fusion drive.
    5. Using Command-R, new ML installed on Fusion HD.
    Here is what I currently have...(Disk0 - SSD, Disk1- 1TB HDD, Disk2 - Fusion, Disk3 - External FW).
    diskutil list
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *256.1 GB   disk0
       1:                        EFI                         209.7 MB   disk0s1
       2:          Apple_CoreStorage                         255.7 GB   disk0s2
       3:                 Apple_Boot Boot OS X               134.2 MB   disk0s3
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *1.0 TB     disk1
       1:                        EFI                         209.7 MB   disk1s1
       2:          Apple_CoreStorage                         934.5 GB   disk1s2
       3:                 Apple_Boot Boot OS X               650.0 MB   disk1s3
       4:       Microsoft Basic Data BOOTCAMP                64.9 GB    disk1s4
    /dev/disk2
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                  Apple_HFS Fusion HD              *1.2 TB     disk2
    /dev/disk3
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *500.1 GB   disk3
       1:                        EFI                         209.7 MB   disk3s1
       2:                  Apple_HFS Rescue HD               371.8 GB   disk3s2
       3:                  Apple_HFS Leopard HD              31.9 GB    disk3s3
       4:                  Apple_HFS Snow Leopard HD         31.9 GB    disk3s4
       5:                  Apple_HFS Lion HD                 31.3 GB    disk3s5
       6:                 Apple_Boot Lion Recovery HD        650.0 MB   disk3s6
       7:                  Apple_HFS Mountain Lion HD        31.3 GB    disk3s7
       8:                 Apple_Boot Mountain Lion Recove... 650.0 MB   disk3s8
    diskutil cs list
    CoreStorage logical volume groups (1 found)
    |
    +-- Logical Volume Group A8C00490-0E14-401F-AB69-59F37724E8C4
        =========================================================
        Name:         Fusion
        Size:         1190201270272 B (1.2 TB)
        Free Space:   0 B (0 B)
        |
        +-< Physical Volume 4772013B-5520-4801-9BE5-BCAEF4AEDAB3
        |   ----------------------------------------------------
        |   Index:    0
        |   Disk:     disk0s2
        |   Status:   Online
        |   Size:     255716540416 B (255.7 GB)
        |
        +-< Physical Volume A679A101-3C78-4A59-B5EE-A4339210CFAD
        |   ----------------------------------------------------
        |   Index:    1
        |   Disk:     disk1s2
        |   Status:   Online
        |   Size:     934484729856 B (934.5 GB)
        |
        +-> Logical Volume Family 5EF5C7CA-0B9C-4169-82A1-41C84F206672
            Encryption Status:       Unlocked
            Encryption Type:         None
            Conversion Status:       NoConversion
            Conversion Direction:    -none-
            Has Encrypted Extents:   No
            Fully Secure:            No
            Passphrase Required:     No
            |
            +-> Logical Volume 1512657C-ED13-4B31-82C6-7AECBBCA7F98
                Disk:               disk2
                Status:             Online
                Size (Total):       1185508581376 B (1.2 TB)
                Size (Converted):   -none-
                Revertible:         No
                LV Name:            Fusion HD
                Volume Name:        Fusion HD
                Content Hint:       Apple_HFS
    sudo gpt -r -vv show disk1
    gpt show: disk1: mediasize=1000204886016; sectorsize=512; blocks=1953525168
    gpt show: disk1: Suspicious MBR at sector 0
    gpt show: disk1: Pri GPT at sector 1
    gpt show: disk1: Sec GPT at sector 1953525167
           start        size  index  contents
               0           1         MBR
               1           1         Pri GPT header
               2          32         Pri GPT table
              34           6        
              40      409600      1  GPT part - C12A7328-F81F-11D2-BA4B-00A0C93EC93B
          409640  1825165488      2  GPT part - 53746F72-6167-11AA-AA11-00306543ECAC
      1825575128     1269544      3  GPT part - 426F6F74-0000-11AA-AA11-00306543ECAC
      1826844672   126679040      4  GPT part - EBD0A0A2-B9E5-4433-87C0-68B6B72699C7
      1953523712        1423        
      1953525135          32         Sec GPT table
      1953525167           1         Sec GPT header

  • After i install window 8.1, i can't see window icon in my start up disk, i see only mac icon 10.10, but i can see both mac and win icon in my window boot camp control. i want to see window icon in my mac Yosemite 10.10.2,system preference, start up disk

    After i install window 8.1, i can't see window icon in my start up disk, i see only mac icon 10.10, but i can see both mac and win icon in my window boot camp control. i want to see window icon in my mac Yosemite 10.10.2,system preference, start up disk.

    Third-party NTFS software interferes with the Apple NTFS drivers, which control whether you can see the Bootcamp partition in the Startup Disk option. As a test, can you uninstall all third-party NTFS software and check System Preferences -> Startup Disk?

  • How do I restore data to a new mac with windows boot camp partition?

    Hi
    I have a new iMac and an old MBP, I'd like to copy all of the data of my old MBP to the iMac.Would doing that affect the windows boot camp partition?
    and how do I do it? 
    right now im backing everything up on my MBP using super duper
    both the MBP and the iMac are running on Lion

    I am assuming the Boot Camp partition is on the old MBP and that the SuperDuper clone is on an external drive and is bootable. The Super Duper clone does not include the Boot Camp Partition.
    To get the Mac Data moved you can use Migration Assistant and if you want to transfer the Boot Camp partition you would need Winclone to move/copy it to a newly created Boot Camp partition on the iMac. The SD Clone ( and a Winclone backup) is your insurance policy if some kind of difficulty arises.
    Links to more detailed info.
    http://support.apple.com/kb/HT6025
    http://support.apple.com/kb/PH11275
    http://pondini.org/OSX/MigrateLion.html
    http://twocanoes.com/support/winclone/migrating-a-bootcamp-partition-with-winclo ne
    http://twocanoes.com/support/winclone/using-sysprep-when-migrating-boot-camp

  • If I want to run OSX Server and also want to run Windows 8 on Boot Camp, will server still run when I boot into windows?

    I want to set up OSX Server on my iMAC running Mavericks and also install Windows 8 on Boot Camp.  If I do this and boot into Windows, will that prevent server from running while I'm in Windows?

    No.  Bootcamp, as you've described, requires rebooting into your chosen operating system.  If you want to run both OS X and Windows at the same time from your hardware, look at virtualization tools like Parrallels or VMWare.
    R-
    Apple Consultants Network
    Apple Professional Services
    Author "Mavericks Server – Foundation Services" :: Exclusively available in Apple's iBooks Store

  • Could I reinstall OS X partition keeping the windows boot camp partition?

    II have a OS x partition that need reinstall. In the same hd I have a Windows Boot camp partition. The question is, could I reinstall OS X partition without affect the Windows partition?
    Thanks,
    Jorge.

    Sometimes it works, sometimes not.
    Of course you should backup both.
    Q: why do you think OS X needs to be reinstalled or something?
    Disk directory trouble?
    Because 3rd party disk utility can do better, as well as maybe clone Mac volume so you can boot and do more repairs.
    Or maybe the partition table is shot. Or bad sectors. And bad sectors can require a full format.
    In a perfect world, but disk drives and systems aren't

  • [SOLVED] Grub error 18 - cannot boot to Windows

    Earlier today I tried to install Arch 64bit (I had 32bit earlier) with kdemod to test new KDE4.2. However, after installation I could not boot neither Arch nor Windows. Grub appeared, but every single option gave me an error. I can't remember anymore which error it was, but It doesn't matter anymore. I thought I had made a really stupid and basic mistake while installing, I just didn't know what.
    I wanted to test KDE4.2 so much so I installed Kubuntu (yeah, this topic is not related to Arch Linux, I hope that somebody can help me though, move this topic to somewhere else if it doesn't belong here ). Installation was fine, booting to Kubuntu was fine (and upgrading to KDE4.2 was fine), but booting to Windows was not. It gave me a following error:
    Error 18: Selected cylinder exceeds maximum supported by BIOS
    I googled a bit and found this: http://wiki.linuxquestions.org/wiki/GRUB#Error_18 I reinstalled Kubuntu using /dev/sdb1 as /boot and /dev/sdb2 as / (/dev/sdb3 is windows and /dev/sdb4 is my game partition, ntfs). Before this I had /dev/sdb1 as / and /dev/sdb2 as swap (now I have no swap at all, my 4GB RAM should be enough). The only difference was that at first grub gave me error 15 (I fixed it with Kubuntu LiveCD). After that - no difference.
    I need Windows for playing. That's why it's very important that I can use it. [SOLVED] In addition, I should say that /dev/sda is a separated hard drive which is encrypted with Truecrypt. (I said this because I think that Kubuntu tried to install grub on (hd0)...) When I tried to mount this hard drive with Kubuntu, it couldn't do it. I wanted to test mounting on Windows to check if it is just Kubuntu's problem. If not, I'm fucked because this hard drive contains VERY VERY VERY IMPORTANT files. [/SOLVED]
    I really need help, please. If somebody can help me, (s)he is my hero.
    Last edited by Exitium (2009-01-29 14:42:32)

    Oops, I forgot:
    menu.lst:
    (Yup, a lot of comments, Ubuntu style)
    # menu.lst - See: grub(8), info grub, update-grub(8)
    # grub-install(8), grub-floppy(8),
    # grub-md5-crypt, /usr/share/doc/grub
    # and /usr/share/doc/grub-doc/.
    ## default num
    # Set the default entry to the entry number NUM. Numbering starts from 0, and
    # the entry number 0 is the default if the command is not used.
    # You can specify 'saved' instead of a number. In this case, the default entry
    # is the entry saved with the command 'savedefault'.
    # WARNING: If you are using dmraid do not use 'savedefault' or your
    # array will desync and will not let you boot your system.
    default 0
    ## timeout sec
    # Set a timeout, in SEC seconds, before automatically booting the default entry
    # (normally the first entry defined).
    timeout 10
    ## hiddenmenu
    # Hides the menu by default (press ESC to see the menu)
    #hiddenmenu
    # Pretty colours
    #color cyan/blue white/blue
    ## password ['--md5'] passwd
    # If used in the first section of a menu file, disable all interactive editing
    # control (menu entry editor and command-line) and entries protected by the
    # command 'lock'
    # e.g. password topsecret
    # password --md5 $1$gLhU0/$aW78kHK1QfV3P2b2znUoe/
    # password topsecret
    # examples
    # title Windows 95/98/NT/2000
    # root (hd0,0)
    # makeactive
    # chainloader +1
    # title Linux
    # root (hd0,1)
    # kernel /vmlinuz root=/dev/hda2 ro
    # Put static boot stanzas before and/or after AUTOMAGIC KERNEL LIST
    ### BEGIN AUTOMAGIC KERNELS LIST
    ## lines between the AUTOMAGIC KERNELS LIST markers will be modified
    ## by the debian update-grub script except for the default options below
    ## DO NOT UNCOMMENT THEM, Just edit them to your needs
    ## ## Start Default Options ##
    ## default kernel options
    ## default kernel options for automagic boot options
    ## If you want special options for specific kernels use kopt_x_y_z
    ## where x.y.z is kernel version. Minor versions can be omitted.
    ## e.g. kopt=root=/dev/hda1 ro
    ## kopt_2_6_8=root=/dev/hdc1 ro
    ## kopt_2_6_8_2_686=root=/dev/hdc2 ro
    # kopt=root=UUID=e85e83e5-0f7c-419e-8cad-1fe5d9128e8f ro
    ## default grub root device
    ## e.g. groot=(hd0,0)
    # groot=504fab5b-7bb6-4b20-af58-83677386de37
    ## should update-grub create alternative automagic boot options
    ## e.g. alternative=true
    ## alternative=false
    # alternative=true
    ## should update-grub lock alternative automagic boot options
    ## e.g. lockalternative=true
    ## lockalternative=false
    # lockalternative=false
    ## additional options to use with the default boot option, but not with the
    ## alternatives
    ## e.g. defoptions=vga=791 resume=/dev/hda5
    # defoptions=quiet splash
    ## should update-grub lock old automagic boot options
    ## e.g. lockold=false
    ## lockold=true
    # lockold=false
    ## Xen hypervisor options to use with the default Xen boot option
    # xenhopt=
    ## Xen Linux kernel options to use with the default Xen boot option
    # xenkopt=console=tty0
    ## altoption boot targets option
    ## multiple altoptions lines are allowed
    ## e.g. altoptions=(extra menu suffix) extra boot options
    ## altoptions=(recovery) single
    # altoptions=(recovery mode) single
    ## controls how many kernels should be put into the menu.lst
    ## only counts the first occurence of a kernel, not the
    ## alternative kernel options
    ## e.g. howmany=all
    ## howmany=7
    # howmany=all
    ## should update-grub create memtest86 boot option
    ## e.g. memtest86=true
    ## memtest86=false
    # memtest86=true
    ## should update-grub adjust the value of the default booted system
    ## can be true or false
    # updatedefaultentry=false
    ## should update-grub add savedefault to the default options
    ## can be true or false
    # savedefault=false
    ## ## End Default Options ##
    title Ubuntu 8.10, kernel 2.6.27-11-generic
    uuid 504fab5b-7bb6-4b20-af58-83677386de37
    kernel /vmlinuz-2.6.27-11-generic root=UUID=e85e83e5-0f7c-419e-8cad-1fe5d9128e8f ro quiet splash
    initrd /initrd.img-2.6.27-11-generic
    quiet
    title Ubuntu 8.10, kernel 2.6.27-11-generic (recovery mode)
    uuid 504fab5b-7bb6-4b20-af58-83677386de37
    kernel /vmlinuz-2.6.27-11-generic root=UUID=e85e83e5-0f7c-419e-8cad-1fe5d9128e8f ro single
    initrd /initrd.img-2.6.27-11-generic
    title Ubuntu 8.10, memtest86+
    uuid 504fab5b-7bb6-4b20-af58-83677386de37
    kernel /memtest86+.bin
    quiet
    title Wintoosa
    root (hd1,2)
    savedefault
    makeactive
    map (hd0) (hd1)
    map (hd1) (hd0)
    chainloader +1
    fdisk -l
    (Note: These results are mainly in Finnish. It could be hard to you to read it... But whatever... I'll translate these only if necessary)
    Levy /dev/sda: 640.1 Gt, 640135028736 tavua
    255 päätä, 63 sektoria/ura, 77825 sylinteriä
    Yksiköt = 16065 * 512 = 8225280 -tavuiset sylinterit
    Levyn tunniste: 0xcc5d88e2
    Laite Käynn Alku Loppu Lohkot Id Järjestelmä
    /dev/sda1 * 244091 485122 1936074870+ b8 BSDI sivutus
    Osion 1 loppu ei ole sylinterin rajalla.
    /dev/sda2 176430 394864 1754572509+ 43 Tuntematon
    Osion 2 loppu ei ole sylinterin rajalla.
    /dev/sda3 177329 413105 1893868925 29 Tuntematon
    Osion 3 loppu ei ole sylinterin rajalla.
    /dev/sda4 57435 309703 2026342066 5c Priam Edisk
    Osion 4 loppu ei ole sylinterin rajalla.
    Osiotaulumerkinnät eivät ole levyjärjestyksessä
    Levy /dev/sdb: 500.1 Gt, 500107862016 tavua
    255 päätä, 63 sektoria/ura, 60801 sylinteriä
    Yksiköt = 16065 * 512 = 8225280 -tavuiset sylinterit
    Levyn tunniste: 0x0007a52a
    Laite Käynn Alku Loppu Lohkot Id Järjestelmä
    /dev/sdb1 1 128 1028128+ 83 Linux
    /dev/sdb2 129 13185 104880352+ 83 Linux
    /dev/sdb3 13186 26239 104856255 7 HPFS/NTFS
    /dev/sdb4 26240 60801 277619265 7 HPFS/NTFS
    Last edited by Exitium (2009-01-28 21:05:33)

  • If I get windows boot camp will I be able to play Tomb raider and Sims 3

    I an getting a new laptop for school but I also what to play games like that new Lara Croft and the sims 3.  I have heard about windows boot camp.
    I think I want this retina model
    5-inch: 2.3GHz
    with Retina display
    2.3GHz quad-core Intel Core i7
    Turbo Boost up to 3.3GHz
    8GB 1600MHz memory
    256GB flash storage1
    Intel HD Graphics 4000
    NVIDIA GeForce GT 650M with 1GB of GDDR5 memory
    Built-in battery (7 hours

    Windows Boot Camp does not exist, you mean Boot Camp Assistant, which is a Mac program, it is the program you would use to prepare your Mac to run Windows.
    You will need a 64bit retail or OEM version of Windows Home or Professional.
    You will also need to read the Boot Camp Documentation thoroughly, and make a complete backup of your machine before repartitioning.

Maybe you are looking for

  • Activation problems for cs2

    whenever i go to activate my copy of photoshop, an error message pops up. "An error has occured while trying to begin activation. Please make sure you have administrator priveleges and try again. If you continue to experience this problem, try reinst

  • How to make my multicam nest in the timeline?

    Hey, When I create a Multicam Source Sequence it plays back as multicam in the source window. But when I drop the Multicam nest into the timeline it appears to split the cameras onto 2 different tracks. How do I enable the multicam in the timeline?

  • Battery indicator @ 0%, but still runs

    I've had my macbook for about 2-3 years now. I have noticed the battery performance getting worse with time, but lately it has gone way down! after fully charging, the batter will show only about 20-30minutes of time, within about 3 minutes will drop

  • Images as anchors for answers

    Is it possible to use images as anchoring points for answers? For example, instead of seeing the choice "very good", could one use a smiley face  like this as a choice ?

  • Retrieving information from Adobe Connect XML API

    Hello guys. I'm very newbie working with Adobe Flex and Connect API... I'm trying to get some informations from an Adobe Connect Pro Server using API. I made a HTTP request to the server and I'm receiving the right response from the server (I see fro