Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
22 views

TLB access in SMT processors

In SMT (simultaneous multithreading) processors which threads share the TLB, how does TLB differentiate one thread's access from the other one? Each thread has its own set of pages loaded into memory, ...
0
votes
1answer
702 views

Is there an alternative memory allocator that uses separate swapfile?

Is there alternative allocator that can be LD_PRELOADed into a process, overrides "malloc", "calloc", etc. and allocates things using it's own swap files (mmaped to files instead of MAP_ANONYMOUS)? I ...
2
votes
2answers
55 views

Virtual Memory is confusing me

My computer is like completely out of virtual memory. Granted I'm multitasking quite a bit, but I have 4gb of RAM which I just yesterday upgraded to from 2gb. On the performance tab of task manager ...
0
votes
1answer
62 views

Will a swap file not slow down the system so much if a Solid State Drive is used?

Usually when RAM runs out, and a swap file is used, then the system can become really slow. But if the notebook or desktop is using SSD already, will a swap file be such a bad idea any more? Can ...
0
votes
1answer
45 views

Does PF Delta include soft faults?

Task manager and Process Explorer from SysInternals are reporting ~3000 in the PF Delta column While Resource Monitor only report ~5 Hard Faults / Sec I've been told they are the same, so why they ...
0
votes
1answer
88 views

Virtual Memory and SSDs [closed]

Possible Duplicate: Virtual Memory and SSD On a Windows 7 system, isn't it more beneficial to leave the page file ON the SSD versus moving it over to a HDD? I've heard some say if you move ...
1
vote
3answers
69 views

Will allocating too much virtual memory have any negative effect on your laptop?

Like will it slow down your boot-up? Also what problems will arise if you allocate more hard drive memory for virtual memory than what is available, will that cause any issues?
4
votes
4answers
561 views

Virtual Memory and SSD

While studying for the A+ Exam I was reading about SSD's and I thought to myself that if you had a mobo with a low RAM limit you could use a dedicated SSD purely for Virtual RAM. I looked up some ...
-1
votes
1answer
72 views

Why do we need Virtual Memory? [closed]

I was reading about Virtual Memory and I came to know that it serves as a backup memory for the Main Memory. I am failing to understand the advantage. Why would you make a backup from a memory ...
1
vote
1answer
72 views

Is virtual memory related to virtual address space of a process?

I have understood that Paging is a memory management technique which allows computer to bring data from secondary storage to main memory for executing process. It gives an impression to process that ...
1
vote
0answers
24 views

High latency when writing big files. How to prevent more-than-second page faults when quickly filling up FS?

When I do cat /dev/zero > /some/file all processes tends to become slow (even non-IO related). latencytop shows "Page Faults" are more than 2 seconds. Swap is not used. Adjusting vm.dirty* does ...
1
vote
1answer
79 views

Linux Virtual Memory/Swap isn't being used

I think my virtual memory is not configured correctly on my MintLinux machine. I opened up a new IDE, IntelliJ IDEA, and my whole system appeared to freeze. I tried to TTL to the console but that did ...
1
vote
2answers
95 views

What are the benefits of Virtual Memory?

So I've been reading up on virtual memory and it all seems pretty straight-forward and practical. However, I'm choking on one major concept. If virtual memory is stored in main memory, then why even ...
8
votes
2answers
226 views

Why is my swap used even if my physical RAM isn't full?

Sometimes I have observed in Ubuntu's System Manager that without the physical RAM being used completely, the swap memory starts getting used. Why is it so?
2
votes
2answers
69 views

Virtual memory vs. Virtual address space

I know virtual memory is a paging file that computer uses to store a part of RAM on hard disk for a running process. But how different is Virtual address space? is it the RAM or hard disk or both?
1
vote
3answers
98 views

Will increasing swap partition size increase the memory that can be used by a program?

I have a program that requires a lot of memory. So much that the malloc fails as the system goes out of memory. I don't care if the overhead for swapping pages in and out of the disk is too high - I ...
3
votes
2answers
117 views

How did UNIX multitasking work without virtual memory? [closed]

How did UNIX multitasking work without virtual memory? Wouldn't applications still need their own memory space? Or did applications have to know that now all visible memory spaced is theirs? (Note to ...
0
votes
2answers
781 views

