Contribute
Register

kextbeast doesnt seem to install kexts into folders

Status
Not open for further replies.
Oh I see....Im putting those values in clover configurator tho, not directly to the config file. with those values, still no kexts in L/E

I do not recommend Clover Configurator.
Let's see what you're actually doing...

Attach EFI/Clover folder as ZIP (press F4 at main Clover screen before collecting). Please eliminate 'themes' directory. Provide only EFI/Clover, not the entire EFI folder.

Attach output of these commands in Terminal:
Code:
csrutil status
ls -l /Library/Extensions
 
I do not recommend Clover Configurator.
Let's see what you're actually doing...

Attach EFI/Clover folder as ZIP (press F4 at main Clover screen before collecting). Please eliminate 'themes' directory. Provide only EFI/Clover, not the entire EFI folder.

Attach output of these commands in Terminal:
Code:
csrutil status
ls -l /Library/Extensions

Bryans-iMac:~ bryan$ csrutil status
System Integrity Protection status: disabled.
Bryans-iMac:~ bryan$ ls -l /Library/Extensions
total 0
drwxr-xr-x 3 root wheel 102 Jun 12 2014 ACS6x.kext
drwxr-xr-x 3 root wheel 102 Jun 27 13:59 ATTOCelerityFC8.kext
drwxr-xr-x 3 root wheel 102 Jun 27 14:02 ATTOExpressSASHBA2.kext
drwxr-xr-x 3 root wheel 102 Jun 27 14:04 ATTOExpressSASRAID2.kext
drwxr-xr-x 3 root wheel 102 Jun 5 2015 AppleIntelE1000e.kext
drwxr-xr-x 3 root wheel 102 Aug 20 2013 ArcMSR.kext
drwxr-xr-x 3 root wheel 102 Aug 12 2015 AtherosE2200Ethernet.kext
drwxr-xr-x 3 root wheel 102 Aug 31 2013 CalDigitHDProDrv.kext
drwxr-xr-x@ 3 root wheel 102 Dec 12 19:54 FakePCIID_Broadcom_WiFi.kext
drwxr-xr-x 3 root wheel 102 Jul 11 2015 FakeSMC.kext
drwxr-xr-x 3 root wheel 102 Aug 14 2014 HighPointIOP.kext
drwxr-xr-x 3 root wheel 102 Aug 14 2014 HighPointRR.kext
drwxr-xr-x 3 root wheel 102 Apr 27 2014 PromiseSTEX.kext
drwxr-xr-x 3 root wheel 102 Jul 30 2015 RealtekRTL8111.kext
drwxr-xr-x 3 root wheel 102 Aug 3 17:58 SoftRAID.kext
Bryans-iMac:~ bryan$
 

Attachments

  • CLOVER.zip
    1.2 MB · Views: 59
Bryans-iMac:~ bryan$ csrutil status
System Integrity Protection status: disabled.
Bryans-iMac:~ bryan$ ls -l /Library/Extensions
total 0
drwxr-xr-x 3 root wheel 102 Jun 12 2014 ACS6x.kext
drwxr-xr-x 3 root wheel 102 Jun 27 13:59 ATTOCelerityFC8.kext
drwxr-xr-x 3 root wheel 102 Jun 27 14:02 ATTOExpressSASHBA2.kext
drwxr-xr-x 3 root wheel 102 Jun 27 14:04 ATTOExpressSASRAID2.kext
drwxr-xr-x 3 root wheel 102 Jun 5 2015 AppleIntelE1000e.kext
drwxr-xr-x 3 root wheel 102 Aug 20 2013 ArcMSR.kext
drwxr-xr-x 3 root wheel 102 Aug 12 2015 AtherosE2200Ethernet.kext
drwxr-xr-x 3 root wheel 102 Aug 31 2013 CalDigitHDProDrv.kext
drwxr-xr-x@ 3 root wheel 102 Dec 12 19:54 FakePCIID_Broadcom_WiFi.kext
drwxr-xr-x 3 root wheel 102 Jul 11 2015 FakeSMC.kext
drwxr-xr-x 3 root wheel 102 Aug 14 2014 HighPointIOP.kext
drwxr-xr-x 3 root wheel 102 Aug 14 2014 HighPointRR.kext
drwxr-xr-x 3 root wheel 102 Apr 27 2014 PromiseSTEX.kext
drwxr-xr-x 3 root wheel 102 Jul 30 2015 RealtekRTL8111.kext
drwxr-xr-x 3 root wheel 102 Aug 3 17:58 SoftRAID.kext
Bryans-iMac:~ bryan$

Why do you think you're not able to install kexts into /L/E?

As you can see, these kexts are installed there (not installed by Apple):
RealtekRTL8111.kext
FakeSMC.kext
FakePCIID_Broadcom_WiFi.kext
AtherosE2200Ethernet.kext

Note: FakePCIID_Broadcom_WiFi.kext does nothing without FakePCIID.kext.
 
Why do you think you're not able to install kexts into /L/E?

As you can see, these kexts are installed there (not installed by Apple):
RealtekRTL8111.kext
FakeSMC.kext
FakePCIID_Broadcom_WiFi.kext
AtherosE2200Ethernet.kext

Note: FakePCIID_Broadcom_WiFi.kext does nothing without FakePCIID.kext.


I realize that, and have FakePCIID.kext and USBinjectall on my desktop waiting to be installed. Im trying to install it but nothing is happening.
 
I realize that, and have FakePCIID.kext and USBinjectall on my desktop waiting to be installed. Im trying to install it but nothing is happening.

Use below commands to install the kexts.

Code:
sudo cp -R ~/Desktop/FakePCIID.kext /Library/Extensions/
sudo chmod -R 755 /Library/Extensions/FakePCIID.kext
sudo chown -R root:wheel /Library/Extensions/FakePCIID.kext

Same step repeat for your USBInjectAll.kext

Then rebuild caches and reboot OS X.

Check whether the kext loaded or not with below command.

Code:
kextstat |grep -i fakepciid
kextstat |grep -i usbinject
 
Use below commands to install the kexts.

Code:
sudo cp -R ~/Desktop/FakePCIID.kext /Library/Extensions/
sudo chmod -R 755 /Library/Extensions/FakePCIID.kext
sudo chown -R root:wheel /Library/Extensions/FakePCIID.kext

Same step repeat for your USBInjectAll.kext

Then rebuild caches and reboot OS X.

Check whether the kext loaded or not with below command.

Code:
kextstat |grep -i fakepciid
kextstat |grep -i usbinject

chmod/chown not needed.
 
I realize that, and have FakePCIID.kext and USBinjectall on my desktop waiting to be installed. Im trying to install it but nothing is happening.

You should check if you're installing them to /S/L/E.
Check system logs.
Or use Terminal to install kexts (GUI apps for installing kexts are not needed... overrated).
 
No idea. I never use it... always use Terminal.

Do I leave those values in for BootConfig 0x28 and CsrActiveConfig 0x67, disabling SIP?

Or do I enable SIP and move the kexts to EFI and injectkexts in config?


It looks like im getting slow USB speeds. My usb 3.0 drive is writing 105 Mb/s and transfers data really slow.
 
Last edited:
Status
Not open for further replies.
Back
Top