Cygwin - How would I find the Cygwin's version which has been installed on my machine? (Win Vista)
相关问题
- How to Debug/Register a Permanent WMI Event Which
- the application was unable to start correctly 0xc0
- Windows 7: How can I get a list of all Windows use
- How to ask for Administrator privileges in Windows
- SVN+SSH checkout over VPN using tortoise SVN, Smar
相关文章
- Looking for documentation on the “right” way to in
- PHP 7 FTP extension is not loaded in Windows 7
- git.exe: error while loading shared libraries: ?:
- Does winapi's bcrypt.h actually support bcrypt
- Viewing the Process Tree - tlist/tasklist [closed]
- ffmpeg run from shell runs properly, but does not
- The module “.dll” was loaded but the entry-point w
- node.js and npm has no network access in windows 7
With the
uname
utility, as on other POSIX systems.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?)