fourtwothree / daily-code

日常工作代码笔记
1 stars 0 forks source link

如何查看linux系统是32位还是64位? #8

Open fourtwothree opened 7 years ago

fourtwothree commented 7 years ago
$ uname -a
 Linux ubuntu 3.11.0-12-generic #19-Ubuntu SMP Wed Oct 9 16:12:00 UTC 2013 i686 athlon i686 GNU/Linux
$ uname -m
 i686

i686 (or 有时候会是i386) 说明操作系统是32位的,但是如果显示的是 x86_64,那就说明这个操作系统是64位的。