使用swap扩展内存
Posted whig
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用swap扩展内存相关的知识,希望对你有一定的参考价值。
当系统在内存不够用的时,新建一个swap文件,这个文件可以把内存中暂时不用的传输到对应的swap文件上,相当于扩展了内存的大小,具体使用方法如下:
swap文件可以自己选择放在哪里,自己新建一个对应的文件即可。
[[email protected] byrd]# free -m
total used free shared buffers cached
Mem: 512 108 403 0 0 28
-/+ buffers/cache: 79 432
Swap: 0 0 0
[[email protected] ~]# mkdir /opt/images/
[[email protected] ~]# rm -rf /opt/images/swap
[[email protected] ~]# dd if=/dev/zero of=/opt/images/swap bs=1024 count=2048000
2048000+0 records in
2048000+0 records out
2097152000 bytes (2.1 GB) copied, 82.7509 s, 25.3 MB/s
[[email protected] ~]# mkswap /opt/images/swap
mkswap: /opt/images/swap: warning: don‘t erase bootbits sectors
on whole disk. Use -f to force.
Setting up swapspace version 1, size = 2047996 KiB
no label, UUID=59daeabb-d0c5-46b6-bf52-465e6b05eb0b
[[email protected] mnt]# swapon /opt/images/swap
[[email protected] mnt]# free -m
total used free shared buffers cached
Mem: 488 481 7 0 6 417
-/+ buffers/cache: 57 431
Swap: 999 0 999
使用完毕后可以关掉swap:
[[email protected] mnt]# swapoff swap
[[email protected] mnt]# rm -f /opt/images/swap
当然也可以不关。
以上是关于使用swap扩展内存的主要内容,如果未能解决你的问题,请参考以下文章