Ubuntu Pastebin

Paste from ogra at Thu, 31 Aug 2017 14:55:16 +0000

Download as text
1
2
3
4
5
6
7
create_swapfile() {
  local FILE=$1
  local SIZE=$2
  fallocate -l $((1024*1024*SIZE)) "$FILE"
  mkswap "$FILE" >/dev/null 2>&1
  chmod 0600 "$FILE"
}
Download as text