linux 中用文件作为Swap分区

1. 新建文件, 增加 1G 空间

# mkdir /swap
# dd if=/dev/zero of=/swap/swapfile bs=1M count=1024

2. 格式化文件夹为交换分区类型

# mkswap /swap/swapfile

3. 修改文件夹权限

# chmod 600 /swap/swapfile

4. 启用交换分区

# 启用
# swapon /swap/swapfile

# 关闭
# swapoff /swap/swapfile

5. 使系统开机时自启用,在文件/etc/fstab中添加一行:

# /swap/swapfile swap swap defaults 0 0

你可能感兴趣的:(linux,服务器)