Advertisement
akhfa

Add SWAP Linux

Aug 21st, 2015
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.20 KB | None | 0 0
  1. #!/bin/bash
  2. #http://stackoverflow.com/questions/18389612/make-exits-with-error-2-when-trying-to-install-gcc-4-8-1
  3. SWAP=/tmp/swap
  4. dd if=/dev/zero of=$SWAP bs=1M count=500
  5. mkswap $SWAP
  6. sudo swapon $SWAP
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement