Pangram verdict · v3.3
We believe that this entire text is human-written.
AI likelihood · overall
HumanArticle text · 152 words · 1 segments analyzed
Star (2) You must be signed in to star a gist Fork (1) You must be signed in to fork a gist Save joshenders/c4960cec9c63a7b7d68ffa9543356c43 to your computer and use it in GitHub Desktop. Stop making swap partitions Stop making swap partitions—use swap files instead! Swap files have had the same performance characteristics as swap partitions for more than 20 years and yet, linux distributions continue to encourage the use of swap partitions during install. Swap files are easier to use/add/remove/modify/extend after installation. They're better in every way––use swap files! Create a swap file. 💡 You can use dd for this too but if your filesystem supports it, fallocate is faster. fallocate -l 4G /swapfile Only root should be able to write to the swap file. chmod 0600 /swapfile Format the swap file. mkswap /swapfile Enable it. swapon /swapfile Make it persist across boots. echo "/swapfile none swap defaults 0 0" >> /etc/fstab