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

让人想犯罪 __ 提交于 2019-12-02 16:58:36

With the uname utility, as on other POSIX systems.

uname -r
Bing

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?)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!