Blame
|
1 | # Linux |
||||||
| 2 | ||||||||
| 3 | ## Passwords |
|||||||
| 4 | ||||||||
|
5 | How to make a random password from Linux CLI. Either of these work, but pwgen is a great little program. |
||||||
|
6 | |||||||
| 7 | ``` |
|||||||
|
8 | b64encode /dev/urandom pw | fold -w 16 | head |
||||||
| 9 | openssl rand -base64 16 |
|||||||
| 10 | pwgen |
|||||||
|
11 | ``` |
||||||