8

i found the following method to create swap, from here

dd if=/dev/zero of=/root/myswapfile bs=1M count=1024

Is there any thumb rule that to decide block size ? What is the best block size for Swap in any machine ? Here it is 1M..

user412125
  • 219
  • 3
  • 7

1 Answers1

14

When creating a regular file for swap using dd the blocksize is a convenience to allow the count parameter to create a file of the specified size.

The underlying disk structure is unchanged by the bs= in the dd command.

Richard Harrison
  • 19,247
  • 4
  • 40
  • 67