View Single Post
 
Old 03-27-2009, 03:53 PM
lanceomni's Avatar
lanceomni lanceomni is offline
 
Join Date: Nov 2008
Location: Florida, US
Posts: 521
The first thing I would do once you can get into OSX is to backup your extensions folder and kernel. That way if you install something and bork your install you have a backup copy and a 5min fix instead of a full reinstall. Ive included directions on backing up those files at the bottom of this post.

Backing up your Extensions Folder & Kernel Using Terminal
In short:
Code:
sudo -s
mkdir /backup
cd /System/Library
cp -r Extensions/ /backup/
cp -r /mach_kernel /mach_kernel.backup
Steps explained:
1. Give yourself root privileges so that you can modify files.
Code:
sudo -s
2. Make a backup copy of your kexts. First we will make a directory called "backup" in our root directory to store them. Open Terminal and type:
Code:
mkdir /backup
3. Change directories to /System/Library This will shorten some of the commands we have to type in.
Code:
cd /System/Library
4. Copy your kexts to the new "backup" folder.
Code:
cp -r Extensions/ /backup/
5. Backup your kernel (Using mach_kernel.backup as a boot option will load your backup)
Code:
cp -r /mach_kernel /mach_kernel.backup

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
Reply With Quote