Disk Performance: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

12 July 2024

11 July 2024

8 July 2024

7 July 2024

6 July 2024

5 July 2024

  • curprev 23:5823:58, 5 July 2024Shahed talk contribs 2,949 bytes +685 →‎Sequential Read » Using Buffer
  • curprev 23:2023:20, 5 July 2024Shahed talk contribs 2,264 bytes +2,264 Created page with "==Sequential Write== <syntaxhighlight lang="bash"> dd if=/dev/zero of=/tmp/tempfile bs=1M count=1024 conv=fdatasync :' 1024+0 records in 1024+0 records out 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 0.521978 s, 2.1 GB/s ' </syntaxhighlight> ==Sequential Read » Clean Buffer== <syntaxhighlight lang="bash"> echo 'sync;echo 3 >/proc/sys/vm/drop_caches'|sudo bash dd if=/tmp/tempfile of=/dev/null bs=1M count=1024 :' 1024+0 records in 1024+0 records out 1073741824 bytes (1.1..."