如何删除任何可能监视我的镜头或其他软件?可以关闭吗?

如何删除任何可能监视我的镜头或其他软件?可以关闭吗?

我听说过 Ubuntu 安装广告软件和间谍软件来跟踪用户的在线搜索。例如 - unity-lenses-shopping、内置的 Amazon 广告应用程序和广告服务器等。

我明白这可能是为了给 Canonical 带来收入。但是,我想全部删除。有没有删除所有此类间谍软件的指南?

另外,是否有一个付费版本的 Ubuntu,其中不包含所有这些令人讨厌的东西?

答案1

您可以从Privacy设置中关闭include online result

如果你想取下镜头

类型:sudo apt-get purge unity-lens-shopping

答案2

您可以通过以下方式关闭仪表板的在线搜索结果:系统设置>安全和隐私并在搜索选项卡上关闭该选项:

在此处输入图片描述

您还可以在 Web 浏览器中关闭与 Web 应用程序的任何集成,方法是:优先并在常规选项卡上关闭从任何站点快速获取集成选项

在此处输入图片描述

作为最后的手段,您可以随时通过运行以下命令删除仪表板中集成的完整购物镜头:

sudo apt-get remove unity-lens-shopping

Ubuntu 还提供了许多其他桌面环境供您使用,这些桌面环境不共享 dash 所包含的相同类型的技术实现:徐本图鲁本图Ubuntu GNOME等。只需选择一个适合您需要的。

答案3

您可以尝试以下修复ubuntu

#!/bin/bash

# Figure out the version of Ubuntu that you're running
V=`/usr/bin/lsb_release -rs`

# The privacy problems started with 12.10, so earlier versions should do nothing
if [ $V \< 12.10 ]; then
  echo "Good news! Your version of Ubuntu doesn't invade your privacy."
else
  # Turn off "Remote Search", so search terms in Dash don't get sent to the internet
  gsettings set com.canonical.Unity.Lenses remote-content-search none

  # If you're using earlier than 13.10, uninstall unity-lens-shopping
  if [ $V \< 13.10 ]; then
    sudo apt-get remove -y unity-lens-shopping

  # If you're using a later version, disable remote scopes
  else
    gsettings set com.canonical.Unity.Lenses disabled-scopes \
      "['more_suggestions-amazon.scope', 'more_suggestions-u1ms.scope',
      'more_suggestions-populartracks.scope', 'music-musicstore.scope',
      'more_suggestions-ebay.scope', 'more_suggestions-ubuntushop.scope',
      'more_suggestions-skimlinks.scope']"
  fi;

  # Block connections to Ubuntu's ad server, just in case
  if ! grep -q productsearch.ubuntu.com /etc/hosts; then
    echo -e "\n127.0.0.1 productsearch.ubuntu.com" | sudo tee -a /etc/hosts >/dev/null
  fi

  echo "All done. Enjoy your privacy."
fi

答案4

另外,是否有一个付费版本的 Ubuntu,其中不包含所有这些令人讨厌的东西?

Ubuntu 有一个轻量级的、不太商业化的版本,称为Xubuntu(或Lubuntu)。我从未听说后两个版本有任何隐私问题,许多人更喜欢它们的功能。如果你想避免这些讨厌的东西,可以试试它们。

相关内容