2014年10月22日 星期三

【Linux 筆記 】下載 Oracle Patch 前,確認 Linux 32 或 64 版本

有 3 種方法可確認 Linux 是 32 位元,或是64位元的版本:

1. 使用 uname 指令
2. 使用 file 指令
3. 使用 getconf 指令

例如,參考下面範例:

1. 使用 uname 指令

[test@tw-srv-erp bin]$ uname -a
Linux tw-srv-erp.elvismeng.com.tw 2.6.18-53.el5 #1 SMP Sat Nov 10 19:37:22 EST 2007 x86_64 x86_64 x86_64 GNU/Linux

2. 使用 file 指令

[test@tw-srv-erp bin]$ file /bin/bash
/bin/bash: ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), for GNU/Linux 2.6.9, dynamically linked (uses shared libs), for GNU/Linux 2.6.9, stripped

3. 使用 getconf 指令

[test@tw-srv-erp bin]$ getconf LONG_BIT #64bits
64
[test@tw-srv-erp bin]$ getconf LONG_BIT #32bits
64

沒有留言:

張貼留言

prettyPrint();