【问题标题】:Linux: TRULY uninstall package? [closed]Linux:真正的卸载包? [关闭]
【发布时间】:2016-04-14 09:09:28
【问题描述】:

我在 Linux Mint 17 上安装了 Skype。我被要求选择一种语言。我被要求同意某事。现在我通过“sudo apt-get --purge autoremove skype”卸载(根据我的谷歌搜索)。然后我通过“sudo apt-get install skype”重新安装。没有语言选择,没有协议,我立即登录我的帐户,甚至不需要输入密码。这不是真正的卸载...?

【问题讨论】:

  • 本题不属于栈溢出
  • 1.这是一个超级用户问题; 2. 在你的主目录中寻找.skype

标签: linux uninstallation linux-mint


【解决方案1】:

apt-get autoremove 删除由于您选择安装系统上不再有的软件包而自动安装的软件包。它不会删除您特别选择安装的软件包。你可能在想apt-get remove,它会卸载一个包。

--purge 也不是标志。您想使用apt-get purge,这将删除任何包及其配置。

the man pages for apt-get for more

【讨论】:

  • 我不假思索地回答了这个问题,但我投票决定关闭,这对于 StackOverflow 来说绝对是题外话,属于 SuperUser。
  • 不,apt-get purge 不是解决方案。当我重新安装时,它的行为与第一次安装时不同!
  • @user3182532 Hrm,据我所知应该如此。这可能是包装没有做正确的事情。我建议在超级用户上问这个问题 - 你会得到更好的回应,它并不真正属于 SO。
【解决方案2】:

来自man apt-get

purge
       purge is identical to remove except that packages are removed and
       purged (any configuration files are deleted too).

所以如果你想彻底删除 Skype,你应该输入sudo apt-get purge skype

【讨论】:

    猜你喜欢
    • 2018-12-17
    • 2016-07-24
    • 1970-01-01
    • 2016-07-07
    • 1970-01-01
    • 2012-07-16
    • 1970-01-01
    • 2020-03-28
    • 2013-11-17
    相关资源
    最近更新 更多