All public logs
Combined display of all available logs of PedrosBrainDump. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 22:25, 6 October 2024 413vhcu1lq0463ob talk contribs created page Creating swap on Linux (Created page with "== This should work in any Linux distro == === Create a swapfile === To create the swapfile let's just use the /dev/zero and append on /swapfile we're using 16MB blocks and making 64 of those, in another words 1GB, you can make 0.5GB or 4GB doesn't really matters: dd if=/dev/zero of=/swapfile bs=16M count=64 # 1GB or: dd if=/dev/zero of=/swapfile bs=16M count=128 # 2GB or: dd if=/dev/zero of=/swapfile bs=16M count=256 # 4GB Select one and go for it. === Changing fil...")