Cygwin - 我如何找到我的计算机上已安装的 Cygwin 版本? (Windows Vista)
Cygwin - How would I find the Cygwin's version which has been installed on my machine? (Windows Vista)
与其他 POSIX 系统一样,使用 uname 实用程序。
uname
uname -r
With the uname utility, as on other POSIX systems.
如果您想检测正在运行的是 32 位版本还是 64 位版本,-m 开关会告诉您:
uname -m
“i686”表示 32 位版本,“x86_64”如果它是 64 位的。
uname -a
..一次性为您提供所有信息。检查 man uname 了解详细信息。
man uname
(这也在 中得到了解答如何判断我的 cygwin 安装是 32 位还是 64 位?)
If you want to detect if you're running the 32 bit or 64 bit version, the -m switch will tell you:
"i686" for the 32-bit version, "x86_64" if it's 64-bit.
..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?)
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
与其他 POSIX 系统一样,使用
uname
实用程序。With the
uname
utility, as on other POSIX systems.如果您想检测正在运行的是 32 位版本还是 64 位版本,-m 开关会告诉您:
uname -m
“i686”表示 32 位版本,“x86_64”如果它是 64 位的。
uname -a
..一次性为您提供所有信息。检查
man uname
了解详细信息。(这也在 中得到了解答如何判断我的 cygwin 安装是 32 位还是 64 位?)
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?)