新品の13.10をインストールしていますが、このすべてのショッピングスパイウェアはナンセンスになりたいです。 「Ubuntuショッピングスパイウェアナンセンス」を検索するとapt-get remove unity-lens-shopping
になりましたが、実際にはユニティレンズショッピングパッケージは表示されません。 13.10でショッピング検索を削除するにはどうすればよいですか?
更新:リモートサーバー(Ebay、Amazon、AskUbuntu)を検索するスコープと、ローカルコンピューターを検索するスコープを区別する方法はありますか?それとも、すべてを調べなければなりませんか?
Fix Ubunt には解決策があることがわかりました:
#!/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の場合、それは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
に対するリクエストを127.0.0.1(localhost)にリダイレクトするようにproductsearch.ubuntu.com
を編集します
Ubuntu 13.10では、ショッピングレンズがないため、Unityショッピングレンズを削除できません。 Ubuntu 13.10にはUnity Smart Scopes(または「100スコープ」)と呼ばれる機能が付属しています。この機能は、Dashで結果を表示するためにスコープの膨大なリストを使用します。したがって、Dashで買い物候補を表示したくない場合は、これらの買い物範囲を無効にする必要があります(以下を参照)。買い物候補のないUnity Dash
Ubuntu 13.10 Saucy Salamanderで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']"
これを行うためのGUIがあります。
「システム設定」を開きます(ダッシュに入力します)。次に、「セキュリティとプライバシー」に進みます。次に「検索」。次に、「オンライン検索結果を含める」をオフに設定します。
免責事項:これにより、Dashに入力されたすべてのものをシステムがホームに電話できなくなる可能性がありますが、私はこれに肯定的ではありません。
他のレンズも取り外したいと思っています。そのため、最初に実際にインストールされるものの概要を取得します。
ターミナルを開きます。 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.