USBメモリの形状 - シリンダあたりのヘッド数は124

USBメモリの形状 - シリンダあたりのヘッド数は124

私はUSBスティックを持っていますが、このスティックにはいくつか問題があります。適切なジオメトリを設定するにはどうすればいいですか?

TestDisk 7.0, Data Recovery Utility, April 2015
Christophe GRENIER <[email protected]>
http://www.cgsecurity.org

Disk /dev/sda - 4009 MB / 3824 MiB - CHS 1018 124 62

Warning: the current number of heads per cylinder is 124
but the correct value may be 255.
You can use the Geometry menu to change this value.
It's something to try if
- some partitions are not found by TestDisk
- or the partition table can not be written because partitions overlaps.
$ sudo fdisk

Disk /dev/sda: 3.8 GiB, 4009754624 bytes, 7831552 sectors
Disk model: USB Flash Disk  
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x2be3e15c

Device     Boot Start     End Sectors  Size Id Type
/dev/sda1        2048 7831551 7829504  3.8G  b W95 FAT32

http://damnsmalllinux.org/wiki/setting_the_proper_geometry_on_your_usb_pendrive.html マニュアルですが、ステップ2の重要な情報がすべて揃っているとは思えません

方程式

   total_sectors / 32 / number_of_heads = no_of_cylinders. 

(fdisk) no_of_sectors = 7831552 と書かれています。(testdisk) no_of_heads は 255 であるはずだと言われています。

そして上の式によると、7831552 / 32 = 244736 244736 / 255 = 959.79401となる。これは丸くない。

他の計算は丸められていますが、255 であるはずなので適切ではありません... 244736 / 256 = 956

何か簡単なことを見逃しているのでしょうか?

関連情報