what differences and relations are between logical and virtual memory?

I was wondering what differences and relations are between logical and virtual memory? How do their purposes differ? Are the relations and differences the same for logical and virtual addresses?
2
votes
1answer
121 views

Windows 7 virtual memory size

I have computer with 4GB RAM running windows 7 64 bit edition. I have set paging file size 8000MB( both initial size and maximum size) according this document, but after restart I'm seeing only 4GB ...
1
vote
2answers
92 views

Is it true to say that once I quit a process, the RAM used is immediately reclaimed?

I'm running Windows Vista Home Premium SP2 32-bit. Is it true to say that once I quit a process (Task Manager > Processes tab), the RAM used is immediately reclaimed?
0
votes
2answers
121 views

On Linux there is a 3GB/1GB kernel option. How do I do this in Windows 7 32-bit?

I have 4GB RAM installed. PAE is off. How do I tell the Windows 7 32-bit kernel to allocate 3GB virtual paging area to user mode and only 1GB to kernel space?
0
votes
1answer
20 views

Why Does my VM Keep Vanishing?

I have a Windows XP SP3 Professional OS running on a Dell Optiplex GX270. When I'm working with Visual Studio Express (a programming IDE), Google SketchUp, or any other resource-heavy program, my ...
0
votes
0answers
36 views

Good resources to learn about paging [closed]

I am just trying to learn about paging for a module I am studying in college. My course notes are here - http://www.cs.ucc.ie/~grigoras/CS2506/Lecture_6.pdf - starting from page 7, but I am finding it ...
1
vote
2answers
173 views

ulimit broke my server

I ran "ulimit -v 75" to get SBCL working, and now nothing will run on my server. $ sbcl Killed $ vi Killed $ man ulimit Killed $ ulimit -v 256 -bash: ulimit: virtual memory: cannot modify limit: ...
0
votes
1answer
71 views

Is that true that Windows can eventually address executable files as if they were parts of virtual memory?

I've once read somewhere that Windows can treat programs' executables and DLL files as parts of swap file rather than duplicating their content into pagefile.sys when swapping them out of physical ...
2
votes
2answers
4k views

What are the dangers of manually setting IncreaseUserVA?

I run visual studio 2010 on a 32bit system and regularly run into issues with running out of virtual memory so I can no longer do things like copy / paste in VS. I checked out a few options and the ...
0
votes
1answer
47 views

Virtual memory paging

If the page size is 512 bytes and the paging table has 64 elements, each 11 bit. Howmany bits is the physical address then? - What does '11 bit' mean in this case? Is it the number of the frame (2^11) ...
9
votes
2answers
405 views

On Mac OS X how can I see how much memory is being used by what programs?

On Mac OS X how can I see how much memory is being used by what programs?
1
vote
2answers
280 views

Killing Windows 7 process which is using memory - look at Commit or Private?

I'm trying to clear up memory usage on my windows 7 with 2 GB RAM Oracle.exe never shows up in the top processes, but the Resource Monitor shows it uses 637 Mb of commit (virtual memory) v 12Mb of ...
-3
votes
1answer
84 views

What is Virtual Memory? [closed]

I would like to know what you guys think Virtual Memory is . Also Could you explain to me how the development of Virtual Memory has impacted operating systems and the personal computer.
0
votes
1answer
117 views

Mouse disconnecting and programs not closing and more

My mouse keeps disconnecting and reconnecting as well as my usb modem. My programs don't always close when i tell them to and even when I use task manager. T hey are also using all my RAM for a lot ...
0
votes
1answer
3k views

Need for page file with 12 GB RAM [closed]

Possible Duplicate: Windows 7 pagefile size with large RAM and SSD Hi, I recently got my new PC with 12 GB RAM (running Windows 7 64bit). The default installation suggests a 12 GB page ...
0
votes
2answers
230 views

sizes of RAM, of virtual memory and of swap for 32-bit OS

If I understand correctly, a 32-bit OS (Ubuntu) can only address 4GiB memory, so RAM with size larger than 4Gib will only be used 4Gib of itself and the rest is a waste. I am now confused about this ...
2
votes
4answers
2k views

