0

Following on from my previous question entitled "What is the function(s) of the hidden Debug menu in Disk Utility?".

How do I enable the Debug Menu via Terminal command or otherwise, thereby increasing the functionality of Disk Utility ?

Simon
  • 7,451
  • I don't understand, the answer provided in the previous question says how to turn on the Debug menu. Additionally, you can also use DiskUtil from terminal to get full functionality. – hoss Jul 11 '13 at 13:04
  • @hoss I thought that if someone was googling how to enable the debug menu this would show in the results (might be wrong though). Whereas the title of the other question was its function. – Simon Jul 11 '13 at 13:16
  • @hoss I will agree that a link to enablement was provided in the answer to my previous question (without my asking for it - although goes hand in hand I suppose). – Simon Jul 11 '13 at 13:29
  • This is good - it will be linked with the other two questions so anyone searching exactly for this will find the threads we have on debug and Disk Utility – bmike Jul 11 '13 at 17:48
  • @bmike Ok Fine. – Simon Jul 11 '13 at 18:18

1 Answers1

2

Disk Utility starting in Mac OS ElCapitan (10.11, released in 2015) was completely redesigned and this feature does exist.

For the Disk Utility version in Mac OS Yosemite (10.10) and earlier:

  1. Quit Disk Utility if it's open.

  2. Open the Terminal application in /Applications/Utilities.

  3. Type this exact command and hit Enter key:

    defaults write com.apple.DiskUtility DUDebugMenuEnabled 1

  4. Quit the Terminal application.

  5. Launch Disk Utility and you will have a the Debug menu.

8None1
  • 687