쇼핑 검색 만 제거하려면 어떻게합니까?


16

나는 새로운 13.10 설치를 가지고 있으며이 모든 쇼핑 스파이웨어는 말도 안되는 것을 원합니다. "Ubuntu shopping spyware nonsense"를 검색하면 apt-get remove unity-lens-shopping실제로 단일 렌즈 쇼핑 패키지가 표시되지 않습니다. 13.10에서 쇼핑 검색을 어떻게 제거합니까?

업데이트 : 원격 서버 (Ebay, Amazon, AskUbuntu)를 검색하는 범위와 로컬 컴퓨터를 검색하는 범위를 구별하는 방법이 있습니까? 아니면 그들 모두를 통과해야합니까?

답변:


19

쇼핑 렌즈가 없으므로 Ubuntu 13.10에서 Unity 쇼핑 렌즈를 제거 할 수 없습니다. Ubuntu 13.10에는 거대한 범위의 목록을 사용하여 대시에 결과를 표시하는 Unity Smart Scopes (또는 "100 scopes")라는 기능이 포함되어 있으며 그 중 일부는 쇼핑에 사용됩니다. 따라서 Dash에서 쇼핑 제안을 원하지 않으면 이러한 쇼핑 범위를 비활성화해야합니다 (아래 참조). 쇼핑 제안이없는 Unity Dash

Ubuntu 13.10에서 Unity Dash 플러그인 (범위)을 비활성화하는 방법

Ubuntu 13.10 Saucy Salamander에서 대시 플러그인 (범위)을 비활성화하려면 :

  • 대시를 열고
  • 응용 프로그램 렌즈로 이동합니다 (마우스를 사용하여 수동으로 수행하거나 Super + A 키보드 단축키를 사용).
  • 오른쪽 및 "유형"에서 "결과 필터링"을 클릭하십시오.
  • "대시 플러그인"을 선택하십시오.

모든 대시 검색 플러그인 (범위)이 나열되어야합니다.

플러그인을 비활성화하려면 해당 플러그인을 클릭 한 다음 "비활성화"버튼을 클릭하십시오. 나중에 같은 방식으로 다시 활성화 할 수 있습니다.

Amazon / 쇼핑 제안 Unity Dash 범위 비활성화

Dash에서 쇼핑 제안을 원하지 않으면 Amazon, Ebay, Music Store, Popular Tracks Online, Skimlinks, Ubuntu One Music Search 및 Ubuntu Shop과 같은 범위를 비활성화하십시오 (위의 지침을 사용하여).

명령 줄에서 이러한 쇼핑 대시 플러그인 / 범위를 모두 비활성화하려면 다음 명령을 사용하십시오.

 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']"

1
로컬 범위 (예 : 내 자신의 음악 디렉토리)를 원격 사이트를 검색하는 범위와 구별 할 수있는 방법이 있습니까?
Amanda

6

이제이를위한 GUI가 있습니다.

"시스템 설정"을여십시오 (대시에 입력하십시오). 그런 다음 "보안 및 개인 정보"로 이동하십시오. 그런 다음 "검색". 그런 다음 "온라인 검색 결과 포함"을 해제하십시오.

면책 조항 : 이것은 시스템이 Dash에 입력 한 모든 것을 집에 전화하지 못하게하는 것 같지만 긍정적이지 않습니다.


5

Fix 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

13.10의 경우 127.0.0.1 (localhost)로 요청을 리디렉션하도록 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']";수정 /etc/hosts되었습니다.productsearch.ubuntu.com


3

다른 렌즈도 제거하고 싶다고 가정합니다. 먼저 실제로 설치되는 것에 대한 개요를 얻으십시오.

터미널을 열고 다음 CTRLALTT을 입력하십시오.

 apt-cache policy "unity-lens-*"|grep -B1 Installed

다음과 같은 양식 목록이 제공됩니다.

unity-lens-video:
  Installed: (none)
--
unity-lens-shopping:
  Installed: (none)
--
unity-lens-friends:
  Installed: 0.1.1bzr13.04.12-0ubuntu1
--
....

이제 당신은 당신이 제거하고 싶은 것을 결정할 수 있습니다.

sudo apt-get remove unity-lens-friends

원하는 시스템 상태에 도달 할 때까지

렌즈가 무엇을할지 확실치 않을 때마다 다음과 apt-cache show같은 정보를 얻을 수 있습니다.

apt-cache show unity-lens-files

조금 아래로 볼 수 있습니다 :

Description-en: File lens for unity
 This package contains the "file" lens which can be used
 inside Unity to browse your files.

나는 그 문제를 어느 정도 해결했지만,이 렌즈 중 일부는 내 하드 드라이브에서 파일을 검색하고 일부는 Amazon (및 기타 사이트)을 검색합니다. "쇼핑"렌즈를 로컬 렌즈와 구별 할 수있는 방법이 있습니까?
Amanda

@Amanda 나는 무엇을 보관할 지 결정할 수있는 방법을 추가했습니다.
guntbert
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.