[CentOS 7系列]swap空间扩容

前端之家收集整理的这篇文章主要介绍了[CentOS 7系列]swap空间扩容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

记得安装操作系统的时候,在分配磁盘空间环节,我们分配了swap空间。默认设置swap空间是物理内存的2倍大小。那什么是swap呢?所谓的swap,类似于Windows的虚拟内存,就是当内存不足的时候,把一部分硬盘空间虚拟成内存使用,将内存中暂时不用的数据存到硬盘的交换空间,腾出内存来让别的程序运行,从而解决内存容量不足的情况。

当我们的服务器资源不够的时候,我们会增加内存扩展性能。那swap空间是否也能扩容呢?当然是可以的。下面将给出扩容的方法

1、创建空间

[root@server02~]#ddif=/dev/zeroof=/tmp/newdiskbs=1Mcount=100
记录了100+0的读入
记录了100+0的写出
104857600字节(105MB)已复制,1.56131秒,67.2MB/秒
[root@server02~]#du-sh/tmp/newdisk
100M	/tmp/newdisk

2、格式化

[root@server02~]#mkswap-f/tmp/newdisk
正在设置交换空间版本1,大小=102396KiB
无标签,UUID=d97d85bc-5665-4f7d-a721-cc305b9425d3
[root@server02~]#free-m
totalusedfreesharedbuff/cacheavailable
Mem:9841136196251701
Swap:204702047

3、启动

[root@server02~]#swapon/tmp/newdisk
swapon:/tmp/newdisk:不安全的权限0644,建议使用0600。
[root@server02~]#free-m
totalusedfreesharedbuff/cacheavailable
Mem:9841136196252701
Swap:214702147
[root@server02~]#chmod0600/tmp/newdisk


如果不需要这个swap空间了,也可以解除。

[root@server02~]#swapoff/tmp/newdisk
[root@server02~]#free-m
totalusedfreesharedbuff/cacheavailable
Mem:9841136196252701
Swap:204702047
[root@server02~]#rm-f/tmp/newdisk
原文链接:https://www.f2er.com/centos/377152.html

猜你在找的CentOS相关文章