Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
752 views

C++ / Linux - How to prevent paging for one program / process?

I don't know if SO or SF is the right place for that kind of question but I think it is something you could achieve with code. I have a program that requires much memory, like 2/3 of all the physical ...
6
votes
2answers
1k views

Change Vim swap/backup/undo file name

Is it possible to change the way Vim names its swap/backup/undo files? To avoid clutter, I've set options in my ~/.vimrc to dump these files in ~/.vim/tmp/{swap,backup,undo}; however, as I routinely ...
3
votes
2answers
538 views

What are the exact conditions based on which Linux swaps process(s) memory from RAM to a swap file?

My server has 8Gigs of RAM and 8Gigs configured for swap file. I have memory intensive apps running. These apps have peak loads during which we find swap usage increase. Approximately 1 GIG of swap is ...
1
vote
3answers
130 views

Removing all swap files?

Many programs have created a huge amount of swap files. They annoy me, because some of them contain sensitive information. How should I deal with them? Is this command a good idea: find . -iname ...
0
votes
1answer
103 views

Moving memory in memory mapped swap file

I'm trying to set up a swap file for bitmaps of different sizes by using the MappedByteBuffer to memory map the file. I want to be able to move memory within this file, so maybe two sub-questions: ...
0
votes
1answer
175 views

Swap related memory problem in Ubuntu

When I run a top and get it to show swap usage, I get the following output. However, I have disabled swap with swapoff -a prior to starting firefox. What is shown in the SWAP field here then? When I ...
0
votes
2answers
340 views

How to find out swap space usage on windows

I want to monitore swap space usage on windows 2003 server. If the usage is over 80% for 10 minutes, an alarm will be generated. There are lot of tools for RAM, but how about swap usage? How do I ...
0
votes
2answers
416 views

How to change the folder path for swp files in Vim

I'm working at a project on a remote server. I don't want to have the swap files on the server. I would like all swap files for Vim (and, of course, gVim) to be saved on the specified directory. ...
0
votes
6answers
955 views

How to use virtual memory (swap in linux file system ) in java web programming

I work in java web application . In some section i use very huge tree variable that save and persist in memory (RAM) . Can i migrate this to virtual memory (swap) . note : huge tree consist name and ...
0
votes
4answers
153 views

Windows Stalls When My Program Uses Swapfile

I am running a user mode program on normal priority. My program is searching an NP problem, and as a result, uses up a lot of memory which eventually ends up in the swap file. Then my mouse freezes ...