Jan Walraven
DevOps



Categories:
  • Arduino (2)
  • CSS (3)
  • Docker (11)
  • ESXi (1)
  • Git (4)
  • Google Cloud (3)
  • Javascript (6)
  • Kubernetes (4)
  • Linux (36)
  • Mac (7)
  • Magento (4)
  • Mysql (14)
  • PHP (9)
  • Zend framework 2 (9)
  • Posted on May 31, 2012

    Install fio

    
    yum install fio
    

    Create fio random read job

    Create job file ‘random-read-test.fio’ with the following contents:

    
    [random-read]
    rw=randread
    size=128m
    directory=/tmp/fio-testing/data
    

    Create fio random write job

    Create job file ‘random-write-test.fio’ with the following contents:

    
    [random_rw]
    rw=randrw
    size=128m
    directory=/tmp/fio-testing/data
    

    run fio

    
    fio random-write-test.fio