Linux to increase the virtual memory method

例如增加2G虚拟内存,操作如下:

[root@gamedb ~]# free -m
[root@gamedb tmp]# dd if=/dev/zero of=/tmp/big_swap bs=1024 count=2000000
[root@gamedb tmp]# du -sh /tmp/big_swap
[root@gamedb tmp]# mkswap /tmp/big_swap
[root@gamedb tmp]# swapon /tmp/big_swap
[root@gamedb tmp]# free –m

Guess you like

Origin www.cnblogs.com/kinwing/p/11104973.html