Skip to content

Instantly share code, notes, and snippets.

@tkhr-ssk
Created December 15, 2015 13:52
Show Gist options
  • Save tkhr-ssk/3ae3e2c542ab8fd4f7e5 to your computer and use it in GitHub Desktop.
Save tkhr-ssk/3ae3e2c542ab8fd4f7e5 to your computer and use it in GitHub Desktop.
sudo fallocate -l 1G /swap.img
sudo chmod 600 /swap.img
sudo mkswap /swap.img
sudo swapon /swap.img
#確認
swapon -s
free -h
#再起動時有効化
sudo sh -c 'echo "/swap.img none swap sw 0 0" >> /etc/fstab'
- Azure仮想マシンへのSwap領域の割り当て
http://qiita.com/unosk/items/984b336a292fc1dcf03c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment