<div class="gmail_quote">2009/7/3 MontyRee <span dir="ltr"><<a href="mailto:chulmin2@hotmail.com">chulmin2@hotmail.com</a>></span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">




<div>
Hello, all.<br>
 <br>
I know the function of the swap and can make swap partion or file. <br>
 <br>
But, if there is no swap partion at system, what would be happen?<br>
that makes the system unstable or not?<br>
 <br>
I have one system that has no swap, but there was no problem until now.<br></div></blockquote></div><br>Hate giving this answer, but "it depends."<br><br>You *can* run a system without page space, but you should really know what you're doing before you do this. It can work for types of workloads, but can get you into trouble in many situations.<br>
<br>If you do run without page space, you should configure the kernel overcommit options. You should also configure your application ulimits so that they behave more predictably in case they cannot allocate memory. You should also verify that your applications can properly handle a failed memory request.<br>
<br>To your question:  For a well-known application, running without page space can make it more reliable *if* (and a big IF) all other applications are predictable.  For example, say you're running you're well behaved application... Another process suddenly starts consuming memory. Your application then tries to allocate some memory. It cannot, so it crashes.  <br>
<br>There are a ton of threads about how large the page space should be, given modern multi-gigabyte RAM spaces. There are threads about whether a page file or page volume is better.  What's best will depend entirely on your workload and requirements :)<br>
<br>As your post demonstrates, a page-less system can run fine. The bigger your RAM space, the less likely you are to run into issues.   <br>