Why is my browser using so much memory?

I've recently had problems with Firefox running very slowly when I have many tabs open; say 20 tabs. My whole system would slow down. I decided to give Google Chrome a try, and it started out fine. ...
2
votes
1answer
157 views

How much virtual memory? [closed]

Possible Duplicate: why do we need to set swap space as twice big as our physical memory? I have been working on computers for quite some time now and realize the importance of virtual ...
1
vote
4answers
497 views

Force a process to run in virtual memory? Ubuntu

I am running a series of tests for an implementation of a remote pager that sends page faults to other computers in a network. Long story short, I was wondering if there is an easy way to force a ...
0
votes
3answers
3k views

Can Windows 7 pagefile be turned off if 4GB of hi-speed RAM present? [closed]

Possible Duplicate: Any reason not to disable the Windows pagefile given enough physical RAM? I believe that there is enough of memory for everything used at the moment to be stored and ...
4
votes
1answer
139 views

Why RAM usage is much bigger than Virtual Memory usage

I am running some tests on a very powerful machine ( 24GB RAM, Window 2008 64bit ) I checked my task manager: Physical memory: 98% ( RAM is 24GB ) But the totally "Memory(Private working set)" usage ...
0
votes
1answer
319 views

System thinks it is swapping, but isn't

I have a linux server (Ubuntu 10.04) which has no swap space (swapon -l reports nothing, 0kb swap memory listed in /proc/meminfo). The beginning of the output of top (sorted by %mem) is reproduced ...
4
votes
1answer
1k views

Linux overcommit memory

I've been looking into memory overcommitting in Linux using /proc/sys/vm/overcommit_memory, and I've read a few articles which don't say the same thing. This doc, under the heading "Going in the ...
1
vote
0answers
960 views

16GB RAM. Is it OK to turn off virtual memory? [closed]

Possible Duplicate: Do I still need to use virtual memory? I have a windows 7 64 bit machine with 16GB. Memory usage will never reach anywhere near that. Therefore I don't see why Windows ...
0
votes
1answer
266 views

Scheduled Task Priority and Paging problems

I just scheduled a task in my Windows 7, and I have 2 problems with it: The process starting with Below Normal priority. Even after manually changing the priority to Normal (via Task Manager), the ...
2
votes
3answers
450 views

Process Explorer not showing the biggest user of my RAM

Does anyone know why Process Explorer might show these weird values for memory usage of my Virtual Box instance? Here are the real numbers: But here's what Process Explorer is showing: So the ...
3
votes
2answers
354 views

How to increase Hard-Disk LifeSpan?

1) What factors affect the life of a hard disk? 2) Does frequent writing on the disk reduce its life? 3) What is the average life span of a hard disk under normal condition? 4) Does less writing ...
0
votes
1answer
367 views

Can I disable virtual memory? [closed]

Possible Duplicate: Do I still need to use virtual memory? Suppose I have a system with 8 gigs of RAM. I have used systems with less than that including physical RAM and virtual memory. ...
2
votes
1answer
66 views

When a process isn't using virtual memory, does it have the kernel or user memory in RAM?

A process can use upto 4 GB of virtual memory (including user and kernel) but when it's not using virtual memory does it have the kernel and user memory in ram?
2
votes
2answers
378 views

Make JVM use Virtual Memory only after using 1GB of RAM

Id like to run a memory intensive java program and limit how much physical memory it can use. Is possible to configure the JVM to use no more than 1gb of RAM, and use only virtual memory after it ...
1
vote
0answers
134 views

improving swapping strategy

I'm finding linux's swapping strategy to be somewhat less than ideal. In general I have a ton of processes running, maybe 40 or more big ones, and only end up using a few regularly. Nonetheless, I ...
0
votes
2answers
229 views

What is commit charge?

Wikipedia says In computing, commit charge is a term used in Microsoft Windows operating systems to describe the total amount of virtual address space for which the backing store is the ...
1
vote
1answer
317 views

Identify an instance of Google Chrome by PID

While working I generally need around 40 windows open at a time and run 100-200 processes. When memory constraints become an issue, I start picking off the processes that are the most resource ...

1 2