Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Problem

You may want/need to create and enable a swap file on your Linux machine (or server).  For example, on some AWS EC2 instances you don't get ephemeral (temporary) storage disks that can be used for swap, so you might want to create a swap file on the main EBS volume to alleviate potential memory issues.

Solution

You can create a swap file on your Linux server via a terminal.  Note, you'll need sudo access for this.

...

Code Block
languagebash
sudo dd if=/dev/zero of=/var/swap.0 bs=1M count=8120
sudo mkswap /var/swap.0
sudo chmod 600 /var/swap.0
sudo swapon /var/swap.0

Making swap persistent

Doing the above will simply enable swap.  After a server reboot swap won't be enabled.  Do the following to make it persistent:

...

Code Block
languagebash
sudo mount -a

References

  1. https://stackoverflow.com/questions/17173972/how-do-you-add-swap-to-an-ec2-instance

Content by Label
showLabelsfalse
max5
spacesTKB
showSpacefalse
sortmodified
reversetrue
typepage
cqllabel in ("swap","ec2") and type = "page" and space = "TKB"
labelsec2 swap

...