stupid8track wrote:Quote:(by commenting it out in your /etc/rc file)
do you mind stepping through how to do that?
Hi stupid (I can't get used to calling you that!),
My dual G5's /etc/rc file looks like this at line #238:
dynamic_pager -F ${swapdir}/swapfile
appprofiledir=/private/var/vm/app_profile
...
As I said a year or so ago here on VSL forum when telling someone how to do this: I can't be responsible for what happens to your system if you do this. My laptop has 1 GB in it and my G5 4 GB in it, but I haven't run through the permutations of all the different OS releases and memory combinations and driver combinations to know if your system will boot if you do this. So only do it if you are comfortable with it after you read this, and if you have yourself sufficiently backed up, mostly because YOU CAN GET YOURSELF INTO A CATCH-22 SITUATION where you need to change the file back in order to boot, and you need to boot to change the file back. Don't say I didn't warn you, please.
Basic setup:
#1: open the Terminal application in Applications/Utilities
#2: sudo su -
(you'll get a nice and completely appropriate warning here.)
#3: type your administrator password to become root
(None of the rest will really work if you can't do the above.)
Backup your rc file:
#4: cd /etc
#5: cp rc rc.original (this copies file "rc" to "rc.original")
Edit your rc file. This is the hardest part to explain because I don't
have time to explain how to use vi, emacs, or another UNIX text editor.
#6: vi rc
#7: /dynamic_pager (this searches for the string "dynamic_pager")
#8: Type 'i' to start the Insert text command.
(You'll get a warning about the file being read-only. Proceed anyway.)
#9: Type '#' to insert a '#' comment character in front of dynamic_pager.
#10: Hit the [esc] key in the upper left corner of your keyboard to exit insert mode.
#11: Press the colon ':' key
#12: Type 'wq!' (the "write, quit, don't argue" command sequence)
#13: Hit the [return] key
If absolutely everything went well, you're now back at the UNIX command prompt and your rc file has been updated. You can check how it went by issuing the command:
grep 'dynamic_pager' rc
If you successfully commented out dynamic_pager, it'll look something like this:
#dynamic_pager -F ${swapdir}/swapfile
If there's no leading '#' character, you didn't comment out dynamic_pager, and it will still start up next time you boot.
Once you change this file, it will stay that way until you change it back. Every time you boot, it will do what it says in this file, so no, you don't have to keep commenting it out. That's why I gave you the big warning, really.
Anyway, if disaster ensues, log back in as root, cd to /etc, and copy your old rc file back over the modified version:
cp rc.original rc
At least this way you don't have to edit the file again -- no matter what you did to it, this should put its contents back to what they were before you started messing with it. If your system won't boot, you'l have to boot from another disk, login as root, and cd to /Volumes/Macintosh HD/etc first. (if your hard disk is named something other than Macintosh HD, substitute that instead under /Volumes.
Good luck. Please get in touch with your local UNIX guru before trying this, I'm going to be out this week, and it'll probably be January before I'm back on line here.
I admire you guys who can figure out how to use other people's software effectively. I am a babe in the woods at using Logic (and most other apps), would trade quite a lot to know half of what you know.
Safe and happy holidays all!
dot