carbon copy cloner
Saturday, October 22nd, 2005note to myself:
if the login from a cloned disk does not work, use this little tip:
Q(17): I’ve booted from the clone, but it presents me with a login screen and won’t accept my password. What do I do?
A: Occasionally (but rarely), the NetInfo database does not copy properly. Often this is because the target disk was not formatted before cloning. The fix is fairly easy:Reboot into single-user mode (hold down command+s during boot). When prompted, type:
fsck -y
[repeat until it no longer says that the Filesystem was modified]
mount -uw /
cd /var/db/
rm .AppleSetupDone
cd netinfo
mv local.nidb local.nidb.bak
exitAs the system boots, you will get the Apple Setup Assistant. Enter your name, password, etc (be sure to use the same short name). You should be able to get in just fine now.
one more thing, if scheduled tasks don’t work:
Hello everyone.
I have identified a problem with running scheduled tasks on Tiger. Apparently Apple changed the format used to write out files. When CCC writes out the scheduled tasks, a null character is written in between every character in the script. As such, the shell cannot execute the file (“bash: Cannot execute binary file”). The workaround is to run the following command in the Terminal whenever you create a scheduled task:
Code:
sudo perl -p -i -e ‘s/00//g’ /etc/ccc.*Just copy/paste that command into the Terminal application (in /Applications/Utilities), and provide your admin password when requested.
This will be resolved in 3.0.
Mike
here is the original forum entry at ccc