Andy Vandijck, on 03 January 2013 - 05:18 PM, said:
It's the birthday edition (today is my birthday lol -> 03/01/1985
)
03/01/1976, here. Happy Birthday to you too buddy!
Not Telling
14 December 2012 - 12:38 AM
13 December 2012 - 08:58 PM
instant idiot, on 13 December 2012 - 07:31 PM, said:
13 December 2012 - 07:29 PM
instant idiot, on 13 December 2012 - 07:23 PM, said:
Where is the Mac volume mounted ( / , /Volumes/<drive name> , etc.)? Type the path and press [Enter]: "/Volumes/AMD Mountain Lion HD/" Backing up originals... usage: mv [-f | -i | -n] [-v] source target mv [-f | -i | -n] [-v] source ... directory usage: mv [-f | -i | -n] [-v] source target mv [-f | -i | -n] [-v] source ... directory usage: mv [-f | -i | -n] [-v] source target mv [-f | -i | -n] [-v] source ... directory usage: mv [-f | -i | -n] [-v] source target mv [-f | -i | -n] [-v] source ... directory usage: mv [-f | -i | -n] [-v] source target mv [-f | -i | -n] [-v] source ... directory usage: mv [-f | -i | -n] [-v] source target mv [-f | -i | -n] [-v] source ... directory Installing new launchd... usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory
13 December 2012 - 06:48 PM
mac_carol, on 13 December 2012 - 04:48 PM, said:
#! /bin/bash if [ $1 = "install" ]; then echo "Where is the Mac volume mounted ( leave blank for '/' , /Volumes/<drive name> no trailing slash , etc.)?" echo "Type the path and press [Enter]:" read mountpoint echo "Backing up originals..." mv $mountpoint/bin/launchctl $mountpoint/bin/launchctl.orig mv $mountpoint/bin/wait4path $mountpoint/bin/wait4path.orig mv $mountpoint/sbin/launchd $mountpoint/sbin/launchd.orig mv $mountpoint/sbin/SystemStarter $mountpoint/sbin/SystemStarter.orig mv $mountpoint/usr/lib/system/liblaunch.dylib.orig $mountpoint/usr/lib/system/liblaunch.dylib.orig mv $mountpoint/usr/libexec/launchproxy $mountpoint/usr/libexec/launchproxy.orig echo "Installing new launchd..." cp launchctl $mountpoint/bin/ cp wait4path $mountpoint/bin/ cp launchd $mountpoint/sbin/ cp SystemStarter $mountpoint/sbin/ cp liblaunch.dylib $mountpoint/usr/lib/system/ cp launchproxy $mountpoint/usr/libexec/ elif [ $1 = "remove" ]; then echo "Where is the Mac volume mounted (/, /Volumes/<drive name/, etc.)?" echo "Type the path and press [Enter]:" read mountpoint echo "Deleting launchd..." rm $mountpoint/bin/launchctl rm $mountpoint/bin/wait4path rm $mountpoint/sbin/launchd rm $mountpoint/sbin/SystemStarter rm $mountpoint/usr/lib/system/liblaunch.dylib rm $mountpoint/usr/libexec/launchproxy echo "Restoring original launchd..." mv $mountpoint/bin/launchctl.orig $mountpoint/bin/launchctl mv $mountpoint/bin/wait4path.orig $mountpoint/bin/wait4path mv $mountpoint/sbin/launchd.orig $mountpoint/sbin/launchd mv $mountpoint/sbin/SystemStarter.orig $mountpoint/sbin/SystemStarter mv $mountpoint/usr/lib/system/liblaunch.dylib.orig $mountpoint/usr/lib/system/liblaunch.dylib mv $mountpoint/usr/libexec/launchproxy.orig $mountpoint/usr/libexec/launchproxy else echo "Usage launchdhelper install -OR- launchdhelper remove" fi

Find content