![]() |
#31
|
|||
|
|||
ok after restarting with new kernel it just reboots and reboots and also when i boot with mach_kernel.voodoo it also reboots
btw, both mach_kernel.voodoo and mach_kernel.qoopz are in the root drive ![]() |
#32
|
||||
|
||||
The new kernel is called mach_kernel.qoopz Have you tried booting using:
Code:
-v -f mach_kernel.qoopz MOBO: Z77MX-QUO-AOS CPU: Core i7 3770K GPU: MSI N760 TF 2GD5/OC Case: Modded MacPro2,1 Memory: 32GB Corsair Vengeance (CMY32GX3M4A1600C9) Wifi: Airport Extreme bcm94321MCA BIOS: HermitCrab Labs H3A.816M Monitor: AOC Q2963Pm 29" WFHD 2560x1080 21:9 Interests: KDE on Apple Darwin, Keeping it real with the command line, Helping those that help themselves |
#33
|
|||
|
|||
can you explain the process of restoreing the old extensions?
Thanks for helping me. |
#34
|
||||
|
||||
No problem, im sorry the update didn't go well.
Ive explained what the commands mean in previous sections so Ill cut out the fat and give it to you straight. Remember to press enter after every line. Boot the install disk and open terminal. Replace YOUR_INSTALL_NAME with what you named your install. Code:
cd /Volumes/YOUR_INSTALL_NAME mkdir UpdateBackup cp -R System/Library/Extensions/ UpdateBackup rm -Rf System/Library/Extensions/* cp -R Backup/ System/Library/Extensions cd System/Library chown -R root:wheel Extensions/ chmod -R 755 Extensions/ Code:
-v -f -x mach_kernel.voodoo MOBO: Z77MX-QUO-AOS CPU: Core i7 3770K GPU: MSI N760 TF 2GD5/OC Case: Modded MacPro2,1 Memory: 32GB Corsair Vengeance (CMY32GX3M4A1600C9) Wifi: Airport Extreme bcm94321MCA BIOS: HermitCrab Labs H3A.816M Monitor: AOC Q2963Pm 29" WFHD 2560x1080 21:9 Interests: KDE on Apple Darwin, Keeping it real with the command line, Helping those that help themselves |
#35
|
|||
|
|||
ok before i do this i have one question.
ok when im installing the qoopz kernel when i get to this chown root:wheel /mach_kernel* (it says that its read only file ) could that have something to do with it? oh and before i do these commands Code:
chown root:wheel /mach_kernel* chmod 644 /mach_kernel* but after i execute the commands it turns to a white paper so could that have something to do with it? |
#36
|
||||
|
||||
Code:
chown root:wheel /mach_kernel* chmod 644 /mach_kernel* If you are doing these commands from inside a working install than it should work but if you were doing these from DVD than the "/" means your trying to modify the kernel on the DVD, which is read only. From the DVD you could do either of these. Code:
chown root:wheel /Volumes/YOUR_INSTALL_NAME/mach_kernel* Code:
cd /Volumes/YOUR_INSTALL_NAME chown root:wheel mach_kernel* 💡 Deploy cloud instances seamlessly on DigitalOcean. Free credits ($100) for InfMac readers. MOBO: Z77MX-QUO-AOS CPU: Core i7 3770K GPU: MSI N760 TF 2GD5/OC Case: Modded MacPro2,1 Memory: 32GB Corsair Vengeance (CMY32GX3M4A1600C9) Wifi: Airport Extreme bcm94321MCA BIOS: HermitCrab Labs H3A.816M Monitor: AOC Q2963Pm 29" WFHD 2560x1080 21:9 Interests: KDE on Apple Darwin, Keeping it real with the command line, Helping those that help themselves |