2012年7月19日 星期四

[Linux 文章收集] Linux 要如何查看作業系統是 32bits 還是 64bits?


轉載自 這裡
系統如何判斷 32bits / 64bits :
一般都是用 uname -auname -m (顯示 i386 => 32bits, x86_64 => 64bits)
$ uname -a
Linux ubuntu 2.6.32-41-generic #88-Ubuntu SMP Thu Mar 29 13:10:32 UTC 2012 x86_64 GNU/Linux # 為 64bits

或者可以使用命令 `file /bin/bash`. 結果非常淺顯易懂 :
- 64bits
$ file /bin/bash
/bin/bash: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.15, stripped

- 32bits
# file /bin/bash
/bin/bash: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.6.9, dynamically linked (uses shared libs), for GNU/Linux 2.6.9, stripped
This message was edited 3 times. Last update was at 19/07/2012 17:10:21

沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...