Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Use Caution' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Use Caution
Authored by: encro on Jan 18, '04 12:28:07AM
To reverse it you need to look at what the command you entered is doing:

sudo ln -s /System/Library/Extensions/BootCache.kext/Contents/Resources/BootCacheControl /usr/sbin/BootCacheControl
This means using elevated priviliges (Superuser Do) make a symbolic link to the file to the BootCacheControl file found in /System/Library/Extensions/BootCache.kext/Contents/Resources/ and place the symlink in: /usr/sbin/BootCacheControl

Now you know where that symlink was created you can simply open the folder by using the Finder's GO Menu command 'Go to Folder' and enter /usr/sbin/ in the search field and delete the BootCacheControl file from there. or alternatively:

sudo rm -iv /usr/sbin/BootCacheControl
Which will remove a file (showing the removal and asking for confirmation to remove)

[ Reply to This | # ]