Linux

如何在 Linux Mint 上安裝 Skype

  • April 17, 2019

我從網站下載了安裝程序。當我執行它時,我收到以下錯誤:

您的系統已損壞依賴項。此應用程序在修復之前無法繼續。要修復它,請在終端視窗中執行“gksudo synaptic”或“sudo apt-get install -f”。

我嘗試了兩種選擇。當試圖修復突觸中損壞的包時,我得到

無法檢索某些包裹,您要繼續嗎?

我說是。然後

>E: Unable to correct missing packages
W: Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/t/tiff/libtiff5_4.0.2-1ubuntu2.1_i386.deb
 404  Not Found [IP: 91.189.92.201 80]
W: Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/g/gnutls26/libgnutls26_2.12.14-5ubuntu4.2_i386.deb
 404  Not Found [IP: 91.189.92.201 80]
W: Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/m/mysql-5.5/mysql-common_5.5.29-0ubuntu0.12.10.1_all.deb
 404  Not Found [IP: 91.189.92.201 80]
W: Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/m/mysql-5.5/libmysqlclient18_5.5.29-0ubuntu0.12.10.1_i386.deb
 404  Not Found [IP: 91.189.92.201 80]

有幾個層次的問題,它們與skype. 您系統上的任何軟體包安裝/更新都可能觸發此問題。

如果您將瀏覽器放入http://security.ubuntu.com/ubuntu/pool/main/m/mysql-5.5/(最後一條錯誤消息中的 url,沒有文件名),您會看到 libmysqlclient 現在有不同的版本0ubuntu0.12.10。所以到達伺服器沒有問題*(即它線上),只是你自己的機器不是最新的。

通常,您應該定期(例如每天)更新您的機器具有哪些軟體包(及其版本)可用的視圖:

sudo apt-get upgrade

伺服器不會經常更改,因此每次安裝之前都必須執行它,但是如果出現問題,嘗試這樣做是一個好習慣。

之後執行:

sudo apt-get install --fix-missing --fix-broken

然後再試一次。

引用自:https://unix.stackexchange.com/questions/78840