থেকে র manpage :mkswap
Note that a swap file must not contain any holes. Using cp(1) to
create the file is not acceptable. Neither is use of fallocate(1) on
file systems that support preallocated files, such as XFS or ext4, or
on copy-on-write filesystems like btrfs. It is recommended to use
dd(1) and /dev/zero in these cases. Please read notes from swapon(8)
before adding a swap file to copy-on-write filesystems.
আর থেকে র manpage :swapon
You should not use swapon on a file with holes. This can be seen in
the system log as
swapon: swapfile has holes.
The swap file implementation in the kernel expects to be able to write
to the file directly, without the assistance of the filesystem. This
is a problem on preallocated files (e.g. fallocate(1)) on filesystems
like XFS or ext4, and on copy-on-write filesystems like btrfs.
এটি অনুসরণ করে যে এর fallocate
চেয়ে দ্রুততর হতে পারে dd
, তবে এটি অদলবদল তৈরির জন্য উপযুক্ত নয় এবং অদলবদ সম্পর্কিত সরঞ্জাম দ্বারা সমর্থিত নয়।
fallocate
সাধারণত দ্রুত হয় (যেহেতু এটি জিরো দিয়ে তৈরি ফাইলটি পূরণ করে না) - অন্যথায় যদিও কোনও পার্থক্য নেই, শেষ ফলাফলটি একই। দেখুন: antipaucity.com/2017/08/31/…