Разблокировка зашифрованного диска FileVault из Терминала (чтобы разрешить вставку пароля)

24350
Andrew Marshall

У меня есть длинный, сложный пароль для внешнего диска, зашифрованный с помощью FileVault, который я надежно сохранил, но OS X не позволяет вставлять в диалоговое окно графического интерфейса разблокировки пароля (argh!). Как я могу разблокировать его через терминал, чтобы я мог вставить туда пароль?

5

1 ответ на вопрос

7
Andrew Marshall

Beginning with OS X 10.11 “El Capitan”, you can now paste into the GUI unlock dialog! If you’re using an older OS X (or just want to use the command-line to unlock), read on.


The diskutil command is for working with volumes via the terminal in OS X.

  • First, find the UUID for your drive via diskutil list. You should see a section like this:

    Logical Volume MyAwesomeDrive on disk2s2 96EC217A-54F2-49A3-8471-9BFE535D159A Locked Encrypted 

    Where “MyAwesomeDrive” is the volume name, and “96EC217A-54F2-49A3-8471-9BFE535D159A” is the UUID we’re looking for.

  • Run diskutil coreStorage unlockVolume <uuid>, replacing <uuid> with the UUID found above. It will prompt for your password (which can be pasted in) and unlock the encrypted volume.

Note: If you’re typing/pasting passwords or other secure information into the terminal, it would be wise to enable “Secure Keyboard Entry” in the Terminal app menu (also available in iTerm). Read more on security.se.