作者:手机用户2502892641 | 来源:互联网 | 2023-08-14 17:10
首先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卸载