mkdir /swap
fallocate -l 2G /swap/swapfile1
# 或者使用 dd 命令
dd if=/dev/zero of=/swap/swapfile1 bs=1024 count=2097152
chmod
2023-04-26