Advertisement
deisner

entropy sike

Feb 16th, 2012
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.38 KB | None | 0 0
  1. $ cat /proc/sys/kernel/random/entropy_avail
  2. 2181
  3. $ dd if=/dev/urandom of=/dev/null bs=512 count=100
  4. 100+0 records in
  5. 100+0 records out
  6. 51200 bytes (51 kB) copied, 0.012414 seconds, 4.1 MB/s
  7. $ cat /proc/sys/kernel/random/entropy_avail
  8. 170
  9. $ sudo ./rand_ioctl 4096
  10. Adding 4096 bits of fake entropy to the pool.
  11. 4096 bits added.
  12. $ cat /proc/sys/kernel/random/entropy_avail
  13. 4096
  14. $
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement