如何找到我的机器上已安装的 cygwin 版本

发布于 2024-10-08 10:21:50 字数 121 浏览 2 评论 0原文

Cygwin - 我如何找到我的计算机上已安装的 Cygwin 版本? (Windows Vista)

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

为人所爱 2024-10-15 10:21:50

与其他 POSIX 系统一样,使用 uname 实用程序。

uname -r

With the uname utility, as on other POSIX systems.

uname -r
提笔书几行 2024-10-15 10:21:50

如果您想检测正在运行的是 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?)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文