透過 Command Line 安裝 .dmg 檔案
基本上,整個安裝過程相當單純。簡單來說,我們只需要把 .dmg 檔案掛載,之後將整個檔案複製再把 .dmg 檔案卸載就完成了。首先來掛載檔案:
sudo hdiutil attach [disk-image-name].dmg
接著進入掛載的檔案中:
cd /Volumes/[disk-image-name]
進入後,你可以看到 [app-name].app 的資料夾,我們只要把該資料夾整個複製就算安裝完成:
sudo cp -rf [app-name].app /Applications
安裝完檔案後,只需要將檔案卸載:
sudo hdiutil detach /Volumes/[disk-image-name]
Environment :
・ macOS