Linux下添加删除swap空间

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下添加删除swap空间相关的知识,希望对你有一定的参考价值。

#需求

因系统内存资源紧张急需添加10G swap 交换空间


#创建存放swap文件的目录

[[email protected] ~]# mkdir /swap

#创建一个10G空文件

[[email protected] ~]# dd if=/dev/zero of=/swap/swap bs=1024M count=10
10+0 records in
10+0 records out
10737418240 bytes (11 GB) copied, 20.745 s, 518 MB/s


#格式化为交换空间

[[email protected] ~]# mkswap /swap/swap
mkswap: /swap/swap: warning: don‘t erase bootbits sectors
        on whole disk. Use -f to force.
Setting up swapspace version 1, size = 10485756 KiB
no label, UUID=844fb94b-c5e5-4d55-a091-c310b9e5e289


#查看系统内存

[[email protected]_37_0_centos ryzc]# free -m
             total       used       free     shared    buffers     cached
Mem:         24028      22842       1185          0        149       3530
-/+ buffers/cache:      19162       4866
Swap:         2047       1127        920


#添加交换空间

[[email protected] ~]# swapon /swap/swap


#再次查看系统内存

[[email protected] ~]# free -m
             total       used       free     shared    buffers     cached
Mem:         24028      22888       1139          0        150       3563
-/+ buffers/cache:      19174       4853
Swap:        12287       1125      11162


#放到开机启动

[[email protected] ~]# tail -1 /etc/rc.local 
swapon /swap/swap


#删除swap

[[email protected] ~]# swapoff /swap/swap 
[[email protected] ~]# rm -rf /swap/swap

本文出自 “wsyht的博客” 博客,请务必保留此出处http://wsyht2015.blog.51cto.com/9014030/1792692

以上是关于Linux下添加删除swap空间的主要内容,如果未能解决你的问题,请参考以下文章

CentOS7下swap分区创建(添加),删除以及相关配置

Linux系统下创建swap交换分区

Linux下硬盘分区:根分区(/)交换分区(/swap)和/boot分区

Linux添加swap分区

|16.CentOS/Linux 添加SWAP分区

阿里云服务器linux主机如何添加swap分区