Changes between Version 52 and Version 53 of jazz/Performance_Tuning
- Timestamp:
- Oct 14, 2014, 11:16:01 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
jazz/Performance_Tuning
v52 v53 38 38 39 39 * 檢查 CPU 是否為 64 位元的方法 - [http://ubuntuforums.org/archive/index.php/t-573630.html 參考自 Ubuntu 論壇] 40 * <參考> [http://www.cyberciti.biz/faq/linux-how-to-find-if-processor-is-64-bit-or-not/ Linux: Find If Processor (CPU) is 64 bit / 32 bit] 40 41 {{{ 41 42 ~$ sudo lshw -C cpu | grep width … … 43 44 ======= 44 45 width: 64 bits ---> 為 64 位元 46 }}} 47 {{{ 48 $ getconf LONG_BIT 49 64 50 }}} 51 {{{ 52 ~$ grep flags /proc/cpuinfo | grep " lm " --color 53 }}} 54 {{{ 55 ~$ grep -o -w 'lm' /proc/cpuinfo | sort -u 56 lm 45 57 }}} 46 58 * 檢查 CPU 是否支援虛擬化 - 旗標(flags)分別是: Intel (vmx) 與AMD (svm) ([wiki:KVM/install KVM 安裝 (rock)])