热门标签 | HotTags
当前位置:  开发笔记 > 后端 > 正文

centOS7.9加大swap分区

首先free-h命令查看swap大小[root@xiaohanshen~]#free-htotalusedfreesharedbuffcacheavailableMem:972M1

首先free -h命令查看swap大小

[root@xiaohanshen ~]# free -h
total used free shared buff
/cache available
Mem: 972M 139M 722M
7.6M 110M 704M
Swap:
2.0G 0B 2.0G

用dd命令创建一个1G的文件

[root@xiaohanshen ~]# dd if=/dev/zero of=/tmp/1G bs=1M count=1000
1000+0 records in
1000+0 records out
1048576000 bytes (1.0 GB) copied, 1.22931 s, 853 MB/s

然后用mkswap命令类似格式化一下/tmp/1G这个文件

[root@xiaohanshen ~]# mkswap /tmp/1G
Setting up swapspace version
1, size = 1023996 KiB
no label, UUID
=48c6ecb2-999b-4691-9eca-939814d8b8f7

用swapon命令挂载 /tmp/1G

[root@xiaohanshen ~]# swapon /tmp/1G
swapon:
/tmp/1G: insecure permissions 0644, 0600 suggested.

再用free -h查看swap,2.0G变成3.0G了

 

 再把加入/etc/fstab文件永久生效

[root@xiaohanshen ~]# vim /etc/fstab

 修改完保存即可

用swapon -s  查看swap组成情况

用swapoff 可将增加的swap卸载



推荐阅读
author-avatar
手机用户2502892641
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有