Easy Way To Generate Random, Secure Passwords On Linux - Printable Version +- Gimp-Forum.net (https://www.gimp-forum.net) +-- Forum: Other topics (https://www.gimp-forum.net/Forum-Other-topics) +--- Forum: Watercooler (https://www.gimp-forum.net/Forum-Watercooler) +--- Thread: Easy Way To Generate Random, Secure Passwords On Linux (/Thread-Easy-Way-To-Generate-Random-Secure-Passwords-On-Linux) |
Easy Way To Generate Random, Secure Passwords On Linux - Tas_mania - 04-18-2023 There has been a lot of scams and data loss this year. I found this way to make secure passwords on my Ubuntu-based system. # openssl rand -base64 14 The base64 supports standard keyboards and leaves '=' at the end of passwords. They can be left out is you want. |