Skip to content

Instantly share code, notes, and snippets.

@ErFUN-KH
Last active March 19, 2023 18:50
Show Gist options
  • Save ErFUN-KH/a8e95d7cf15e40d752b49a532a80d9ef to your computer and use it in GitHub Desktop.
Save ErFUN-KH/a8e95d7cf15e40d752b49a532a80d9ef to your computer and use it in GitHub Desktop.
Create 4GB swap memory
#!/bin/bash
touch /var/swap.img && \
chmod 600 /var/swap.img && \
dd if=/dev/zero of=/var/swap.img bs=1024k count=4000 && \
mkswap /var/swap.img && \
swapon /var/swap.img && \
echo "/var/swap.img none swap sw 0 0" >> /etc/fstab && \
ulimit -n 51200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment