It appears this does not happen in all cases, I installed 10.10DP1 today, and nothing changed. Bootcamp still boots fine, and far as I can tell OS X is still on a regular partition not a core storage volume.
On my MacBook Pro with two drives, it is the logical volume, so I cannot even erase the Yosemite partition. That is the issue. It is grayed out. Even booting from a flash drive, I can't format my SSD. At all. Can't erase, partition, format, resize, nothing..
But on a Mac Mini I installed it on with one drive, it was perfectly fine. I went to disk utility, deleted the Yosemite partition and resized it back to normal.
I just want to know why it works fine for a single disk, but with two, it messes the whole disk up. My attempts at removing it with diskutil were unsuccessful as well. I may try just nuking it with GParted or something.
You can kill it from Terminal following what I posted here. Then you will be able to expand out your Mavs partition like it was.
This will not harm your Mavs partition, but make a backup first just to be safe.
I have a single drive with two partitions.Can you tell me if I erase the Yosemite partition it want screw up the other partition?You can kill it from Terminal following what I posted here. Then you will be able to expand out your Mavs partition like it was.
This will not harm your Mavs partition, but make a backup first just to be safe.
Huzzah! The first time I tried a few days ago, it errored out. But I re did it today and it just worked
I have a single drive with two partitions.Can you tell me if I erase the Yosemite partition it want screw up the other partition?
Excellent Brett. Glad this worked.
Would you mind if I link my other post back to this one and include your Terminal screenshot in my post (giving you credit of course).
It might help others who run across this.
I have a single drive with two partitions.Can you tell me if I erase the Yosemite partition it want screw up the other partition?
Not at all!
As Weaselboy said, You'll probably be just fine. Always have a backup no matter what if there is anything important on there. I found that when it was on a single disk machine, it was easy enough to just delete the partition with disk utility, then resize the main one.
The option "Repair Disk" simply verified that the system volume was OK, but didn't modify the core storage properties to "revert" back to a normal partition. I've since downloaded a list of core storage commands and will try the following core storage command from an installation flash disk:
diskutil coreStorage revert
MountPoint|DiskIdentifier|DeviceNode|lvUUID
[-stdinpassphrase | -passphrase [passphrase] | -recoverykeychain file]
Convert a CoreStorage logical volume back to its native type.
The file system must be mounted and resizable (i.e. Journaled HFS+).
Ownership of the affected disk and a passphrase (if encrypted) is required.
Reverting a CoreStorage volume completely returns it to its original state, including restoring the partition type and removing encryption. And it’s non-destructive. Slick!
As soon as I saw the word "Slick!" I know where you copied the above text from - Stephen Foskett's blog since I read that some time ago:
http://blog.fosketts.net/2011/08/05/undocumented-corestorage-commands/
Last night I decided to delete my Yosemite partition and after booting up found my 1TB SSD HD had been renamed "Yosemite" after my new partition. My original "Macintosh HD" partition remained untouched, but the new partition couldn't be deleted and was part of a logical volume group. Rats.
Two Terminal commands assessed and fixed the issue for me in about 10 seconds:
- First, the "diskutil cs list" command yielded two critical pieces of information - that the volume was Revertible and the lvUUID of the volume I wanted to revert. I have always used the last lvUUID for the next step.
- Second, the "diskutil coreStorage revert lvUUID" (where lvUUID is that reported by the previous Terminal command) restored both partitions to the Mac OS Extended (Journaled) format that I'd set them up with.
No erasing necessary. This works on single and multiple partition volumes. You may need to enter in your password for protected drives - look at the two links for additional information regarding Terminal commands. I can't offer advice on non-revertible volumes.
Props to Foskett to publishing this 3-odd years ago . Boo to Apple to making this a bit hard to find for non-developers (I had to use Bing...): https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man8/diskutil.8 - search for "revert" in the "coreStorage" section of the BSD System Manager's Manual . I have both bookmarked (subtle hint).
Yosemite install actually CREATED a Recovery Partition on my MacBook, which previously did not have one (nor did it need one, imo.) The partition does not show up in disk utility, but I can boot into it. Was pretty mad, just a warning for those with small disks.
Unless you have a raid array, any installer > 10.7 will create a recovery partition.
I installed the Yosemite again because of this advice. Thanks for that! It worked for me like a charm. I have two partitions and now it's look like this.Finally - Oh, and now I have Recovery 10.10 which I haven't got before.
Good thing I found this thread. Looks like im part of the unlucky bunch where 10.10 messed up the partition (by renaming my main one).
Image
Does anybody know if I could remove without all the confusing terminal prompt? My minus sign in the partition screen (where you adjust the size of the partition or add another one) is grayed out like everyone elses so what I was going to do is delete the OS from the secondary partition and then try to merge it.
Unless the post about being unable to delete Yosemite meant that the user already tried to delete through Disk Utility and then got an error..
If so, sounds like im in trouble
If you don't want to use the terminal you should erase the partition first and after that the minus button will be working. It worked for me but the best way is using terminal.
Looks like I dodged a close one!
Just curious, is there any real benefit of going terminal method over just erasing partition of os then deleting the secondary partition? Will the partition method leave remnants that the terminal wouldn't?
With those terminal commands you don't delete or erase the partition just solve the partition table problem without losing the Yosemite partition. They revert the coreStorage partitions (the Yosemite one and the main one) back to Mac OS Extended (Journaled). That's the correct format. So with this way you solve the partition problem. If you would like to delete the partition you don't need to do this but after this method you can use the minus button for sure, it won't be greyed out.
Does anybody know if I could remove without all the confusing terminal prompt? My minus sign in the partition screen (where you adjust the size of the partition or add another one) is grayed out like everyone elses so what I was going to do is delete the OS from the secondary partition and then try to merge it.
Unless the post about being unable to delete Yosemite meant that the user already tried to delete through Disk Utility and then got an error..
If so, sounds like im in trouble
Looks like I dodged a close one!
Just curious, is there any real benefit of going terminal method over just erasing partition of os then deleting the secondary partition? Will the partition method leave remnants that the terminal wouldn't?
Simply put, the first Terminal command (in quotes), returns the status of the LV (Logical Volume) - as revertible or non-revertible, and the ID number of the LV. The second Terminal command reverts the LV to its previous format state - in many cases listed here as Mac OS Extended (Journaled) format.
Keep in mind that the Disk Utility is just a GUI wrapper for several Unix commands that can be easily addressed in Terminal. The first command is intended to return informative results only on a LV. The second Terminal command, when performed on a revertible LV - is non-destructive, as is the first command. Both commands have been in the BSD System Manager's Manual since 2011. BTW, "cs" is short for "corestorage" - the commands work with the longhand "corestorage" as well.
----------
There's only one advantage that I'm aware of - the two commands I used leave the reverted partitions available for use as the user intended, in my case as two Mac OS Extended (Journaled)-formatted partitions. The second command took maybe 3 seconds to execute, and it left me with two usable partitions. I'm now free to use Disk Utility or Terminal or a 3rd party disk utility to act on either partition.
FWIW, as I'd indicated earlier, I'll look to install DP2 on an external SSD. Just sayin'.