[已解決] keytool: command not found
當我們想要將開發好的 App 上架到 Google Play 商店時,往往都需要用使用 keytool 這個 Java 所提供的工具來產生、匯入和匯出憑證。依預設,keytool 將在其執行目錄中建立金鑰庫檔案(不過這當然可以更改輸出位置)。
Read More »[已解決] keytool: command not found當我們想要將開發好的 App 上架到 Google Play 商店時,往往都需要用使用 keytool 這個 Java 所提供的工具來產生、匯入和匯出憑證。依預設,keytool 將在其執行目錄中建立金鑰庫檔案(不過這當然可以更改輸出位置)。
Read More »[已解決] keytool: command not found最近當我重新在 Linux 作業系統上配置 Android Studio 打算進行 Flutter 的開發時,發現在使用 flutter doctor --android licenses
指令(這是必要動作)時發生以下錯誤訊息:
Read More »[已解決][Linux] add-apt-repository: command not found“add-apt-repository: command not found” 是個常見的找不到指令的錯誤,但是卻無法透過
search add-apt-repository
指令或是apt install add-apt-repository
指令找到並安裝。實際上需要直接使用
sudo apt install software-properties-common
指令安裝才行
最近在我重新安裝了我的 Linux 作業系統後,我突然間無法連接 wifi。在我重新安裝之前,連接 wifi 是一件再正常不過的事情,應該不會是我的 wifi 界面突然壞掉了?
Read More »[已解決][Linux] No Wi-Fi Adapter Found – Make sure you have a Wi-Fi adapter plugged and turned on今天我在重新安裝 Debian 這套著名的 Linux 發行版時,安裝過程中突然說偵測不到 wifi 裝置(果然每次都會碰到新的問題),接著就跳過了安裝圖形化界面與一堆軟體,直接替我把 grub 引導程序裝好,便重新啟動了。
Read More »[已解決][Linux] 安裝系統後使用 apt 發生錯誤:”Media change: please insert the disc labeled …”一直以來,我都很不喜歡桌面上存在著文件、圖示等東西。我喜歡我的桌面空無一物。
Read More »[Linux] 隱藏 Gnome 桌面的垃圾桶以及 USB 隨身碟裝置ModuleNotFoundError: No module named 'distutils.util'
Read More »[已解決][Python] ModuleNotFoundError: No module named ‘distutils.util’今天當我正打算使用虛擬機 VirtualBox 安裝一個沒嘗試過的 Linux 發行版時,安裝過程中出現了以下錯誤訊息:
Read More »[已解決] Not in a hypervisor partition (HVP=0) (VERR_NEM_NOT_AVAILBLE). VT-x is disabled in the BIOS for all CPU modes (VERR_VMX_MSR_ALL_VMX_DISABLED)在 Linux 中,若是我們需要替大量的文件檔案批次進行改名,除了撰寫腳本使用 mv
指令外,也可以透過 rename
指令設立規則(就像正規表示式 Regular Expression 一般),替大量的檔案進行改名。