Utilice la clave de recuperación para restablecer la contraseña de inicio de sesión
-
Recupera la clave de recuperación que copiaste cuando activaste el cifrado de disco de FileVault.
-
Si no encuentras tu clave de recuperación, pero la guardaste en Apple, ponte en contacto con el Soporte técnico de Apple.
-
Reinicia el ordenador. En la pantalla de inicio de sesión, haga clic en la cuenta para desbloquear y restablecer la contraseña de inicio de sesión.
-
En el campo de contraseña, haga clic en el signo de interrogación (?)
-
Si ha creado una sugerencia de contraseña, se mostrará .
-
Si recuerda su contraseña, introdúzcala ahora.
Si aún así necesitas restablecer tu contraseña, haz clic en la línea inferior "restablecerla utilizando tu clave de recuperación" y, a continuación, introduce tu clave de recuperación.
Método alternativo:
Recuperación
Si un usuario olvida su contraseña y se instaló una clave de recuperación antes de activar FileVault 2, puedes seguir los siguientes pasos para desbloquear un disco cifrado. Nota: este procedimiento solo funciona cuando el equipo se inicia desde OS X Recovery.
Restart the client while holding the Command and R keys.
Connect an external drive containing the FileVaultMaster.keychain file with the private key.
From the Utilities menu, select Terminal.
If the keychain containing the private key is stored in an encrypted disk image, use the following command to mount it:
hdiutil attach /path/to/diskImage
Use the following command to unlock the FileVaultMaster.keychain file; be sure to insert the correct path to your keychain file:
security unlock-keychain <path to Keychain File>
For example, on a volume named ThumbDrive:
security unlock-keychain /Volumes/ThumbDrive/FileVaultMaster.keychain
Enter the master password to unlock the keychain. If the password is accepted the command prompt will return.
Use the following command to list the drives and corestorage volumes:
diskutil cs list
Look for the UUID of Logical Volume, usually the last in the list. Select and copy the UUID for the next command step.
Use the following command to unlock the encrypted disk. Be sure to insert the UUID from the previous step, and the correct path to the keychain file:
diskutil cs unlockVolume <UUID> -recoveryKeychain <path to Keychain File>
For example, you'd use this command if there was a UUID of 2F227AED-1398-42F8-804D-882199ABA66B on a volume named ThumbDrive:
diskutil cs unlockVolume 2F227AED-1398-42F8-804D-882199ABA66B -recoveryKeychain /Volumes/ThumbDrive/FileVaultMaster.keychain
Enter the master password to unlock the keychain. The volume will be mounted. You can now back up data using Disk Utility, or by using command line tools such as ditto.