Created
June 30, 2026 07:43
-
-
Save CN-CODEGOD/5898a400a5c50c1f528d6cea56362b2d to your computer and use it in GitHub Desktop.
linux swap 文件扩容
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #创建一个俩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