T
Twayne
VanguardLH said:Let me quote:
"When you set the paging file (Pagefile.sys) on
your
computer to a size that is lower than the
recommended
size of 12 megabytes (MB) plus the amount of
random
access memory (RAM), a temporary paging file
(Temppf.sys)
*may* be created"
"Windows NT creates only one temporary file,
TEMPPF.SYS.
This is a temporary paging file created at boot
time
*whenever the system detects that the current
paging file
configuration is not sufficient and might
prevent you
from correcting the deficiency.*"
This means: if Windows thinks there is not
enough
physical ram to operate, it will create a small
temporary
paging file. It does NOT mean it cannot live
without one.
Can the Virtual Memory be turned off on a really
large machine?
Strictly speaking Virtual Memory is always in
operation and cannot be "turned off." What is
meant by such wording is "set the system to use no
page file space at all."
Doing this would waste a lot of the RAM. The
reason is that when programs ask for an allocation
of Virtual memory space, they may ask for a great
deal more than they ever actually bring into use -
the total may easily run to hundreds of megabytes.
These addresses have to be assigned to somewhere
by the system. If there is a page file available,
the system can assign them to it - if there is
not, they have to be assigned to RAM, locking it
out from any actual use.
How big should the page file be?
There is a great deal of myth surrounding this
question. Two big fallacies are:
a.. The file should be a fixed size so that it
does not get fragmented, with minimum and maximum
set the same
b.. The file should be 2.5 times the size of RAM
(or some other multiple)
Both are wrong in a modern, single-user system. A
machine using Fast User switching is a special
case, discussed below.)...
....
Twayne