Last login: Fri Nov 22 20:01:19 on console
JDs-MacBook-Pro:~ JD$ diskutil cs list
CoreStorage logical volume groups (2 found)
|
+-- Logical Volume Group BB393CBC-D15F-494C-A301-154623C8638C
| =========================================================
| Name: Macintosh HD
| Status: Online
| Size: 999345127424 B (999.3 GB)
| Free Space: 16777216 B (16.8 MB)
| |
| +-< Physical Volume C8C7AEDA-2398-4234-8BAA-9BE0805DEA80
| | ----------------------------------------------------
| | Index: 0
| | Disk: disk0s2
| | Status: Online
| | Size: 999345127424 B (999.3 GB)
| |
| +-> Logical Volume Family 704CBC26-50C9-48B9-A1AF-6E367E273032
| ----------------------------------------------------------
| Encryption Status: Unlocked
| Encryption Type: AES-XTS
| Conversion Status: Converting
| Conversion Direction: forward
| Has Encrypted Extents: Yes
| Fully Secure: No
| Passphrase Required: Yes
| |
| +-> Logical Volume 66ABA0EE-9AFA-4F77-80BE-3A122E63DCF2
| ---------------------------------------------------
| Disk: disk1
| Status: Online
| Size (Total): 999009579008 B (999.0 GB)
| Conversion Progress: 8%
| Revertible: Yes (unlock and decryption required)
| LV Name: Macintosh HD
| Volume Name: Macintosh HD
| Content Hint: Apple_HFS
|
+-- Logical Volume Group 3871AE32-2714-4E29-9B88-5A4A690B1A5D
=========================================================
Name: Macintosh HD
Status: Online
Size: 749296615424 B (749.3 GB)
Free Space: 748977840128 B (749.0 GB)
|
+-< Physical Volume 28FA23B8-C518-4171-9D6B-BD9EB38E88DD
----------------------------------------------------
Index: 0
Disk: disk2s2
Status: Online
Size: 749296615424 B (749.3 GB)
JDs-MacBook-Pro:~ JD$
----------
Its using CoreStorage thats why it appears that way.
Personally if you want to wipe it I would type the following command in Terminal, then press enter (make sure it really is disk1 you want to wipe).
Code:
sudo dd if=/dev/zero of=/dev/disk1
It will ask for your login password, which you type in (it won't show anything being entered) then press enter.
Nothing will appear to happen.
Then wait a few seconds and press ctrl + c.
What this does is wipe the partition table so the disk appears as if it has nothing on it. You can then repartition it however you want.
/dev/disk0
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *1.0 TB disk0
1: EFI EFI 209.7 MB disk0s1
2: Apple_CoreStorage 999.3 GB disk0s2
3: Apple_Boot Recovery HD 650.0 MB disk0s3
/dev/disk1
#: TYPE NAME SIZE IDENTIFIER
0: Apple_HFS Macintosh HD *999.0 GB disk1
/dev/disk2
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *750.2 GB disk2
1: EFI EFI 209.7 MB disk2s1
2: Apple_CoreStorage 749.3 GB disk2s2
3: Apple_Boot Recovery HD 650.0 MB disk2s3
JDs-MacBook-Pro:~ JD$
thanks for the info !!!!! I think its disk 2 now... 750GB right? the last one
----------
I tried:
Last login: Fri Nov 22 21:05:28 on ttys000
JDs-MacBook-Pro:~ JD$ sudo dd if=/dev/zero of=/dev/disk2
dd: /dev/disk2: Input/output error
57521+0 records in
57520+0 records out
29450240 bytes transferred in 11.511809 secs (2558263 bytes/sec)
JDs-MacBook-Pro:~ JD$
JDs-MacBook-Pro:~ JD$ sudo dd if=/dev/zero of=/dev/disk2
^C15649+0 records in
15648+0 records out
8011776 bytes transferred in 3.388236 secs (2364586 bytes/sec)
JDs-MacBook-Pro:~ JD$
didnt ask for password and nothing happened.