views:

266

answers:

2

Is there an equivalent for Microsoft's UuidCompare, UuidCreate, etc in Linux or POSIX environment?

A: 

Take a look at uuidgen.

Todd Stout
+3  A: 

libuuid is part of the e2fsprogs package.

http://en.wikipedia.org/wiki/Uuid#C

Tim Sylvester
The real answer is no, but there is one that is close and it's libuuid. The calls are similar but different, so the library is not a drop in if you already are using the windows calls. Example: UuidCompare in MS is equal to uuid_compare in libuuid. -Crazychenz
Crazy Chenz