Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Move page file 1

Status
Not open for further replies.

mkirros

IS-IT--Management
Joined
Feb 17, 2004
Messages
82
We have a Win2000 Server which is getting short on space in the system partition, so I want to move the page file to free up some space. In doing some research, I found some folks recommending leaving a portion of the page file on the c: drive - anywhere from 2MB to 512MB. Others indicate that there's no need to leave any of the page file on c:. Any thoughts or experiences out there that might be helpful? Thanks.
 
The only reason to leave a page file on the root at all is to capture and system dump logs if it crashed. Be honest...if it did crash, what use really is the dump? It's easier to rebuild, so you can leave a small page if you want to, but you don't have to.

I'm Certifiable, not certified.
It just means my answers are from experience, not a book.
 
If it's a kernal mode dump, it's usually a bad device driver. Saving room for a kernal dump, about 200M, allows you to open the dump file and determine the source of the crash. It's really quite easy to do and doesn't require extensive knowledge of debugging.

To determine the driver that caused a crash,

1. go to to download and install the debugging tools.

2. launch windbg and set the symbol path to the symbol server.
3. Open the memory.dump file.

4. At the windbg command prompt, enter "!Analyze".

That's it windbg will analyze the dump and tell you the module that faulted.

A few months ago, I was getting blue screens on my new thinkpad. I took the dump file and did a !analyze to determine the faulty driver. It was ar5211.sys, the driver for the integrated wireless. I went to the IBM website and downloaded and installed the latest update for this driver. Issue resolved, and I didn't have to waste a lot of type rebuilding and restoring the laptop. Without updating the right driver, a rebuild/restore route would have been pointless anyway.

It may give you a warm and fuzzy feeling inside to stay up all night mindlessly rebuilding servers not knowing if that will resolve the issue or not; I'd rather determine the source of the issue so that my remediation approach will succeed with some degree of certainty.

Leaving 200M of the page file on C: at least leaves this option open.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top