sh [linux:mkswap]在linux上创建交换内存。 #linux

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh [linux:mkswap]在linux上创建交换内存。 #linux相关的知识,希望对你有一定的参考价值。

# Check swapfile and memory status.
$ free
$ cat /proc/swaps

# Verify available storage size.
$ df

# Create 2GB swap.
$ dd if=/dev/zero of=/swapfile bs=1M count=2048
$ mkswap /swapfile
$ swapon /swapfile

# Mount setting on after reboot.
$ vim /etc/fstab
> /swapfile swap swap defaults 0 0

# Unmount swapfile.
$ swapoff /swapfile

# Memory clear and re-mount.
$ swapoff -a && swapon -a

以上是关于sh [linux:mkswap]在linux上创建交换内存。 #linux的主要内容,如果未能解决你的问题,请参考以下文章

linux命令:swap交换分区free查看内存使用情况mkswap创建交换分区

Linux增加虚拟内存方法

Linux(CentoOS 8)增加交换分区mkswap,解决内存不够的问题

linux 中lvm知识

磁盘管理命令

linux基础-第十三单元 硬盘分区格式化及文件系统的管理二