In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/02 Report--
This article is about how Linux generates random numbers and strings. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.
Generate random numbers
1. Use the system's $RANDOM variable
> echo $RANDOM 14587
two。 Use date +% s% N
> date +% s%N1529584024896587259
3. Use / dev/random or / dev/urandom
/ dev/random stores the real-time data of the current running environment of the system, and is a blocked random number generator. Reading sometimes needs to wait, so try to avoid using it.
/ dev/urandom non-blocking random number generator, read operation will not cause blocking.
> cat / dev/urandom | head-n 10 | cksum | awk-F'{print $1} '1198074148
Generate random strings
1. The full name of linux uuid,uuid is a universal unique identification number. The format contains 32 hexadecimal digits and is divided into 5 segments with a'- 'connection number. 32 characters in the form 8-4-4-4-12.
> cat / proc/sys/kernel/random/uuid6fcae1aa-ab46-435a-8531-250ccb54ed8e
two。 Use md5sum
# generate 10-bit random strings using date > date +% s% N | md5sum | head-c 10bb791e69d4# generate 10-bit random strings using / dev/urandom > cat / dev/urandom | head-n 10 | md5sum | head-c 10909587db4c > head-c 10 / dev/random | base64tBIDqQcaQ+qvkA==
3. Use openssl
> openssl rand-hex 103822e40bdcc2d1c6ee5f Thank you for reading! This is the end of this article on "Linux's method of generating random numbers and strings". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.