centos7 add virtual memory

#!/bin/bash
#by fuqiang
#2018-11-29

fallocate -l 4G /home/swapfile

ls -lh /home/swapfile

chmod 600 /home/swapfile

mkswap /home/swapfile

swapon /home/swapfile

swapon -s

free -m 

 

Guess you like

Origin blog.csdn.net/kevinsingapore/article/details/91432652