Currently there is no swap on this server! it tweaks me a little that this VPS didnt come with swap by default but i think they do that for marketing.<br><br><div class="gmail_quote">On Sat, Oct 29, 2011 at 7:13 PM, Chris Frey <span dir="ltr"><<a href="mailto:cdfrey@foursquare.net">cdfrey@foursquare.net</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div id=":1y1">You can turn swap partitions off and on at will with the swapon/swapoff<br>
commands.<br>
<br>
You can also use a plain old file as swap, in a pinch, as root:<br>
<br>
        dd if=/dev/zero of=swapfile bs=1024000 count=512<br>
        mkswap ./swapfile<br>
        swapon ./swapfile<br>
<br>
So you could create this as a temporary swapfile, then turn off the main one,<br>
and then go about doing whatever resizing you need.<br>
<br>
Once this is changed, don't forget to update your /etc/fstab config for<br>
the new swap location.<br>
<br>
- Chris</div></blockquote></div><br>