Try btrfs, where with only 5 hours of research you can create a swap file without writing the entire file.
Also there is no other option, the 5h are non-optional.
After doing that twice, In my / now lives
/swapfile-howto
# this is btrfs not a normal file system.# We have to create and allocate the file in a btrfs friendly way,# and tell btrfs to not move or segment it.touch /swapfile999
chmod 600 /swapfile999
truncate -s 0 /swapfile999
chattr +C /swapfile999
fallocate -l 999G /swapfile999
mkswap /swapfile999
swapon /swapfile999 -p 200
When you hit enter on the DD command, and your main storage light suddenly starts flashing.
When you hit enter on the DD command, and your eyes suddenly start flashing.
Little Jimmy wanted to try Fedora, But little Jimmy is no more. For what he thought was his external drive, was actually his cerebral core
https://www.youtube.com/watch?v=ajW2fDy41fY
Here is an alternative Piped link(s):
https://www.piped.video/watch?v=ajW2fDy41fY
Piped is a privacy-respecting open-source alternative frontend to YouTube.
I’m open-source; check me out at GitHub.
That was great :D though I’m afraid that this is kind of me, considering I have a file server on my vacuum robot
So? I’m just creating an 8 GiB swap file.
Try btrfs, where with only 5 hours of research you can create a swap file without writing the entire file.
Also there is no other option, the 5h are non-optional.
After doing that twice, In my / now lives
/swapfile-howto
# this is btrfs not a normal file system. # We have to create and allocate the file in a btrfs friendly way, # and tell btrfs to not move or segment it. touch /swapfile999 chmod 600 /swapfile999 truncate -s 0 /swapfile999 chattr +C /swapfile999 fallocate -l 999G /swapfile999 mkswap /swapfile999 swapon /swapfile999 -p 200