Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. # Writes
  2. nohup dd if=/dev/zero of=/disk1/file.bin bs=5G count=1 oflag=direct </dev/null > disk1.out &
  3. nohup dd if=/dev/zero of=/disk2/file.bin bs=5G count=1 oflag=direct </dev/null > disk2.out &
  4.  
  5. #Reads
  6. sync ; echo 3 > /proc/sys/vm/drop_caches
  7.  
  8. nohup dd if=/disk1/file.bin of=/dev/null bs=8k </dev/null > disk1_read.out &
  9. nohup dd if=/disk2/file.bin of=/dev/null bs=8k </dev/null > disk2_read.out &
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement