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

2016年3月20日 星期日

Windows 7 update 更新時間過長解決方式!

至官方網站下載修補程式KB3102810,安裝後即可解決!!
參考資料:http://blog.xuite.net/trad546/blog/372449538

2.  https://support.microsoft.com/zh-tw/kb/2730071

2016年3月15日 星期二

移除WINDOWS 10 更新通知

方法一:
至控制台新增移除程式,移除Microsoft Windows 的更新 (KB3035583)
(重新開機後,右下角ICON就會消失不見!)


方法二:

HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\OSUpgrade\AllowOSUpgrade  (DWORD數值改成0)

不一定能成功!

方法三:

taskkill /f /im GWX.exe
taskkill /f /im GWXUX.exe
cd/d C:\Windows\System32
takeown /f GWX
cacls GWX /e /g everyone:f

rd/q/s GWX


參考出處:http://tech.smallya.net/2016/05/05/%E6%B0%B8%E4%B9%85%E7%A7%BB%E9%99%A4-windows-10-%E5%8D%87%E7%B4%9A%E6%8F%90%E7%A4%BA/

2016年3月10日 星期四

Windows Server 2012 各版本比較表

 Editions
Foundation
Essentials
Standard
Datacenter
Distribution
OEM Only
Retail, volume licensing, OEM
Retail, volume licensing, OEM
Volume licensing and OEM
Licensing Model
Per Server
Per Server
Per CPU pair + CAL/DAL
Per CPU pair + CAL/DAL
Processor Chip Limit
1
2
64
64
Memory Limit
32GB
64GB
4TB
4TB
User Limit
15
25
Unlimited
Unlimited
File Services limits
1 standalone DFS root
1 standalone DFS root
Unlimited
Unlimited
Network Policy & Access Services limits
50 RRAS connections and 10 IAS connections
250 RRAS connections, 50 IAS connections, and 2 IAS Server Groups
Unlimited
Unlimited
Remote Desktop Services limits
50 Remote Desktop Services connections
Gateway only
Unlimited
Unlimited
Virtualization rights
n/a
Either in 1 VM or 1 physical server, but not both at once
2 VMs
Unlimited
DHCP, DNS, Fax server, Printing,  IIS Services
Yes
Yes
Yes
Yes
Windows Server Update Services
No
Yes
Yes
Yes
Active Directory Services
Yes, Must be root of forest and domain
Yes, Must be root of forest and domain
Yes
Yes
Active Directory Certificate Services
Certificate Authorities only
Certificate Authorities only
Yes
Yes
Windows Powershell
Yes
Yes
Yes
Yes
Server Core mode
No
No
Yes
Yes
Hyper-V
No
No
Yes
Yes

2016年3月7日 星期一

linux系統權限

常用的linux文件權限:
444 r--r--r--
600 rw-------
644 rw-r--r--
666 rw-rw-rw-
700 rwx------
744 rwxr--r--
755 rwxr-xr-x
777 rwxrwxrwx
從左至右,1-3位數字代表文件所有者的權限,4-6位數字代表同組用戶的權限,7-9數字代表其他用戶的權限。
而具體的權限是由數字來表示的,讀取的權限等於4,用r表示;寫入的權限等於2,用w表示;執行的權限等於1,用x表示;
通過4、2、1的組合,得到以下幾種權限:0(沒有權限);4(讀取權限);5(4+1 |讀取+執行);6(4+2 |讀取+寫入);7(4+ 2+1 |讀取+寫入+執行)
以755為例:
1-3位7等於4+2+1,rwx,所有者俱有讀取、寫入、執行權限;
4-6位5等於4 +1+0,rx,同組用戶具有讀取、執行權限但沒有寫入權限;
7-9位5,同上,也是rx,其他用戶具有讀取、執行權限但沒有寫入權限。
rwx權限數字解釋
chmod也可以用數字來表示權限如chmod 777 file
語法為:chmod abc file
其中a,b,c各為一個數字,分別表示User、Group、及Other的權限。
r=4,w=2,x=1
若要rwx屬性則4+2+1=7;
若要rw-屬性則4+2=6;
若要rx屬性則4+1=7。
範例:
chmod a=rwx file

chmod 777 file
效果相同
chmod ug=rwx,o=x file

chmod 771 file
效果相同
若用chmod 4755 filename可使此程序具有root的權限

出處:http://www.111cn.net/sys/linux/59979.htm