Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save CN-CODEGOD/5898a400a5c50c1f528d6cea56362b2d to your computer and use it in GitHub Desktop.

Select an option

Save CN-CODEGOD/5898a400a5c50c1f528d6cea56362b2d to your computer and use it in GitHub Desktop.
linux swap 文件扩容
#创建一个俩G 大小的swap file
sudo fallocate -l 2G /swapfile2
# 添加权限
sudo chmod 600 /swapfile2
#格式化
sudo mkswap /swapfile2
#查看是否启用、
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment