A Windows XP help forum. PCbanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PCbanter forum » Microsoft Windows XP » General XP issues or comments
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

pagefile.sys header



 
 
Thread Tools Display Modes
  #1  
Old October 31st 15, 07:41 PM posted to microsoft.public.windowsxp.general
Bill Cunningham[_2_]
external usenet poster
 
Posts: 441
Default pagefile.sys header

I wondered if anyone knows anything about pagefile.sys's header. I
wanted to clear or zero out the contents of the pagefile and of course I
need to leave the header intact. I looked online and couldn't find anything.
I did learn though you can use the fsutil to encrypt pagefile.sys. I will
have to fiddle with it a bit.

Bill


Ads
  #2  
Old October 31st 15, 09:13 PM posted to microsoft.public.windowsxp.general
VanguardLH[_2_]
external usenet poster
 
Posts: 10,881
Default pagefile.sys header

Bill Cunningham wrote:

I wondered if anyone knows anything about pagefile.sys's header. I
wanted to clear or zero out the contents of the pagefile and of course I
need to leave the header intact.


Why? If you are going to erase the pagefile, why do you need to leave
behind a skeleton file with a header? If the pagefile is missing,
Windows will recreate it on startup.

For example, you can configure Windows to zero out (clear); see
https://support.microsoft.com/en-us/kb/314834. If you delete the
pagefile.sys file, it gets recreated on Windows startup.

I looked online and couldn't find anything. I did learn though you can
use the fsutil to encrypt pagefile.sys. I will have to fiddle with it
a bit.


The pagefile can only be cleared on shutdown to ensure there are no
processes that still have pages allocated to them. Clearing the
pagefile at any other time means removing data that current processes
may still need or destroying code that will cause the processes to
crash or worse misbehave. Similarly, the pagefile can only be defragged
during Windows startup before it starts to get used.

What would be the advantage of encrypting the pagefile? The instance of
Windows that is running would still have to read and write to the
pagefile so forensics would still be able to dig into that file looking
for nasty tidbits or passwords.
  #3  
Old October 31st 15, 11:41 PM posted to microsoft.public.windowsxp.general
Bill Cunningham[_2_]
external usenet poster
 
Posts: 441
Default pagefile.sys header


"VanguardLH" wrote in message
...
Bill Cunningham wrote:

I wondered if anyone knows anything about pagefile.sys's header. I
wanted to clear or zero out the contents of the pagefile and of course I
need to leave the header intact.


Why? If you are going to erase the pagefile, why do you need to leave
behind a skeleton file with a header? If the pagefile is missing,
Windows will recreate it on startup.


But not in the same place it was. It's suppose dto be at the beginning
of the disk.

For example, you can configure Windows to zero out (clear); see
https://support.microsoft.com/en-us/kb/314834. If you delete the
pagefile.sys file, it gets recreated on Windows startup.

I looked online and couldn't find anything. I did learn though you can
use the fsutil to encrypt pagefile.sys. I will have to fiddle with it
a bit.


The pagefile can only be cleared on shutdown to ensure there are no
processes that still have pages allocated to them. Clearing the
pagefile at any other time means removing data that current processes
may still need or destroying code that will cause the processes to
crash or worse misbehave. Similarly, the pagefile can only be defragged
during Windows startup before it starts to get used.


Well I was meaning cleaning it from another OS so it wouldn't be being
used. Aotherwise no of course you couldn't touch it. Maybe it's not worth
it.

What would be the advantage of encrypting the pagefile? The instance of
Windows that is running would still have to read and write to the
pagefile so forensics would still be able to dig into that file looking
for nasty tidbits or passwords.


I read it was extra security to encrypt the pagefile. idk.

Bill


  #4  
Old October 31st 15, 11:45 PM posted to microsoft.public.windowsxp.general
Bill Cunningham[_2_]
external usenet poster
 
Posts: 441
Default pagefile.sys header


"VanguardLH" wrote in message
...

For example, you can configure Windows to zero out (clear); see
https://support.microsoft.com/en-us/kb/314834.


