查看当前swap大小 [root@localhost ~]# free -m total used free shared buff/cache available Mem: 9833 622 8719 9 491 8916 Swap: 6143 0 6143 增加交换分区文件及大小 [root@localhost /]# dd if=/dev/zeroof=/home/swap bs=1M count=2048 记录了2048+0 的读入 记录了2048+0 的写出 2147483648字节(2.1 GB)已复制,19.1197 秒,112 MB/秒 设置交换文件 [root@localhost /]# mkswap /home/swap 正在设置交换空间版本 1,大小 = 2097148 KiB 无标签,UUID=f2000cc5-de9d-478b-b569-bdf2d47c849c 启动交换分区文件 [root@localhost /]# swapon /home/swap swapon: /home/swap:不安全的权限 0644,建议使用 0600。 检验增加后的swap分区大小 [root@localhost /]# free -m total used free shared buff/cache available Mem: 9833 713 3640 9 5479 8763 Swap: 8191 0 8191 编辑/etc/fstab文件: root@localhost /]# vi /etc/fstab # # /etc/fstab # Created by anaconda on Tue Apr 3 11:34:24 2018 # # Accessible filesystems, by reference, aremaintained under '/dev/disk' # See man pages fstab(5), findfs(8),mount(8) and/or blkid(8) for more info # /dev/mapper/rhel-root / xfs defaults 0 0 UUID=8847f0b8-ed0c-4c21-ac0e-7646f44ee448/boot xfs defaults 0 0 /dev/mapper/rhel-swap swap swap defaults 0 0 /home/swap swap swap defaults 0 0 ~ ~ ~ [root@localhost /]# reboot Last login: Wed Aug 29 11:22:42 2018 from192.168.0.110 [root@localhost ~]# free -m total used free shared buff/cache available Mem: 9833 341 9192 8 299 9212 Swap: 8191 0 8191 [root@localhost ~]#
|