0

Okay so long story short, Filevault is trying to encrypt the hard drive. I don't want the process to continue (it is currently paused). I've searched and found solutions, however, they all mention the need for something called the title_drive and I have been unable to find what in the world that even stands for. I used both options for diskutil list and ls -al /Volumes and they both show very different things.

Just what is the title_drive exactly?

Running macOS Sierra 10.12.4 (in case this helps)

1 Answers1

0

There are two issues here:

  1. You need to find and use the name of the volume you wish not to encrypt.
  2. Command line arguments cannot contain spaces because spaces usually mean that one argument is done and the next items in the line will contain a new argument.

To find the name of the volume use ls -al /Volumes. Get the name of the volume you need to run the command on and use that in place of title_drive.

If the name of the volume contains a space, you must enclose the entire argument in single-quotes:

diskutil cs revert '/Volumes/My Volume Name Has Spaces'

Or, you need to use slashes preceding each space:

diskutil cs revert /Volumes/My\ Volume\ Name\ Has\ Spaces -passphrase

Both these commands run diskutil cs revert with the -passphrase argument on a volume titled My Volume Name Has Spaces.

For more context, see these other two questions and their answers on MacOS Disk Encryption:

music2myear
  • 49,799