[Linux] 設定預設編輯器 – Default editor – update-alternatives
Command line: sudo update-alternatives –config editor
網頁開發知識 | Web-Dev Blog
Command line: sudo update-alternatives –config editor
Windows10不同於Linux superuser(root)機制,檔案目錄權限設定可能造成User或Administrator無法刪除,例如由SYSTEM擁有或重灌後UID無法識別。 解法: 基本上Admin或可Admin的User,可以先透過修改檔案目錄擁有者(內容>安全性>進階>更改擁有者)指定更換(套用子目錄檔案),再做刪除即可。
範例: # /etc/fstab (Ubuntu 16.04) /dev/xvdb /home ext4 defaults,nofail 0 0 UUID=050e1234-39e6-4072-a03e-ae0bf90ba13a /home ext4 defaults,nofail 0 0 # /etc/fstab (Ubuntu 14.04) /dev/xvdb /home ext4 defaults,nobootwait 0 0 nobootwait: 預防錯誤及失敗 (nobootwait is no longer a valid option in Ubuntu 16.04) 例行性檢查 […]
在Windows下兩種解決方式: 1. 停用高DPI顯示調整 Chrome捷徑設定內容,相容性標籤下取消=>’在高DPI設定時,停用顯示調整值’ 2. 捷徑目標參數 force-device-scale-factor Chrome捷徑設定內容,捷徑標籤下目標路徑後面新增 /force-device-scale-factor=1 # 目標設定Sample C:\Program Files (x86)\Google\Chrome\Application\chrome.exe” –profile-directory=”Profile 1″ /force-device-scale-factor=1.1
簡介 Diskpart是Windows下好用的磁碟管理指令工具,採用命令提示字元方式。 Windows安裝時使用 在Windows安裝程式中啟用命令提示字元: Shift + F10 指令應用 – CMD Proccess of Clean and Format diskpart(執行Diskpart公用程式) list disk(確認隨身碟的磁碟代碼) select disk #(指定工作磁碟,#為隨身碟代碼) clean(清除所選的磁碟內容) create partition primary(建立主分割區) format fs=ntfs quick(格式化新磁區) active(將該磁區設定為使用中) – MBR轉成GPT UEFI: Convert to GPT partition format after clean by […]
Server Environment Installation Version: 1.2.0 Environment: Ubuntu 14.04 LTS Set server time zone data $ dpkg-reconfigure tzdata Set crontab with updating date $ ntpdate time.stdtime.gov.tw Add user $ adduser nick $ visudo > nick_tsai ALL=(ALL) NOPASSWD:ALL // Change deault editor […]