partition Recovery HD

popvinc

Membre confirmé
20 Juin 2012
37
0
33
Bonsoir,

Je viens vous évoquer un problème dont je viens de m'apercevoir sur mon mac.

En effet, après avoir installé Mavericks en clean install, je me suis aperçu que je ne pouvais plus activer la localisation de mon mac sous prétexte que je n'avais pas la partition requise.

J'avais déjà eu ce problème sous lion et j'avais réussi à trouver la partition téléchargeable sur le site d'Apple.

Mais cependant pour Mavericks je ne sait vraiment pas comment faire et ce, même en aillant écumé les différents forums... si vous avez la solution ( autre que refaire une installe complète du système) ça m'arrangerait vraiment bien, tellement cette fonction est agréable en cas de perte!

Merci à tous pour votre collaboration!

PS: je précise que l'installation de Mavericks s'est déroulée sans encombre et que donc je ne comprend pas pourquoi la partition n'est pas présente...
 
Bonjour,

J'ai le même problème que toi...
J'essaye de trouver une méthode sur internet mais c'est pas facile !!

Quelqu'un peut-il nous aider?

Merci beaucoup.
 
J'ai réussi et ça marche parfaitement en utilisant la méthode du site que je colle ci-dessous

Create Recovery Partition - MacRumors Forums

Standard Recovery Partition(UPDATED EASIER!!!)

1. Download the Lion Recovery Update. Make sure it is in your downloads folder. Then right click on the OS X Installer.app file and click Show Package Contents. Go to Contents/SharedSupport/. Copy the InstallESD.dmg file into your Downloads folder.

###Alternate Lion Recovery HD Update Link

2. Copy the following code into a text document and save it as "recovery.sh" in your Downloads folder.
Code:
read -p "Ensure "RecoveryHDUpdate.dmg" and "InstallESD.dmg" are in your Downloads folder and press [Enter]"

#access dmtest from RecoveryHDUpdate.pkg
rm -rf /private/tmp/RecoveryHDUpdate
echo "Expanding RecoveryHDUpdate.pkg"
hdiutil attach -nobrowse ~/Downloads/RecoveryHDUpdate.dmg
pkgutil --expand /Volumes/Mac\ OS\ X\ Lion\ Recovery\ HD\ Update/RecoveryHDUpdate.pkg /tmp/RecoveryHDUpdate

#access BaseSystem.dmg and BaseSystem.chunklist
echo "Expanding InstallESD.dmg"
hdiutil attach -nobrowse ~/Downloads/InstallESD.dmg

#build Recovery partition
echo "Building Recovery Partition. Please Wait"
/tmp/RecoveryHDUpdate/RecoveryHDUpdate.pkg/Scripts/Tools/dmtest ensureRecoveryPartition / /Volumes/OS\ X\ Install\ ESD/BaseSystem.dmg 0 0 /Volumes/OS\ X\ Install\ ESD/BaseSystem.chunklist

#cleanup
echo "Cleaning up"
hdiutil eject /Volumes/Mac\ OS\ X\ Lion\ Recovery\ HD\ Update
hdiutil eject /Volumes/OS\ X\ Install\ ESD/
sudo touch /Library/Preferences/SystemConfiguration/com.apple.Boot.plist
sudo kextcache -f -u /
exit 0
3. Open Terminal and type the following commands:
Code:
chmod +x ~/Downloads/recovery.sh
sudo ~/Downloads/recovery.sh
4. Wait a few minutes for it to finish and return back to a prompt. Reboot to test your new recovery partition.