dxdx349 Posted June 6, 2014 Share Posted June 6, 2014 How enabler trim in os x 10.10? Trim enabler doesn't work. Any ideea? Link to comment https://www.insanelymac.com/forum/topic/298535-trim-enabler/ Share on other sites More sharing options...
Goron Posted June 6, 2014 Share Posted June 6, 2014 If latest version ( http://www.cindori.org/ ) doesn´t work, you could try manually: sudo perl -pi -e 's|(\x52\x6F\x74\x61\x74\x69\x6F\x6E\x61\x6C\x00{1,20})[^\x00]{9}(\x00{1,20}\x54)|$1\x00\x00\x00\x00\x00\x00\x00\x00\x00$2|sg' /System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCIBlockStorage.kext/Contents/MacOS/IOAHCIBlockStorage Link to comment https://www.insanelymac.com/forum/topic/298535-trim-enabler/#findComment-2026074 Share on other sites More sharing options...
fantomas Posted June 6, 2014 Share Posted June 6, 2014 hi try this http://www.insanelymac.com/forum/files/file/256-enable-trim-on-1010-dp1/hi 1 Link to comment https://www.insanelymac.com/forum/topic/298535-trim-enabler/#findComment-2026088 Share on other sites More sharing options...
dxdx349 Posted June 6, 2014 Author Share Posted June 6, 2014 hi try this http://www.insanelymac.com/forum/files/file/256-enable-trim-on-1010-dp1/hi It's work. Thank's! Link to comment https://www.insanelymac.com/forum/topic/298535-trim-enabler/#findComment-2026235 Share on other sites More sharing options...
pinarek Posted June 7, 2014 Share Posted June 7, 2014 works here NOT !!! System not booting after install this new Kext. Link to comment https://www.insanelymac.com/forum/topic/298535-trim-enabler/#findComment-2026566 Share on other sites More sharing options...
dxdx349 Posted June 7, 2014 Author Share Posted June 7, 2014 Did you delete kext before install the new kext? Link to comment https://www.insanelymac.com/forum/topic/298535-trim-enabler/#findComment-2026666 Share on other sites More sharing options...
digital_dreamer Posted June 7, 2014 Share Posted June 7, 2014 I've redone the perl one-liner so that it should work with any OS version. It was originally written to be dependent on the exact characters following the "APPLE SSD" string, which typically changes on each OS version, requiring a rewrite each time. Silly requirement. Now, it'll look for the following non-null characters and simply re-output them, without actually knowing what they were. It will also create a backup (with .bak extension) in the same directory, in the event it messes up something. See if it works: Enable TRIM for non-Apple SSD: sudo perl -i.bak -pe 's|(Rotational\x00{1,20})[^\x00]{9}(\x00{1,20}[^\x00])|$1\x00\x00\x00\x00\x00\x00\x00\x00\x00$2|sg' \ /System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCIBlockStorage.kext/Contents/MacOS/IOAHCIBlockStorage Disable TRIM for non-Apple SSD (without using previous backup): sudo perl -i -pe 's|(Rotational\x00{1,20})\x00{10}([^\x00])|$1APPLE SSD\x00$2|sg' \ /System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCIBlockStorage.kext/Contents/MacOS/IOAHCIBlockStorage Disable TRIM for non-Apple SSD by reverting to previous backup: sudo mv -f /System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCIBlockStorage.kext/Contents/MacOS/IOAHCIBlockStorage.bak \ /System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCIBlockStorage.kext/Contents/MacOS/IOAHCIBlockStorage kind regards, MAJ EDIT: Of course, always update caches and reboot after changes! 2 Link to comment https://www.insanelymac.com/forum/topic/298535-trim-enabler/#findComment-2026846 Share on other sites More sharing options...
pinarek Posted June 10, 2014 Share Posted June 10, 2014 digital_dreamer... Unfortunately, the tool did not work. This tip but here goes: 3 Method ! http://www.insanelymac.com/forum/topic/298507-enable-trim-on-non-apple-ssd/?do=findComment&comment=2025739 with entry in Clover There is only one small problem after that is activated it takes longer (about 15 seconds) from the start Clover appears to desktop. Link to comment https://www.insanelymac.com/forum/topic/298535-trim-enabler/#findComment-2028358 Share on other sites More sharing options...
Cindori Posted June 12, 2014 Share Posted June 12, 2014 Trim Enabler supports Yosemite. But for Developer Preview you need to use this extra boot argument: http://www.cindori.org/enabling-trim-on-os-x-yosemite/ Link to comment https://www.insanelymac.com/forum/topic/298535-trim-enabler/#findComment-2029423 Share on other sites More sharing options...
Recommended Posts