oui@ Jay
Donc c'est le démarrage sur le volume apfs du SSD : Mac OS X --> qui est planté ?
diskutil info /Volumes/"Mac OS X"
ls /Volumes/"Mac OS X"
bless --info /Volumes/"Mac OS X"
Could not find disk: /Volumes/Mac OS X
-bash-3.2# diskutil info /Volumes/"Mac OS X"
Device Identifier: disk3s1
Device Node: /dev/disk3s1
Whole: No
Part of Whole: disk3
Volume Name: Mac OS X
Mounted: Yes
Mount Point: /Volumes/Mac OS X
Partition Type: 41504653-0000-11AA-AA11-00306543ECAC
File System Personality: APFS
Type (Bundle): apfs
Name (User Visible): APFS
Owners: Enabled
OS Can Be Installed: Yes
Booter Disk: disk3s2
Recovery Disk: disk3s3
Media Type: Generic
Protocol: SATA
SMART Status: Not Supported
Volume UUID: C1CF3E8C-926B-34CC-AA42-F3050D6248C1
Disk / Partition UUID: C1CF3E8C-926B-34CC-AA42-F3050D6248C1
Disk Size: 1000.0 GB (999995129856 Bytes) (exactly 1953115488 512-Byte-Units)
Device Block Size: 4096 Bytes
Volume Total Space: 1000.0 GB (999995129856 Bytes) (exactly 1953115488 512-Byte-Units)
Volume Used Space: 42.9 GB (42873282560 Bytes) (exactly 83736880 512-Byte-Units) (4.3%)
Volume Available Space: 957.1 GB (957121847296 Bytes) (exactly 1869378608 512-Byte-Units) (95.7%)
Allocation Block Size: 4096 Bytes
Read-Only Media: No
Read-Only Volume: No
Device Location: Internal
Removable Media: Fixed
Solid State: Yes
-bash-3.2#
-bash-3.2# ls /Volumes/"Mac OS X"
.DS_Store Volumes
.DocumentRevisions-V100 bin
.HFS+ Private Directory Data? cores
.IAProductInfo dev
.PKInstallSandboxManager-SystemSoftware etc
.Spotlight-V100 home
.Trashes installer.failurerequests
.file macOS Install Data
.fseventsd net
.vol private
Applications sbin
Library tmp
Network usr
System var
Users
-bash-3.2#
-bash-3.2# bless --info /Volumes/"Mac OS X"
714 => Blessed System File is <Preboot>/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/com.apple.installer/boot.efi
64 => Blessed System Folder is <Preboot>/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/com.apple.installer
The blessed volume in this APFS container is "/Volumes/Mac OS X"
-bash-3.2#
rm -rf /Volumes/"Mac OS X"/"macOS Install Data"
ls /Volumes/"Mac OS X"
Alors le diagnostic -->
- le volume est monté > en lecture & écriture > un OS peut y être installé (ou restauré)
- la distribution des répertoires de l'OS est complète > s'y ajoute le dossier macOS Install Data de l'installation plantée
Je pense que ton volume devrait pouvoir être re-démarré > à condition de prendre les mesures qui s'imposent. On va faire ça méthodiquement > à coups de commandes dans le Terminal.
- le chemin de démarrage porté sur l'en-tête du volume désigne le démarreur boot.efi de l'OS d'installation du dossier d'installation (et pas le démarreur de l'OS actuellement installé)
1ère étape : suppression du dossier d'installation macOS Install Data --> passe la commande (avec soin) :
Bloc de code:rm -rf /Volumes/"Mac OS X"/"macOS Install Data"
- respecte les espaces ; mets les intitulés avec des "" ; pas d'espace entre X" et /"macOS---
Enchaîne avec la commande :
- la commande supprime le dossier cible ; elle passe sans commentaire
Bloc de code:ls /Volumes/"Mac OS X"
- et poste le tableau retourné --> c'est pour vérifier que le dossier macOS Install Data a bien été supprimé.
-bash-3.2# rm -rf /Volumes/"Mac OS X"/"macOS Install Data"
-bash-3.2# ls /Volumes/"Mac OS X"
.DS_Store Users
.DocumentRevisions-V100 Volumes
.HFS+ Private Directory Data? bin
.IAProductInfo cores
.PKInstallSandboxManager-SystemSoftware dev
.Spotlight-V100 etc
.Trashes home
.file installer.failurerequests
.fseventsd net
.vol private
Applications sbin
Library tmp
Network usr
System var
-bash-3.2#
diskutil verifyVolume /Volumes/"Mac OS X"
La dossier a bien été supprimé.
Deuxième étape : vérification du système de fichiers apfs --> passe la commande :
Bloc de code:diskutil verifyVolume /Volumes/"Mac OS X"
- la commande lance une vérification de l'apfs ; elle est assez longue d'exécution
=> poste l'affichage complet retourné par la commande.
-bash-3.2# diskutil verifyVolume /Volumes/"Mac OS X"
Started file system verification on disk3s1 Mac OS X
Verifying file system
Volume was successfully unmounted
Performing fsck_apfs -n -x /dev/rdisk3s1
Checking volume
Checking the container superblock
Checking the EFI jumpstart record
Checking the space manager
Checking the object map
Checking the APFS volume superblock
Checking the object map
Checking the fsroot tree
Checking the snapshot metadata tree
Checking the extent ref tree
Checking the snapshots
Checking snapshot 1 of 1
Verifying allocated space
The volume /dev/rdisk3s1 appears to be OK
File system check exit code is 0
Restoring the original state found as mounted
Finished file system verification on disk3s1 Mac OS X
-bash-3.2#
Checking snapshot 1 of 1
bless --folder /Volumes/"Mac OS X"/System/Library/CoreServices --file /Volumes/"Mac OS X"/System/Library/CoreServices/boot.efi
bless --info /Volumes/"Mac OS X"
Le système de fichiers apfs est sans faute. Le volume a été remonté en fin de vérification.
Je note qu'un snapshot (instantané du volume) est actuellement stocké dans le système de fichiers -->
Bloc de code:Checking snapshot 1 of 1
- en cas d'échec du re-démarrage > il doit être possible de restaurer le volume à son état antérieur au lancement de l'installation avortée
Troisième étape : restauration du chemin de démarrage du volume. Voici la commande à passer :
Bloc de code:bless --folder /Volumes/"Mac OS X"/System/Library/CoreServices --file /Volumes/"Mac OS X"/System/Library/CoreServices/boot.efi
Voici comment tu vas t'y prendre pour passer sans faute cette longue commande : par un "copier-coller à rebours" ! -->
- tu viens ici avec Safari > tu déclenches le tapis roulant horizontal pour pouvoir sélectionner et copier la commande jusqu'au boot.efi final > tu quittes Safari > tu relances le Terminal > tu colles la commande dans la fenêtre et tu l'exécutes
Enchaîne avec la commande :
- cette commande établit le chemin de démarrage du volume sur le boot_loader : boot.efi de l'OS actuellement en place
Bloc de code:bless --info /Volumes/"Mac OS X"
- qui affiche le chemin de boot actif du volume
=> poste le tableau retourné.
-bash-3.2# bless --folder /Volumes/"Mac OS X"/System/Library/CoreServices --file /Volumes/"Mac OS X"/System/Library/CoreServices/boot.efi
-bash-3.2# bless --info /Volumes/"Mac OS X"
116 => Blessed System File is <Preboot>/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/System/Library/CoreServices/boot.efi
23 => Blessed System Folder is <Preboot>/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/System/Library/CoreServices
The blessed volume in this APFS container is "/Volumes/Mac OS X"
-bash-3.2#
kextcache -u /Volumes/"Mac OS X"
update_dyld_shared_cache -force -root /Volumes/"Mac OS X"
diskutil ap updatePreboot disk3s1
Parfait !
Quatrième (et dernière) étape : mise à jour des informations de démarrage. Passe (l'une après l'autre ; avec soin ; mets bien les undescores _ dans la 2è) les 3 commandes :
Bloc de code:kextcache -u /Volumes/"Mac OS X" update_dyld_shared_cache -force -root /Volumes/"Mac OS X" diskutil ap updatePreboot disk3s1
- la 1ère met à jour le cache de démarrage prelinkedkernel (elle passe instantanément et sans commentaire)
- la 2è met à jour le cache partagé dyld (elle est très lente à passer et retourne un long affichage)
=> poste les affichages retournés par les 2 dernières commandes et tu en auras fini du Terminal.
- la 3è met à jour les informations de prédémarrage pour l'EFI du volume auxiliaire Preboot (elle est assez lente aussi et retourne un long affichage)
-bash-3.2# kextcache -u /Volumes/"Mac OS X"
-bash-3.2# update_dyld_shared_cache -force -root /Volumes/ "Mac OS X"
update_dyld_shared_cache: unknown option: Mac OS X
-bash-3.2# update_dyld_shared_cache -force -root /Volumes/"Mac OS X"
update_dyld_shared_cache: warning @rpath install name for system framework: /System/Library/PrivateFrameworks/AssetCacheServicesExtensions.framework/Versions/A/XPCServices/AssetCacheTetheratorService.xpc/Contents/Frameworks/MobileDeviceKitLite.framework/Versions/A/MobileDeviceKitLite
update_dyld_shared_cache: warning @rpath install name for system framework: /System/Library/PrivateFrameworks/BiometricKitUI.framework/Versions/A/BiometricKitUI
update_dyld_shared_cache: warning @rpath install name for system framework: /System/Library/PrivateFrameworks/Swift/libswiftDemangle.dylib
update_dyld_shared_cache: warning @rpath install name for system framework: /System/Library/PrivateFrameworks/BookKit.framework/Versions/A/Frameworks/BookKitFoundation.framework/Versions/A/BookKitFoundation
update_dyld_shared_cache: warning @rpath install name for system framework: /System/Library/PrivateFrameworks/BroadcomWLAN.framework/Versions/A/BroadcomWLAN
update_dyld_shared_cache: warning @rpath install name for system framework: /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/Versions/A/SetupAssistantSupport
update_dyld_shared_cache: warning @rpath install name for system framework: /System/Library/PrivateFrameworks/Swift/libswiftRemoteMirror.dylib
update_dyld_shared_cache: warning @rpath install name for system framework: /System/Library/PrivateFrameworks/WirelessDiagnosticsSupport.framework/Versions/A/WirelessDiagnosticsSupport
update_dyld_shared_cache: i386 incorporating 626 OS dylibs, tracking 1047 others, building closures for 252 executables
update_dyld_shared_cache: x86_64 incorporating 1258 OS dylibs, tracking 1773 others, building closures for 2100 executables
diskutil ap updateupdate_dyld_shared_cache: warning: i386 adding dependents to /System/Library/PrivateFrameworks/Assistant.framework/Versions/A/Resources/Assistant Plugin.ibplugin/Contents/MacOS/Assistant Plugin: required dylib '@rpath/InterfaceBuilderKit.framework/Versions/A/InterfaceBuilderKit' not found, needed by '/System/Library/PrivateFrameworks/Assistant.framework/Versions/A/Resources/Assistant Plugin.ibplugin/Contents/MacOS/Assistant Plugin'
Preboot diskupdate_dyld_shared_cache: warning: x86_64 adding dependents to /System/Library/BridgeSupport/ruby-2.3/bridgesupportparser.bundle: required dylib '@rpath/libclang.dylib' not found, needed by '/System/Library/BridgeSupport/ruby-2.3/bridgesupportparser.bundle'
update_dyld_shared_cache: warning: x86_64 adding dependents to /System/Library/PrivateFrameworks/Assistant.framework/Versions/A/Resources/Assistant Plugin.ibplugin/Contents/MacOS/Assistant Plugin: required dylib '@rpath/InterfaceBuilderKit.framework/Versions/A/InterfaceBuilderKit' not found, needed by '/System/Library/PrivateFrameworks/Assistant.framework/Versions/A/Resources/Assistant Plugin.ibplugin/Contents/MacOS/Assistant Plugin'
update_dyld_shared_cache: warning: x86_64 adding dependents to /System/Library/QuickLook/Audio.qlgenerator/Contents/MacOS/Audio: required dylib '/Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary' not found, needed by '/System/Library/QuickLook/Audio.qlgenerator/Contents/MacOS/Audio'
^R
diskutil ap updatePreboot di-bash-3.2# diskutil ap updatePreboot disk3s1
Started APFS operation
UpdatePreboot: Commencing operation to update the Preboot Volume for Target Volume disk3s1 Mac OS X
UpdatePreboot: The Target Volume's OpenDirectory (non-special kind) user count is 1 and the Recovery (any of 3 kinds) user count is 1
UpdatePreboot: No custom Open Directory path given
UpdatePreboot: Using GivenVolumeMountPointOrNilIfNotMounted for the MacOSSearchPath
UpdatePreboot: Using MacOSSearchPath's child dslocal path for the OpenDirectorySearchPath
UpdatePreboot: MacOS Search Path = (nil=NotMounted) = /Volumes/Mac OS X
UpdatePreboot: Open Directory Database Search Path = (nil=MacOSSearchPathNotMounted) = /Volumes/Mac OS X/var/db/dslocal/nodes/Default
UpdatePreboot: Preserve EncryptedRootPList When No-OD = 0
UpdatePreboot: Successfully opened Open Directory database; setting AuthODNodeOrNil accordingly
UpdatePreboot: Mounting and ensuring as mounted the related Preboot Volume
UpdatePreboot: Preboot Volume = disk3s2 Preboot
UpdatePreboot: Taking mount hold on Preboot Volume
UpdatePreboot: Preboot Volume Target Directory = /Volumes/Preboot/C1CF3E8C-926B-34CC-AA42-F3050D6248C1
UpdatePreboot: Considering APFS Crypto User 1ECE028D-D3C8-4A1B-AC70-2A01567C420B
UpdatePreboot: Defaulting and requiring that this be an Open Directory User
UpdatePreboot: Treating this APFS Crypto User to be, and requiring to match, an Open Directory User
UpdatePreboot: Correlated APFS Volume Crypto User with Open Directory User 1ECE028D-D3C8-4A1B-AC70-2A01567C420B aka "jerome"
UpdatePreboot: Reading JPEG user picture of length 143726 from Open Directory database
UpdatePreboot: All required data for this Open Directory user has been obtained
UpdatePreboot: Parameters for EFILoginUserGraphics count=1 "unlockOptions"="0"
UpdatePreboot: Before render EFILoginUserGraphics user (graphics/audio) resources Name=Jérome PictureSize=(NoneIsOK)=143726 HintOptional=
UpdatePreboot: After render EFILoginUserGraphics Data=(0=Error)=0x7fa504c19c80=618854
UpdatePreboot: Before rendering EFILoginUserNamesData resources UserArrayCount=4
UpdatePreboot: After rendering EFILoginUserNamesData Data=(NULL=Skip)=0x7fa504c1d9a0 DataItemCount=4
UpdatePreboot: Successfully added a macOS OD User to the building dictionary
UpdatePreboot: Successfully processed APFS Volume Crypto User 1ECE028D-D3C8-4A1B-AC70-2A01567C420B
UpdatePreboot: Error for this processed user was 0
UpdatePreboot: Considering APFS Crypto User EC1C2AD9-B618-4ED6-BD8D-50F361C27507
UpdatePreboot: This is the iCloud User for this Volume
UpdatePreboot: Successfully ignoring this type of user
UpdatePreboot: Successfully processed APFS Volume Crypto User EC1C2AD9-B618-4ED6-BD8D-50F361C27507
UpdatePreboot: Error for this processed user was 0
UpdatePreboot: Considering APFS Crypto User 64C0C6EB-0000-11AA-AA11-00306543ECAC
UpdatePreboot: This is the iCloud Recovery Key for this Volume
UpdatePreboot: Treating this APFS Crypto User as an iCloud Recovery Key User
UpdatePreboot: Successfully processed an iCloud Recovery Key User
UpdatePreboot: Successfully processed APFS Volume Crypto User 64C0C6EB-0000-11AA-AA11-00306543ECAC
UpdatePreboot: Error for this processed user was 0
UpdatePreboot: Error among all processed users was 0
UpdatePreboot: At least one RECOVERY-type(s) user was processed successfully, in the presence of at least one successfully-processed OD user, so clearing among-all-users error if any
UpdatePreboot: The Encrypted Root PList File content is ready
UpdatePreboot: Not encrypting the Encrypted Root PList File content
UpdatePreboot: Encrypted Root PList File to be created path will or would be /Volumes/Preboot/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/System/Library/Caches/com.apple.corestorage/EncryptedRoot.plist.wipekey
UpdatePreboot: Proceeding to write Encrypted Root PList, creating a path as neccessary
UpdatePreboot: Successfully wrote Encrypted Root PList File
UpdatePreboot: DiskManagement Info PList File path will be /Volumes/Preboot/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/var/db/CryptoUserInfo.plist
UpdatePreboot: Successfully wrote DiskManagement Info PList File
UpdatePreboot: Checking for existence of Static EFI Resources directory /Volumes/Mac OS X/usr/standalone/i386/EfiLoginUI
UpdatePreboot: Before copying contents of directory of Static EFI Resources at /Volumes/Mac OS X/usr/standalone/i386/EfiLoginUI into directory /Volumes/Preboot/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/usr/standalone/i386
UpdatePreboot: After copying error=(0=success)=0
UpdatePreboot: Looking for locale list on macOS on Target Volume
UpdatePreboot: Locale list item count is 1
UpdatePreboot: Before rendering EFILoginInterfaceGraphics global localized resources
UpdatePreboot: After rendering EFILoginInterfaceGraphics FileNamesAndData=(0=error)=0x7fa504c21100=10
UpdatePreboot: Writing localized EFI graphics resource file /Volumes/Preboot/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/System/Library/Caches/com.apple.corestorage/EFILoginLocalizations/loginui.efires
UpdatePreboot: Successfully wrote EFI resource file
UpdatePreboot: Writing localized EFI graphics resource file /Volumes/Preboot/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/System/Library/Caches/com.apple.corestorage/EFILoginLocalizations/flag_picker.efires
UpdatePreboot: Successfully wrote EFI resource file
UpdatePreboot: Writing localized EFI graphics resource file /Volumes/Preboot/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/System/Library/Caches/com.apple.corestorage/EFILoginLocalizations/preferences.efires
UpdatePreboot: Successfully wrote EFI resource file
UpdatePreboot: Writing localized EFI graphics resource file /Volumes/Preboot/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/System/Library/Caches/com.apple.corestorage/EFILoginLocalizations/battery.efires
UpdatePreboot: Successfully wrote EFI resource file
UpdatePreboot: Writing localized EFI graphics resource file /Volumes/Preboot/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/System/Library/Caches/com.apple.corestorage/EFILoginLocalizations/appleLogo.efires
UpdatePreboot: Successfully wrote EFI resource file
UpdatePreboot: Writing localized EFI graphics resource file /Volumes/Preboot/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/System/Library/Caches/com.apple.corestorage/EFILoginLocalizations/unknown_userUI.efires
UpdatePreboot: Successfully wrote EFI resource file
UpdatePreboot: Writing localized EFI graphics resource file /Volumes/Preboot/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/System/Library/Caches/com.apple.corestorage/EFILoginLocalizations/disk_passwordUI.efires
UpdatePreboot: Successfully wrote EFI resource file
UpdatePreboot: Writing localized EFI graphics resource file /Volumes/Preboot/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/System/Library/Caches/com.apple.corestorage/EFILoginLocalizations/guest_userUI.efires
UpdatePreboot: Successfully wrote EFI resource file
UpdatePreboot: Writing localized EFI graphics resource file /Volumes/Preboot/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/System/Library/Caches/com.apple.corestorage/EFILoginLocalizations/Lucida13.efires
UpdatePreboot: Successfully wrote EFI resource file
UpdatePreboot: Writing localized EFI graphics resource file /Volumes/Preboot/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/System/Library/Caches/com.apple.corestorage/EFILoginLocalizations/Lucida13White.efires
UpdatePreboot: Successfully wrote EFI resource file
UpdatePreboot: Generating AdminUserList for Recovery purposes
UpdatePreboot: Considering admin user FFFFEEEE-DDDD-CCCC-BBBB-AAAA00000000
UpdatePreboot: Considering admin user 1ECE028D-D3C8-4A1B-AC70-2A01567C420B
UpdatePreboot: Error among all processed admin users was 0
UpdatePreboot: Writing Admin User Info File to path /Volumes/Preboot/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/var/db/AdminUserRecoveryInfo.plist
UpdatePreboot: Successfully wrote Admin User Info File
UpdatePreboot: Checking for existence of Secure Access Token file /Volumes/Mac OS X/var/db/dslocal/nodes/Default/secureaccesstoken.plist
UpdatePreboot: Before copying Secure Access Token file /Volumes/Mac OS X/var/db/dslocal/nodes/Default/secureaccesstoken.plist into directory /Volumes/Preboot/C1CF3E8C-926B-34CC-AA42-F3050D6248C1/var/db
UpdatePreboot: After copying error=(0=success)=0
UpdatePreboot: Releasing mount hold on Preboot Volume
UpdatePreboot: Unmounting Preboot Volume
UpdatePreboot: Did unmount Preboot Volume err=(ignored)=0
UpdatePreboot: Doing memory releases
UpdatePreboot: Exiting Update Preboot operation with overall error=(0=success)=0
Finished APFS operation
-bash-3.2#
update_dyld_shared_cache -force -root /Volumes/"Mac OS X"
Tu n'as qu'à repasser la commande :
Bloc de code:update_dyld_shared_cache -force -root /Volumes/"Mac OS X"
- et attendre jusqu'au ré-affichage de l'invite de commande -bash-3.2# en signal de complétion.
Tu as interrompu la commande, en effet. Les autres sont correctes. Pas la peine de les repasser.
-bash-3.2# update_dyld_shared_cache -force -root /Volumes/"Mac OS X"
update_dyld_shared_cache: warning @rpath install name for system framework: /System/Library/PrivateFrameworks/AssetCacheServicesExtensions.framework/Versions/A/XPCServices/AssetCacheTetheratorService.xpc/Contents/Frameworks/MobileDeviceKitLite.framework/Versions/A/MobileDeviceKitLite
update_dyld_shared_cache: warning @rpath install name for system framework: /System/Library/PrivateFrameworks/BiometricKitUI.framework/Versions/A/BiometricKitUI
update_dyld_shared_cache: warning @rpath install name for system framework: /System/Library/PrivateFrameworks/Swift/libswiftDemangle.dylib
update_dyld_shared_cache: warning @rpath install name for system framework: /System/Library/PrivateFrameworks/BookKit.framework/Versions/A/Frameworks/BookKitFoundation.framework/Versions/A/BookKitFoundation
update_dyld_shared_cache: warning @rpath install name for system framework: /System/Library/PrivateFrameworks/BroadcomWLAN.framework/Versions/A/BroadcomWLAN
update_dyld_shared_cache: warning @rpath install name for system framework: /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/Versions/A/SetupAssistantSupport
update_dyld_shared_cache: warning @rpath install name for system framework: /System/Library/PrivateFrameworks/Swift/libswiftRemoteMirror.dylib
update_dyld_shared_cache: warning @rpath install name for system framework: /System/Library/PrivateFrameworks/WirelessDiagnosticsSupport.framework/Versions/A/WirelessDiagnosticsSupport
update_dyld_shared_cache: i386 incorporating 626 OS dylibs, tracking 1047 others, building closures for 252 executables
update_dyld_shared_cache: x86_64 incorporating 1258 OS dylibs, tracking 1773 others, building closures for 2100 executables
update_dyld_shared_cache: warning: i386 adding dependents to /System/Library/PrivateFrameworks/Assistant.framework/Versions/A/Resources/Assistant Plugin.ibplugin/Contents/MacOS/Assistant Plugin: required dylib '@rpath/InterfaceBuilderKit.framework/Versions/A/InterfaceBuilderKit' not found, needed by '/System/Library/PrivateFrameworks/Assistant.framework/Versions/A/Resources/Assistant Plugin.ibplugin/Contents/MacOS/Assistant Plugin'
update_dyld_shared_cache: warning: x86_64 adding dependents to /System/Library/BridgeSupport/ruby-2.3/bridgesupportparser.bundle: required dylib '@rpath/libclang.dylib' not found, needed by '/System/Library/BridgeSupport/ruby-2.3/bridgesupportparser.bundle'
update_dyld_shared_cache: warning: x86_64 adding dependents to /System/Library/PrivateFrameworks/Assistant.framework/Versions/A/Resources/Assistant Plugin.ibplugin/Contents/MacOS/Assistant Plugin: required dylib '@rpath/InterfaceBuilderKit.framework/Versions/A/InterfaceBuilderKit' not found, needed by '/System/Library/PrivateFrameworks/Assistant.framework/Versions/A/Resources/Assistant Plugin.ibplugin/Contents/MacOS/Assistant Plugin'
update_dyld_shared_cache: warning: x86_64 adding dependents to /System/Library/QuickLook/Audio.qlgenerator/Contents/MacOS/Audio: required dylib '/Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary' not found, needed by '/System/Library/QuickLook/Audio.qlgenerator/Contents/MacOS/Audio'
-bash-3.2#