2016年11月21日 星期一

Ubuntu 16.04 IP Setting

iface OOOOO25 inet static
address 192.168.12.2
netmask 255.255.255.0
gateway 192.168.12.254
dns-nameservers   8.8.8.8   8.8.4.4

AUTOCAD開啟閃退解決方式

此資料夾清空 C:\ProgramData\FLEXnet

2016年7月20日 星期三

OFFICE 2010開啟舊版2003不相容問題解決

至選項->信任中心->點信任中心設定  然後將受保護的檢視,所有選項不勾即可!

2016年5月4日 星期三

Windows10 & Windows8 輸入法消失 解決方法

方法一:
1.輸入"regedit"

2."HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run"

3.新增字串值"ctfmon"

4.內容值"C:\Windows\system32\ctfmon.exe"

重開機以後就會出現,如不想重開機,請直接到以下路徑執行。

5."C:\Windows\system32\ctfmon.exe"

即可!

方法二: 針對無法切換輸入法


到"HKEY_CURRENT_USER\Keyboard Layout\Toggle"裡的"Language Hotkey",將數值改成 1

方法三:

01 控制台/地區及語言選項
02 鍵盤及語言/變更鍵盤
03 語言列/請將選項設定為
固定在工作列
在工作列顯示額外的語言列圖示

04 套用/確定/重新啟動電腦






2016年4月3日 星期日

APACHE2 壓縮模組

啟用mod_deflate

http.conf檔案裡有關載入模組的地方,加上這一行:
LoadModule deflate_module modules/mod_deflate.so

接著,在http.conf檔案後面,加上這一段:
<ifmodule mod_deflate.c>
DeflateCompressionLevel 9
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-httpd-php
AddOutputFilter DEFLATE js css
</ifmodule>

DeflateCompressionLevel 預設建議使用 6   數值越大壓縮越多,但品質就會下降囉!


參考網址: http://blog.7311.tw/2014/01/apache-apache2-moddeflategzip.html