Post AWe9XABdWzi8Nx4MWu by tuxdata@piaille.fr
(DIR) More posts by tuxdata@piaille.fr
(DIR) Post #AWe9UdsQgfedbCsovw by nixCraft@mastodon.social
2023-06-13T10:47:10Z
0 likes, 0 repeats
If you require a random password or passphrase for your CLI or scripting needs, consider using mkpasswd, makepasswd, or pwgen. Depending on your operating system, you may need to install these tools using apt, dnf/yum, brew, pkg, or apk commands on your #Linux, #macOS, or #FreeBSD machines. See https://www.cyberciti.biz/faq/generating-random-password/ for more info. #debian #linuxmint #unix #foss #opensource
(DIR) Post #AWe9UedDsh5JwKmBs0 by didek@101010.pl
2023-06-13T11:04:49Z
0 likes, 0 repeats
@nixCraft If you don't want to install new packages, there is:base64 /dev/random | head -c 16
(DIR) Post #AWe9XABdWzi8Nx4MWu by tuxdata@piaille.fr
2023-06-13T10:49:48Z
0 likes, 0 repeats
@nixCraft Why not use command line ?</dev/urandom tr -dc '12345!@#$%^&*()_A-Z-a-z-0-9'| fold -w18 | head -5
(DIR) Post #AWe9XAqP5QJwQO8v4a by didek@101010.pl
2023-06-13T11:05:16Z
0 likes, 0 repeats
@tuxdata @nixCraft Can be simplier to type with base64:base64 /dev/random | head -c 16