I didn't know that. Well I guess it's not needed then. This doesn't erase
the file does it?

Bill


  #5  
Old November 1st 15, 02:27 AM posted to microsoft.public.windowsxp.general
Paul
external usenet poster
 
Posts: 18,275
Default pagefile.sys header

Bill Cunningham wrote:
"VanguardLH" wrote in message
...

For example, you can configure Windows to zero out (clear); see
https://support.microsoft.com/en-us/kb/314834.


I didn't know that. Well I guess it's not needed then. This doesn't erase
the file does it?

Bill


It would overwrite all the clusters of that file.

Deleting the pointer to the file doesn't clear it.
Overwriting all the clusters does clear it.

If the pagefile is large, this will extend the shutdown time.

Paul


  #6  
Old November 1st 15, 02:36 AM posted to microsoft.public.windowsxp.general
VanguardLH[_2_]
external usenet poster
 
Posts: 10,881
Default pagefile.sys header

Bill Cunningham wrote:

VanguardLH wrote ...

For example, you can configure Windows to zero out (clear); see
https://support.microsoft.com/en-us/kb/314834.


I didn't know that. Well I guess it's not needed then. This doesn't
erase the file does it?


No, it zeroes it out (writes zeros into the file). The allocated
filespace remains.

Unless you know that the pagefile.sys file is at the beginning of the
disk (where is the fastest rotational speed of the disk), you should run
a defragger that includes the page file.

An old trick of trying to keep the pagefile from fragmenting is to set
it to a fixed size. Set the min and max size the same. Then Windows
allocates a fixed size to the file. Delete the current [fragmented]
pagefile.sys file (boot into the Recovery Console to delete or use a
deleter that can delete files on Windows startup) and reboot into
Windows. Then defrag to include the page file which moves it to the
beginning of the disk.

Also, if you have 2, or more, HDDs then you can leave a small segment
for the pagefile on the C: drive (on one HDD) and add a large segment
for the pagefile on the other drive (on the other HDD). The drives
cannot be on the same HDD. Each pagefile segment has to be on a
different physical hard disk in a partition there given a drive letter.
So, for example, if you have a C: drive on HDD 1 and a D: drive on HDD 2
then you would configure the pagefile to have a small segment on C: and
a big segment on D:. Windows will give priority to the pagefile segment
on an HDD other than where is Windows. This will eliminate some data
bus contention where Windows or apps are trying to access their HDD but
let Windows concurrently make writes to the pagefile on the other HDD.
If you have an SSD and that is where is Windows then just use the
pagefile on the much faster SSD.
  #7  
Old November 1st 15, 02:38 AM posted to microsoft.public.windowsxp.general
VanguardLH[_2_]
external usenet poster
 
Posts: 10,881
Default pagefile.sys header

Bill Cunningham wrote:

VanguardLH wrote ...

Bill Cunningham wrote:

I wondered if anyone knows anything about pagefile.sys's header. I
wanted to clear or zero out the contents of the pagefile and of course I
need to leave the header intact.


Why? If you are going to erase the pagefile, why do you need to leave
behind a skeleton file with a header? If the pagefile is missing,
Windows will recreate it on startup.


But not in the same place it was. It's suppose dto be at the beginning
of the disk.


Was not aware that was part of your unseen criteria. Get a defragmenter
that can include the pagefile; e.g., Piriform Defraggler and
SysInternals Page Defrag.

For example, you can configure Windows to zero out (clear); see
https://support.microsoft.com/en-us/kb/314834. If you delete the
pagefile.sys file, it gets recreated on Windows startup.

I looked online and couldn't find anything. I did learn though you can
use the fsutil to encrypt pagefile.sys. I will have to fiddle with it
a bit.


The pagefile can only be cleared on shutdown to ensure there are no
processes that still have pages allocated to them. Clearing the
pagefile at any other time means removing data that current processes
may still need or destroying code that will cause the processes to
crash or worse misbehave. Similarly, the pagefile can only be defragged
during Windows startup before it starts to get used.


