發表文章

目前顯示的是 4月, 2018的文章

MS Windows 下讀取 Linux ext2/ext3/ext4 軟體

DiskInternals Linux Reader https://www.diskinternals.com/linux-reader/ ext2read/ext2explore https://sourceforge.net/projects/ext2read/ ext2ifs http://www.fs-driver.org/ https://sourceforge.net/projects/ext2fsd/files/ paragon linuxfs https://www.paragon-software.com/home/linuxfs-windows/ explore2fs http://www.chrysocome.net/downloads/vv-3.0-install.exe

macOS 連線MS Windows網路芳鄰(samba, cifs)

圖片
1. 點選執行Finder 2. 在Finder上方功能列選擇 前往 -> 連接伺服器 (如圖一) 3. 輸入samba通訊協定 smb://,後方接上網路硬碟或NAS的IP位址後,按 + 4. 跟伺服器連線後,會提示輸入連入的帳號密碼,再輸入帳號密碼後,選連線即可。 (圖一) (圖二) 參考 https://support.apple.com/kb/PH25269?locale=en_US&viewlocale=zh_TW

MS Windows 更新套件目錄網站

http://www.catalog.update.microsoft.com/home.aspx 適用所有MS Windows 版本的更新,只要搜尋更新套件 KB0000000開頭的套件名稱 就會出現所有對應版本 如 Windows 10 - https://support.microsoft.com/en-us/help/4093112 Windows 7 - https://support.microsoft.com/en-us/help/4093113

中文字全字庫與免費中文字型

CNS https://www.cns11643.gov.tw/AIDB/welcome.do Google  <--- 中文字有些會消失,無法顯示,不好用 https://www.google.com/get/noto/#/family/noto-sans-hant adobe思源中文字 https://www.google.com/get/noto/#serif-hant ^ |--------不好用,不好用,不好用 補充資料 http://www.fontriver.com/ https://www.dafontfree.net/freefonts-helvetica-f128587.htm 字型檔檔檔格式轉換 https://onlinefontconverter.com/ http://www.fontconverter.org

利用Windows 10 的 BitLocker 來加密隨身碟資料

圖片
1. Search and execute Control Panel 2. System and Security 3. BitLocker encrypt 4. Choose External Disk as Figure 1 5. Enable BitLocker and set your password. 參考 https://technet.microsoft.com/zh-tw/library/mt404677(v=vs.85).aspx

CentOS 7 安裝ibus注音輸入法

圖片
1. su - 2. yum search chewing 3. yum install ibus-chewing or Gnome GUI setting from follow figure -> Region & language

線上影像處理與圖片去背

雲端版繪圖 https://pixlr.com/editor/ tutorial http://pixlr.com/blog/category/tutorial/  https://www.youtube.com/watch?v=txP6b8ZeRUc

Add exfat format support on CentOS 7

1. wget http://download1.rpmfusion.org/free/el/updates/7/x86_64/r/rpmfusion-free-release-7-1.noarch.rpm 2. yum -y install fuse-exfat exfat-utils or 1. wget http://download1.rpmfusion.org/free/el/updates/7/x86_64/f/fuse-exfat-1.2.7-1.el7.x86_64.rpm 2. wget http://download1.rpmfusion.org/free/el/updates/7/x86_64/e/exfat-utils-1.2.7-1.el7.x86_64.rpm 3. yum install fuse-exfat-1.2.7-1.el7.x86_64.rpm exfat-utils-1.2.7-1.el7.x86_64.rpm

MS Windows KMS Client Setup KEY

不小心安裝成單機版,想換成公司大量授權的版本,可以先換序號成下方: 以下引自 https://learn.microsoft.com/zh-tw/windows-server/get-started/kms-client-activation-keys Windows Server 2022 Windows Server 2022 Datacenter      WX4NM-KYWYW-QJJR4-XV3QB-6VM33 Windows Server 2022 Datacenter     NTBV8-9K7Q8-V27C6-M2BTV-KHMXV Azure 版本 Windows Server 2022 Standard       VDYBN-27WPP-V4HQT-9VMD4-VMK7H Windows Server 2019 Windows Server 2019 Datacenter     WMDGN-G9PQG-XVVXX-R3X43-63DFG Windows Server 2019 Standard       N69G4-B89J2-4G8F4-WWYCC-J464C Windows Server 2019 Essentials     WVDHN-86M7X-466P6-VHXV7-YY726 Windows Server 2016 Operating system edition KMS Client Setup Key Windows Server 2016 Datacenter CB7KF-BWN84-R7R2Y-793K2-8XDDG Windows Server 2016 Standard WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY Windows Server 2016 Essentials JCKRF-N37P4-C2D82-9YXRT-4M63B Windows 10/11 Operating system edition KMS Client Setup Key Windows 10/11 Professional   W269N-WFGWX-YVC9B-4J6C9-T83GX Windows 10/11 Pr

php5 的 session_start() 注意事項

我們經常利用$_SESSION 的變數,來傳遞認證是否有通過的key, PHP5.4 為了使用$_SESSION[],必須要先在檔案開始宣告 session_start(),但session_start()放置的位置要注意, 不可以放置在 <html></html>之前 ,若要隱蔽網頁內容需認證才能看到,可以放在<body></body>前就好。否則容易在 Apache 2.4 出現如 .htaccess設定 鎖住特定資料夾如 myfolder <Directory myfolder> AllowOverride AuthConfig Order Allow,Deny  Allow from 140.*.*.* </Directory> 的情形, 變成該網頁讀取,會不斷詢問apache htaccess 帳號密碼。