Content deleted Content added
<tt> was not closed properly |
m Changed word order to improve clarity. |
||
Line 17:
::*'''<tt>[[dev-null|/dev/null]]</tt>''' — also known as the "bit bucket" or "black hole", this [[pseudo device]] discards all contents written to it, and is typically used to pipe away unwanted data.
::* '''<tt>[[/dev/random]]</tt>''' — this pseudo device returns [[pseudorandom numbers]] (subject to the limitations of [[random number generator]]s in [[computing]]) when read from. It uses system noise to generate random numbers and blocks if not enough entropy in the noise is available. Random is commonly used by programs such as [[SSH]] that absolutely need cryptographically-strong random data
::* '''<tt>/dev/urandom</tt>''' — similar to <tt>/dev/random</tt>, except it always returns random numbers, even if there is not enough entropy in the system noise available.
|