Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

diskutil list

diskutil list

/dev/disk0 (internal):

#: TYPE NAME SIZE IDENTIFIER

0: GUID_partition_scheme 28.0 GB disk0

1: EFI EFI 314.6 MB disk0s1

2: Apple_CoreStorage Macintosh HD 27.6 GB disk0s2

3: Apple_Boot Boot OS X 134.2 MB disk0s3


/dev/disk1 (internal, physical):

#: TYPE NAME SIZE IDENTIFIER

0: GUID_partition_scheme *1.0 TB disk1

1: EFI EFI 209.7 MB disk1s1

2: Apple_CoreStorage Macintosh HD 597.4 GB disk1s2


/dev/disk2 (internal, virtual):

#: TYPE NAME SIZE IDENTIFIER

0: Apple_HFS Macintosh HD +624.0 GB disk2

Logical Volume on disk0s2, disk1s2

202C0B6B-4252-445F-B299-968627147D0C

Unencrypted Fusion Drive


diskutil cs list


CoreStorage logical volume groups (1 found)

|

+-- Logical Volume Group B51849E2-D925-4A31-B431-A971F2378CE7

=========================================================

Name: Macintosh HD

Status: Online

Size: 624916619264 B (624.9 GB)

Free Space: 81920 B (81.9 KB)

|

+-< Physical Volume 023FF1CB-A338-46B9-8ACC-90A972A2B6E4

| ----------------------------------------------------

| Index: 0

| Disk: disk0s2

| Status: Online

| Size: 27551166464 B (27.6 GB)

|

+-< Physical Volume 2B531E4B-494E-45AC-9905-F7DBA94ADC0C

| ----------------------------------------------------

| Index: 1

| Disk: disk1s2

| Status: Online

| Size: 597365452800 B (597.4 GB)

|

+-> Logical Volume Family 2EDAC123-E0CA-4DBA-8096-47CC32AC727D

----------------------------------------------------------

Encryption Type: None

|

+-> Logical Volume 202C0B6B-4252-445F-B299-968627147D0C

---------------------------------------------------

Disk: disk2

Status: Online

Size (Total): 624000892928 B (624.0 GB)

Revertible: No

LV Name: Macintosh HD

Volume Name: Macintosh HD

Content Hint: Apple_HFS

LVG Type: Fusion, Sparse

Posted on Mar 4, 2018 5:19 AM

Reply

Similar questions

27 replies

Mar 4, 2018 6:41 PM in response to jeremylbt

Apple has an article How to fix a split Fusion Drive - Apple Support. I prefer to run the commands by hand to ensure there are no issues.


Restart the Mac, into Internet Recovery, and use the following steps as a reference. Once in Terminal, we need to erase both internal physical disks. Booting in Recovery can renumber disks, so we need to be careful on the next steps. If you run diskutil list, you will see two internal drives. One is your 28GB SSD part, the second is your 1TB HDD part. I will call the SSD as disk0, and HDD as disk1. If they are different, adjust the steps accordingly.


Steps should be


  • Erase the SSD - diskutil eraseDisk jhfs+ SSD disk0
  • Erase the HDD - diskutil eraseDisk jhfs+ HDD disk1
  • Create the Fusion (CS) Volume Group - diskutil cs create macOS-LVG disk0s2 disk1s2 (please ensure the SSD is first).
  • The previous step will output a long string similar to, which I will use as an example.

    F5D64E6C-7796-48E9-955E-46429D58A9BF

  • Create the Fusion (CS) Volume - diskutil cs createVolume F5D64E6C-7796-48E9-955E-46429D58A9BF "Macintosh HD" 100% . The "100%" allocates the entire capacity of the two combined drives to "Macintosh HD".
  • Post the output of diskutil cs list, before we start the restore.

Mar 4, 2018 7:00 AM in response to jeremylbt

Reboot and hold Command+R, if you do not see a spinning globe or prompt for wireless password, you are in Local Recovery. Click on Utilities -> Terminal, and run


csrutil status

csrutil disable

csrutil status


If you see disabled, boot normally. This disables SIP. Once you problem is addressed, SIP needs to be re-enabled.

Mar 4, 2018 7:47 AM in response to Loner T

I see. ok so after disenabling the SIP, I run the following command:


sudo gpt -vv -r show /dev/disk0

gpt show: /dev/disk0: mediasize=1000204886016; sectorsize=512; blocks=1953525168

gpt show: /dev/disk0: PMBR at sector 0

gpt show: /dev/disk0: Pri GPT at sector 1

gpt show: /dev/disk0: Sec GPT at sector 1953525167

start size index contents

0 1 PMBR

1 1 Pri GPT header

2 32 Pri GPT table

34 6

40 409600 1 GPT part - C12A7328-F81F-11D2-BA4B-00A0C93EC93B

409640 1166729400 2 GPT part - 53746F72-6167-11AA-AA11-00306543ECAC

1167139040 786386095

1953525135 32 Sec GPT table

1953525167 1 Sec GPT header



For the missing disk space, should I run "diskutil eraseDisk disk0" to reformat the whole drive and reinstall Mac OS?

Mar 4, 2018 7:50 AM in response to jeremylbt

jeremylbt wrote:


I see. ok so after disenabling the SIP, I run the following command:


sudo gpt -vv -r show /dev/disk1

gpt show: /dev/disk0: mediasize=1000204886016; sectorsize=512; blocks=1953525168

gpt show: /dev/disk0: PMBR at sector 0

gpt show: /dev/disk0: Pri GPT at sector 1

gpt show: /dev/disk0: Sec GPT at sector 1953525167

start size index contents

0 1 PMBR

1 1 Pri GPT header

2 32 Pri GPT table

34 6

40 409600 1 GPT part - C12A7328-F81F-11D2-BA4B-00A0C93EC93B

409640 1166729400 2 GPT part - 53746F72-6167-11AA-AA11-00306543ECAC

1167139040 786386095

1953525135 32 Sec GPT table

1953525167 1 Sec GPT header

This is your missing space.


For the missing disk space, should I run "diskutil eraseDisk disk1" to reformat the whole drive and reinstall Mac OS?

Please do not erase any disks. You will lose macOS, if you do. This can be corrected, if you boot into Internet Recovery. A reboot can renumber disks.


Click on Utilities -> Terminal, and run


diskutil list


and find the 1TB internal disk. Let us assume it is diskN, where N is a number.


You need to run


diskutil unmountDisk diskN

gpt add -i 3 -b 1167139040 -s 786386095 -t windows /dev/diskN

diskutil repairDisk diskN

gpt -vv -r show /dev/disk0


Select the entire session output, Copy (Command+C) it, quit Terminal, start Safari (Get Help Online), Paste (Command+V) the output as a reply to this discussion.

Mar 5, 2018 6:07 AM in response to Loner T

Hi Loner T,


I've executed your steps. I noticed there's a slight mistake in your last command:


diskutil cs createVolume F5D64E6C-7796-48E9-955E-46429D58A9BF "Macintosh HD" 100% should be

diskutil cs createVolume F5D64E6C-7796-48E9-955E-46429D58A9BF jhfs+ Macintosh\ HD 100%.


The output of diskutil cs list is as follows: Should i proceed to do a TM restore on the Macintosh HD?


-bash-3.2# diskutil cs list

CoreStorage logical volume groups (1 found)

|

+-- Logical Volume Group EE360BAD-D2E8-4E11-8F37-7C4730A55976

=========================================================

Name: macOS-LVG

Status: Online

Size: 1027412078592 B (1.0 TB)

Free Space: 36864 B (36.9 KB)

|

+-< Physical Volume EBD7DA84-D5B7-40DC-9189-1DD202665F53

| ----------------------------------------------------

| Index: 0

| Disk: disk1s2

| Status: Online

| Size: 27551166464 B (27.6 GB)

|

+-< Physical Volume E8E47DB3-B429-4753-9CE9-A65DD660CA45

| ----------------------------------------------------

| Index: 1

| Disk: disk0s2

| Status: Online

| Size: 999860912128 B (999.9 GB)

|

+-> Logical Volume Family 80EB7816-85B1-4E55-A8ED-694C776FA039

----------------------------------------------------------

Encryption Type: None

|

+-> Logical Volume 93C3F689-3CA9-4E46-BC7D-AC9635211D8D

---------------------------------------------------

Disk: disk3

Status: Online

Size (Total): 1026496397312 B (1.0 TB)

Revertible: No

LV Name: Macintosh HD

Volume Name: Macintosh HD

Content Hint: Apple_HFS

LVG Type: Fusion

Mar 5, 2018 6:21 AM in response to jeremylbt

jeremylbt wrote:



I've executed your steps. I noticed there's a slight mistake in your last command:


diskutil cs createVolume F5D64E6C-7796-48E9-955E-46429D58A9BF "Macintosh HD" 100% should be

diskutil cs createVolume F5D64E6C-7796-48E9-955E-46429D58A9BF jhfs+ Macintosh\ HD 100%.


It should work both ways. Did you get an error with the first command syntax?


jeremylbt wrote:



The output of diskutil cs list is as follows: Should i proceed to do a TM restore on the Macintosh HD?

Yes. The CS LV/LVG look clean.

diskutil list

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.