我下載並解壓縮了*.tar.gz
文件。這是連結 -羅博蒙戈。然後我找到一個名為 的資料夾Bin
並雙擊一個可執行檔。程式開始運行。我不需要安裝它或任何東西。我有兩個問題:
這種類型的包叫什麼-原始碼|編譯|還有別的東西嗎?
將這些提取的文件放置在計算機上的典型位置是什麼?
答案1
您已經下載了一個編譯的的版本機器人蒙戈。通常,此類包可以放置在以下兩個位置之一:
$HOME/bin
/usr/local/bin
我在這個答案中展示了第二個選項:
tar xvf robomongo-0.9.0-rc7-linux-x86_64-2b7a8ca.tar.gz
cd robomongo-0.9.0-rc7-linux-x86_64-2b7a8ca
sudo mv -v bin/* /usr/local/bin && sudo mv -v lib/* /usr/local/lib
robomongo
如果您隨後使用命令列中的命令打開應用程序,您將在側邊欄上看到一個選項(至少對於 Xenial),可以右鍵單擊並“添加到 Dash”或“鎖定到啟動器”:
它不是很整潔,但這個檔案還沒有完全開發包裹因此,缺乏簡潔的安裝和拆卸選項。不過可以刪除手動與以下兩個命令:
sudo rm -v /usr/local/bin/{qt.conf,robomongo}
sudo rm -rfv /usr/local/lib/{imageformats,libQt5DBus.so,\
libQt5PrintSupport.so.5.5.1,\
libicudata.so.54,libQt5DBus.so.5,libQt5Widgets.la,\
libicudata.so.54.1,libQt5DBus.so.5.5,libQt5Widgets.prl,\
libicui18n.so.54,libQt5DBus.so.5.5.1,libQt5Widgets.so,\
libicui18n.so.54.1,libQt5Gui.la,libQt5Widgets.so.5,\
libicuuc.so.54,libQt5Gui.prl,libQt5Widgets.so.5.5,\
libicuuc.so.54.1,libQt5Gui.so,libQt5Widgets.so.5.5.1,\
libQt5Core.la,libQt5Gui.so.5,libQt5XcbQpa.la,\
libQt5Core.prl,libQt5Gui.so.5.5,libQt5XcbQpa.prl,\
libQt5Core.so,libQt5Gui.so.5.5.1,libQt5XcbQpa.so,\
libQt5Core.so.5,libQt5PrintSupport.la,libQt5XcbQpa.so.5,\
libQt5Core.so.5.5,libQt5PrintSupport.prl,libQt5XcbQpa.so.5.5,\
libQt5Core.so.5.5.1,libQt5PrintSupport.so,libQt5XcbQpa.so.5.5.1,\
libQt5DBus.la,libQt5PrintSupport.so.5,platforms,\
libQt5DBus.prl,libQt5PrintSupport.so.5.5,platformthemes}
這需要一些手動操作,但這在我的系統上運作良好,也應該在你的系統上...