确定 Mac 终端中多个系统变量的值
我在 Mac 上。在终端中,您如何计算出以下每个值?
- 字大小(64 位与 32 位)
- L1/L2 缓存大小
- 确定正在使用多少内存(如
df
,但用于 RAM)
谢谢!我知道您可以在 Activity Monitor、System Profiler 等中找到这些内容,但我正在努力提高我对终端和 UNIX 的了解。
I'm on a Mac. In the terminal, how would you figure out each of the following values?
- Word size (64 bit vs. 32 bit)
- L1/L2 cache size
- Determine how much memory is being used (like
df
, but for RAM)
Thanks! I know you can find these in Activity Monitor, System Profiler etc. but I am trying to boost my knowledge of the terminal, and UNIX.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
System Profiler 是
/usr/sbin/system_profiler
的 GUI 包装器。您还可以从
/usr/sbin/sysctl
获取一些有用的信息(尝试sysctl -a
)。System Profiler is a GUI wrapper around
/usr/sbin/system_profiler
.You can also get some useful information from
/usr/sbin/sysctl
(trysysctl -a
).