2017年10月5日

Mac - 透過 Command Line 安裝 .dmg 檔案 ( Mac - How to install .dmg through command line )

Mac 系統已經將安裝軟體的過程化繁為簡,但有時候還是會需要透過 Command Line 安裝軟體的情況。所以,本篇將介紹如何透過 Command Line 安裝 .dmg 檔案。( 其他 Mac 相關教學可以參考本篇整理。If you want to read this article in English, you can visit here )



透過 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


熱門文章