user339108
user339108

Reputation: 13101

How would I find the cygwin version which has been installed on my machine

Cygwin - How would I find the Cygwin's version which has been installed on my machine? (Windows Vista)

Upvotes: 53

Views: 52300

Answers (2)

Bing
Bing

Reputation: 746

If you want to detect if you're running the 32 bit or 64 bit version, the -m switch will tell you:

uname -m

"i686" for the 32-bit version, "x86_64" if it's 64-bit.

uname -a

..gives you all the information at once. Check man uname for details.

(This is also answered in How do I tell whether my cygwin installation is 32 or 64 bit?)

Upvotes: 14

ak2
ak2

Reputation: 6778

With the uname utility, as on other POSIX systems.

uname -r

Upvotes: 88

Related Questions