RED-ROCKET-X INSTALL in MacOS CATALINA
UPDATE : 2020 Mar 08 : Worked for 2 x People
As mentioned here at the steps involved in Manually Installing a 3rd Party Kernel Extension in Catalina
(Refs for steps at the bottom of the thread)
STAGE 1 : Get Kernel Extension(‘kext’ file ready)
+) Download redrocketx.kext.zip file from :
https://we.tl/t-9ZqtH9UBZW
(this file will exist for the next 7 days in WeTransfer)
+) Decompress redrocketx.kext.zip on Desktop
+) Go into ‘Terminal’ App
+) Change directory to Desktop in ‘Terminal’
cd /Users/YOURUSERNAME/Desktop
(replace 'YOURUSERNAME' with your Desktop user name)
STAGE 2 : Before installing Kexts, disable Gate Keeper and mount the System Partition as Read/Write in ‘Terminal’
sudo spctl --master-disable
sudo mount -uw NOTE: Even if this Fails : The overall process can work
sudo killall Finder
STAGE 4 : Use ’Terminal’ to copy extension into directory (as copying with Finder will not work properly for kext files)
sudo cp -R redrocketx.kext /Library/Extensions
STAGE 5 : Repair permissions. Rebuild permissions in ‘Terminal’
sudo chown -v -R root:wheel /System/Library/Extensions
sudo touch /System/Library/Extensions
sudo chmod -v -R 755 /Library/Extensions
sudo chown -v -R root:wheel /Library/Extensions
sudo touch /Library/Extensions
sudo kextcache -i /
STAGE 6 : Reboot machine
With any luck at this point - this might be all that is needed to RocketX driver working in Catalina.
=============================
Reference information (1) Main script details on installing Kexts on Catalina gleaned from:
https://www.tonymacx86.com/threads/g...talina.268964/
Reference information (2): Location of 3rd party Kext files.
I used finder on my own Mac Pro 2013 running Catalina & RRX.
Reference information (3): I have checked the ownership of all files in /System/Library/Extensions on my machine to confirm they are all owned by ‘root:wheel’ (as detailed on the tonymacx86 site ref 1)
AJ