답변:
쇼핑 렌즈가 없으므로 Ubuntu 13.10에서 Unity 쇼핑 렌즈를 제거 할 수 없습니다. Ubuntu 13.10에는 거대한 범위의 목록을 사용하여 대시에 결과를 표시하는 Unity Smart Scopes (또는 "100 scopes")라는 기능이 포함되어 있으며 그 중 일부는 쇼핑에 사용됩니다. 따라서 Dash에서 쇼핑 제안을 원하지 않으면 이러한 쇼핑 범위를 비활성화해야합니다 (아래 참조). 쇼핑 제안이없는 Unity Dash
Ubuntu 13.10 Saucy Salamander에서 대시 플러그인 (범위)을 비활성화하려면 :
모든 대시 검색 플러그인 (범위)이 나열되어야합니다.
플러그인을 비활성화하려면 해당 플러그인을 클릭 한 다음 "비활성화"버튼을 클릭하십시오. 나중에 같은 방식으로 다시 활성화 할 수 있습니다.
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']"
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
다른 렌즈도 제거하고 싶다고 가정합니다. 먼저 실제로 설치되는 것에 대한 개요를 얻으십시오.
터미널을 열고 다음 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.