Well I was meaning cleaning it from another OS so it wouldn't be being
used. Aotherwise no of course you couldn't touch it. Maybe it's not worth
it.


You couldn't be sure about what to delete, so deleting the file would be
the recommended method of "clearing" it while it was quiescent (not yet
in use).

Why is zeroing out the file not sufficient (for your unspecified needs)?

What would be the advantage of encrypting the pagefile? The instance of
Windows that is running would still have to read and write to the
pagefile so forensics would still be able to dig into that file looking
for nasty tidbits or passwords.


I read it was extra security to encrypt the pagefile. idk.


Not from the instance of Windows where you chose to encrypt it. Perhaps
you should be looking at whole-disk encryption if you are concerned
about someone peeking in or using forensics on your computer. Any
encryption incurs overhead (for the decryption and re-encryption) so
your computer will be slower.

You don't get Bitlocker in any version of Windows XP but you can zero
the pagefile on shutdown (the clearing action will make shutdown take
longer) and you can use TrueCrypt for whole-disk encryption or just
create encrypted containers that load like drives.

TrueCrypt still works but its nebulous author(s) scattered when the FBI
sent them a "letter". Truecrypt's web page turned into a warrant canary
(https://en.wikipedia.org/wiki/Warrant_canary). The FBI's "national
security letter" legally bars the victim to reveal getting served with
such a letter, so those served may circumvent by issuing warrant
canaries to indicate what really happened. The TrueCrypt authors (who
were never known) crippled the latest version to read-only of existing
TrueCrypt containers. You need to get the prior version (7.1). You can
also do online searches on "whole disk encryption" if you want no one to
get at the contents of a drive. Bitlocker was Microsoft's corporate
oriented approach to protecting business computers when stolen.

Some whole-disk encryption programs are free, some are payware. PGP
Whole Disk Encryption got acquired by Symantec and renamed to Endpoint
Encryption. There's Sophos Safeguard and DriveCrypt. All of those are
payware. BestCrypt is not free except for its portable version
(http://www.jetico.com/products/free-...pt-traveller);
however, it does not have all the features of the non-crippled full
version plus it looks to only support containers, not whole-disk
encryption, and may only support "lite encryption" to create encrypted
containers.

If you don't like that the author(s) scattered and abandoned TrueCrypt
(for reasons that only be guessed), VeraCrypt is a fork of TrueCrypt.
Since TrueCrypt was open source, someone else decided to pick up the
program and continue supporting it. I haven't delved into VeraCrypt
since TrueCrypt is still usable. I only use TrueCrypt to use encrypted
containers (the file is encrypt, mounted as a drive, and the contents
decrypted to be accessible). As I recall, the usurpers of TrueCrypt
were based in a country outside the FBI's reach with their national
security letters and secret DOJ judges forcing a vendor to add a
backdoor to the encryption product. Although Veracrypt is hosted at
Codeplex.com (owned by Microsoft), they maintain a code repository
elsewhere to ensure the FBI and Microsoft don't interfere.
  #8  
Old November 1st 15, 03:10 AM posted to microsoft.public.windowsxp.general
mike[_10_]
external usenet poster
 
Posts: 1,073
Default pagefile.sys header

On 10/31/2015 7:36 PM, VanguardLH wrote:

Unless you know that the pagefile.sys file is at the beginning of the
disk (where is the fastest rotational speed of the disk), you should run
a defragger that includes the page file.


What are the advantages of a pagefile.sys???
I've run win7 with 2GB of RAM and without a pagefile
for months at a time.
Only time I ever got an out of memory error was when I tried
to run two concurrent instances of virtualbox.

Since I sometimes wanted to do that,
I put the pagefile back on the secondary partition.
It's slower, but if it's never used, does it matter?
At least the big waste of space is not on the boot partition.
What am I missing?
Inquiring minds want to know???



  #9  
Old November 1st 15, 05:30 AM posted to microsoft.public.windowsxp.general
VanguardLH[_2_]
external usenet poster
 
Posts: 10,881
Default pagefile.sys header

mike wrote:

VanguardLH wrote:

Unless you know that the pagefile.sys file is at the beginning of the
disk (where is the fastest rotational speed of the disk), you should
run a defragger that includes the page file.


What are the advantages of a pagefile.sys??? I've run win7 with 2GB
of RAM and without a pagefile for months at a time.


Depends on what you have loaded. I use Firefox (and have used Google
Chrome) and they can consume gobs of memory. I've used Sysinternals
Process Monitor to log events and it can use gobs of memory over time
(because it's recording all events despite I have a filter on just I
want to see). I have 8 GB of system RAM and just the other day I had
7.8 GB of it consumed (I don't recall how much pagefile was used). So I
could easily outstrip just 2 GB. Depends on how you use your computer.

Only time I ever got an out of memory error was when I tried to run
two concurrent instances of virtualbox.


As I recall, you can assign a fixed memory to a VM in VirtualBox so the
guest OS doesn't run out of memory. With just 2 GB, you have memory
consumed by Windows, your host OS processes, and each guest OS in a VM.
If I started using VMs again, just 2 would not suffice.

Since I sometimes wanted to do that, I put the pagefile back on the
secondary partition.


A segment of the pagefile that is in another partition on the SAME hard
disk as the OS partition where you also have a segment of pagefile will
not afford you any speed up. The conflict between read and writes to
the pagefile are device bound, so having multiple segments of the
pagefile on the SAME disk won't let you read and write to the pagefile
at the same time.

If you have multiple segments to the pagefile, each must be on a
different hard disk. Otherwise, you've wasted space in a partition on
the same hard disk as the partition for the OS where is a pagefile. If
you only have one hard disk, just use 1 segment for the pagefile and in
the OS partition.

At least the big waste of space is not on the boot partition.


Partition 1 on HDD-1 with a pagefile and partition 2 on the same HDD-1
will afford you not disconnection between parallelizing reads and writes
to the pagefile segments. The contention is disk bound.

Do you have 2 hard disks or only 1? If 2 HDDs then you can split up the
pagefile. If you only have 1 HDD then don't bother slicing up the
pagefile.
  #10  
Old November 1st 15, 12:33 PM posted to microsoft.public.windowsxp.general
mike[_10_]
external usenet poster
 
Posts: 1,073
Default pagefile.sys header

On 10/31/2015 10:30 PM, VanguardLH wrote:
mike wrote:

VanguardLH wrote:

Unless you know that the pagefile.sys file is at the beginning of the
disk (where is the fastest rotational speed of the disk), you should
run a defragger that includes the page file.


What are the advantages of a pagefile.sys??? I've run win7 with 2GB
of RAM and without a pagefile for months at a time.


Depends on what you have loaded. I use Firefox (and have used Google
Chrome) and they can consume gobs of memory. I've used Sysinternals
Process Monitor to log events and it can use gobs of memory over time
(because it's recording all events despite I have a filter on just I
want to see). I have 8 GB of system RAM and just the other day I had
7.8 GB of it consumed (I don't recall how much pagefile was used). So I
could easily outstrip just 2 GB. Depends on how you use your computer.

Only time I ever got an out of memory error was when I tried to run
two concurrent instances of virtualbox.


As I recall, you can assign a fixed memory to a VM in VirtualBox so the
guest OS doesn't run out of memory. With just 2 GB, you have memory
consumed by Windows, your host OS processes, and each guest OS in a VM.
If I started using VMs again, just 2 would not suffice.

Since I sometimes wanted to do that, I put the pagefile back on the
secondary partition.


A segment of the pagefile that is in another partition on the SAME hard
disk as the OS partition where you also have a segment of pagefile will
not afford you any speed up. The conflict between read and writes to
the pagefile are device bound, so having multiple segments of the
pagefile on the SAME disk won't let you read and write to the pagefile
at the same time.

If you have multiple segments to the pagefile, each must be on a
different hard disk. Otherwise, you've wasted space in a partition on
the same hard disk as the partition for the OS where is a pagefile. If
you only have one hard disk, just use 1 segment for the pagefile and in
the OS partition.

At least the big waste of space is not on the boot partition.


Partition 1 on HDD-1 with a pagefile and partition 2 on the same HDD-1
will afford you not disconnection between parallelizing reads and writes
to the pagefile segments. The contention is disk bound.

Do you have 2 hard disks or only 1? If 2 HDDs then you can split up the
pagefile. If you only have 1 HDD then don't bother slicing up the
pagefile.

I said nothing about slicing the pagefile. I took it off C: and put it
on D:. ONE drive.
The only reason it's there at all is in case I decide to use two
VMs again. It's not on the fastest part of the drive, but if it's
not used much, it shouldn't matter.
I put as little as possible on C: so I can image the partition
easily and quickly.

Bottom line is that if you don't have enough memory to do what you do,
more RAM is the solution. Speed of the pagefile is irrelevant if
it's not used.
  #11  
Old November 1st 15, 02:27 PM posted to microsoft.public.windowsxp.general
Ken Blake, MVP[_4_]
external usenet poster
 
Posts: 1,699
Default pagefile.sys header

On Sat, 31 Oct 2015 20:10:55 -0700, mike wrote:


What are the advantages of a pagefile.sys???
I've run win7 with 2GB of RAM and without a pagefile
for months at a time.
Only time I ever got an out of memory error was when I tried
to run two concurrent instances of virtualbox.

Since I sometimes wanted to do that,
I put the pagefile back on the secondary partition.
It's slower, but if it's never used, does it matter?
At least the big waste of space is not on the boot partition.
What am I missing?
Inquiring minds want to know???



1. If you don't have a page file, you can't use all the RAM you have.
That's because Windows preallocates virtual memory in anticipation of
a possible need for it, even though that allocated virtual memory may
never be used. Without a page file, that allocation has to be made in
real memory, thus tying up that memory and preventing it from being
used for any purpose.

2. There is never a benefit in not having a page file. If it isn't
needed, it won't be used. Don't confuse allocated memory with used
memory.


  #12  
Old November 1st 15, 07:04 PM posted to microsoft.public.windowsxp.general
VanguardLH[_2_]
external usenet poster
 
Posts: 10,881
Default pagefile.sys header

mike wrote:

On 10/31/2015 10:30 PM, VanguardLH wrote:
mike wrote:

VanguardLH wrote:

Unless you know that the pagefile.sys file is at the beginning of the
disk (where is the fastest rotational speed of the disk), you should
run a defragger that includes the page file.

What are the advantages of a pagefile.sys??? I've run win7 with 2GB
of RAM and without a pagefile for months at a time.


Depends on what you have loaded. I use Firefox (and have used Google
Chrome) and they can consume gobs of memory. I've used Sysinternals
Process Monitor to log events and it can use gobs of memory over time
(because it's recording all events despite I have a filter on just I
want to see). I have 8 GB of system RAM and just the other day I had
7.8 GB of it consumed (I don't recall how much pagefile was used). So I
could easily outstrip just 2 GB. Depends on how you use your computer.

Only time I ever got an out of memory error was when I tried to run
two concurrent instances of virtualbox.


As I recall, you can assign a fixed memory to a VM in VirtualBox so the
guest OS doesn't run out of memory. With just 2 GB, you have memory
consumed by Windows, your host OS processes, and each guest OS in a VM.
If I started using VMs again, just 2 would not suffice.

Since I sometimes wanted to do that, I put the pagefile back on the
secondary partition.


A segment of the pagefile that is in another partition on the SAME hard
disk as the OS partition where you also have a segment of pagefile will
not afford you any speed up. The conflict between read and writes to
the pagefile are device bound, so having multiple segments of the
pagefile on the SAME disk won't let you read and write to the pagefile
at the same time.

If you have multiple segments to the pagefile, each must be on a
different hard disk. Otherwise, you've wasted space in a partition on
the same hard disk as the partition for the OS where is a pagefile. If
you only have one hard disk, just use 1 segment for the pagefile and in
the OS partition.

At least the big waste of space is not on the boot partition.


Partition 1 on HDD-1 with a pagefile and partition 2 on the same HDD-1
will afford you not disconnection between parallelizing reads and writes
to the pagefile segments. The contention is disk bound.

Do you have 2 hard disks or only 1? If 2 HDDs then you can split up the
pagefile. If you only have 1 HDD then don't bother slicing up the
pagefile.

I said nothing about slicing the pagefile. I took it off C: and put it
on D:. ONE drive.


As mentioned, segmenting the pagefile is a per-device scheme. Moving it
around to any partition on the same disk won't provide any performance
boost.

Not having a pagefile is not recommended. Some programs require it.
Even Windows requires it. Not all processes must have all data in
memory at the same time. Apps may store data in the pagefile which is
not currently being accessed.

The only reason it's there at all is in case I decide to use two
VMs again. It's not on the fastest part of the drive, but if it's
not used much, it shouldn't matter.
I put as little as possible on C: so I can image the partition
easily and quickly.


Most imaging products exclude the pagefile, hibernate file, temp
folders, and other files or folders that are not considered necessary to
include in an image. In fact, to include that fluff, you have to
configure the imaging program to perform sector-by-sector backups.

Bottom line is that if you don't have enough memory to do what you do,
more RAM is the solution. Speed of the pagefile is irrelevant if
it's not used.


Not having a pagefile can slow Windows and apps. They expect the
availability of the pagefile to store data that is not currently inuse.
If the requests for pagefile space are rejected, they have to consume
more memory or run differently which usually means run slower. You
should have some pagefile space. Forcing what apps want to put in the
pagefile either into memory (to unnecessarily consume more memory than
it needs).

Windows is not the only controller paging out processes into the
pagefile. Apps can also request pagefile space. They expect it. Some
may not even run if there is no pagefile space available. Even if you
had 128 GB of system RAM, you still need a bit of pagefile space for
those processes that directly request it.

You only have 2GB of system RAM. Did you perform a minimal install of
Windows, disable unneeded services, eliminate startup programs, and run
only 1 application at a time? It only takes running Firefox with the
Adblock Plus add-on to end up consuming nearly 2 GB of memory on just
the firefox.exe process at some sites. If you run only 1 program at a
time (you don't multitask) then 2GB with no or little pagefile space
might work for you. For others running multiple programs, their
programs will start to crash usually with an initialization error (the
app couldn't get any of the pagefile space that it requested). Having
no pagefile or too small a pagefile is okay when you run just 1 or 2
apps and those are not memory hogs (immmediately or over time).

When you load Word or whatever editor you use capable of loading huge
documents, do you really want to consume all your system RAM by forcing
the loading of the huge document into system RAM? You aren't accessing
all that document at once so buffering allows viewing a huge document
without severely slowing down the application due to thrashing.

http://lifehacker.com/5426041/unders...dnt-disable-it
http://www.howtogeek.com/126430/htg-...ou-disable-it/

If you are so tight on free disk space that eliminating or overly
undersizing the pagefile is your cure then you already know the real
cure is to get a bigger hard disk, or start removing all those data
files that you can put on removable media (optical discs, USB drives,
push to online storage if no sensitive data) along with uninstalling all
those nifty programs that you ended up never using.
  #13  
Old November 1st 15, 09:45 PM posted to microsoft.public.windowsxp.general
Micky
external usenet poster
 
Posts: 1,528
Default pagefile.sys header

[Default] On Sun, 1 Nov 2015 17:16:14 -0500, in
microsoft.public.windowsxp.general "Bill Cunningham"
wrote:


"mike" wrote in message
...

What are the advantages of a pagefile.sys???
I've run win7 with 2GB of RAM and without a pagefile
for months at a time.
Only time I ever got an out of memory error was when I tried
to run two concurrent instances of virtualbox.

Since I sometimes wanted to do that,
I put the pagefile back on the secondary partition.
It's slower, but if it's never used, does it matter?
At least the big waste of space is not on the boot partition.
What am I missing?
Inquiring minds want to know???


You know that's a good question. At one time a page or swap file or
partition was a good thing for swapping in and out memory pages. I don't use
a swap file or partition on my linux and it's fine. I am thinking about not
using one on windows. They're not used as much as they were at one time by
the OS. I don't know if it's more memory space


That certainly makes a big difference. IIRC my first computer had
10megs of memory. My current one has 4000 times as much, but the
letters I write, the pictures I look at, and most other things haven't
gotten bigger. Videos might be 4000 times as big as anything I
looked at before, but iiuc streaming video files are marked for
deletion soon after I've watched that part of the video, and
non-streaming rely on the swapfile

I suppose many such non-streaming applications could keep going to the
original HDD location to bring into RAM the next few minutes of video,
but do any programs do that?

or more efficancy in meory
management


I'm in over my head here but doesn't more efficiency in memory
management equate to better use of the swapfile? For example, iiuc
now most programs read ahead, so that while you're reading page 21 to
25 of the file, the program foresees that you will soon need page 26
to 30, or maybe even 31 to 35, and in background it gets it from the
swapfile to RAM so that it's ready when you get there, and even if you
page ahead.

What kinds of recenty added efficiency in memory management would not
need the swapfile?

or want. Maybe some one else might be better able to answer your
question on that.

Bill

  #14  
Old November 1st 15, 09:50 PM posted to microsoft.public.windowsxp.general
Micky
external usenet poster
 
Posts: 1,528
Default pagefile.sys header

[Default] On Sun, 1 Nov 2015 17:16:14 -0500, in
microsoft.public.windowsxp.general "Bill Cunningham"
wrote:


Bill, are you unaffected by the return to Standard Time? Or maybe
you're affected but havent' changed your computer clock?

Because I just replied to you and yet it sorted in front of you, and I
notice your time here is 5:16, which is east of the eastern time zone.
Perhaps you're in Newfundland (sp?) or Prince Edward Island?

Although we both show -0500 for the time zone, and Agent is supposed
to convert times showing in the message list to my local time anyhow.
I'm confused.



"mike" wrote in message
...

What are the advantages of a pagefile.sys???
I've run win7 with 2GB of RAM and without a pagefile
for months at a time.
Only time I ever got an out of memory error was when I tried
to run two concurrent instances of virtualbox.

Since I sometimes wanted to do that,
I put the pagefile back on the secondary partition.
It's slower, but if it's never used, does it matter?
At least the big waste of space is not on the boot partition.
What am I missing?
Inquiring minds want to know???


You know that's a good question. At one time a page or swap file or
partition was a good thing for swapping in and out memory pages. I don't use
a swap file or partition on my linux and it's fine. I am thinking about not
using one on windows. They're not used as much as they were at one time by
the OS. I don't know if it's more memory space or more efficancy in meory
management or want. Maybe some one else might be better able to answer your
question on that.

Bill

  #15  
Old November 1st 15, 10:16 PM posted to microsoft.public.windowsxp.general
Bill Cunningham[_2_]
external usenet poster
 
Posts: 441
Default pagefile.sys header


"mike" wrote in message
...

What are the advantages of a pagefile.sys???
I've run win7 with 2GB of RAM and without a pagefile
for months at a time.
Only time I ever got an out of memory error was when I tried
to run two concurrent instances of virtualbox.

Since I sometimes wanted to do that,
I put the pagefile back on the secondary partition.
It's slower, but if it's never used, does it matter?
At least the big waste of space is not on the boot partition.
What am I missing?
Inquiring minds want to know???


You know that's a good question. At one time a page or swap file or
partition was a good thing for swapping in and out memory pages. I don't use
a swap file or partition on my linux and it's fine. I am thinking about not
using one on windows. They're not used as much as they were at one time by
the OS. I don't know if it's more memory space or more efficancy in meory
management or want. Maybe some one else might be better able to answer your
question on that.

Bill


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off






All times are GMT +1. The time now is 09:01 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PCbanter.
The comments are property of their posters.