内容目录
Create a swap partition
bs: size
count: quantity
sudo dd if=/dev/zero of=/swapfile bs=64M count=16
sudo mkswap /swapfile
sudo swapon /swapfile
Remove the swap partition after use
sudo swapoff /swapfile
sudo rm /swapfile
Create a swap partition
bs: size
count: quantity
sudo dd if=/dev/zero of=/swapfile bs=64M count=16
sudo mkswap /swapfile
sudo swapon /swapfile
Remove the swap partition after use
sudo swapoff /swapfile
sudo rm /swapfile
文章评论