Linux中國

讓 Ubuntu 上的 Unity 在線搜索功能見鬼去吧!

正如上面的截圖所見,Unity顯示內置的 Terminal 應用、引用鏈接、天氣鏈接和其他第三方的推薦,如電影等。這是非常惱人的並且在 Unity Dash 上看起來很糟。同時,它顯示了太多的搜索結果,並使我迷惑。

如果你像我一樣不需要這個功能,在你的終端輸入以下命令:

wget -q -O - https://fixubuntu.com/fixubuntu.sh | bash

上述腳本的內容如下:

#!/bin/bash

GS="/usr/bin/gsettings"
CCUL="com.canonical.Unity.lenses"

# 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 awk "BEGIN {exit !($V < 12.10 || $V >= 14.10)}"; then
  echo "Good news! This version of Ubuntu is not known to invade your privacy."
else

  # Check Canonical schema is present. Take first match, ignoring case.
  SCHEMA="`$GS list-schemas | grep -i $CCUL | head -1`"
  if [ -z "$SCHEMA" ]
    then
    printf "Error: could not find Canonical schema %s.n" "$CCUL" 1>&2
    exit 1
  else
    CCUL="$SCHEMA"
  fi

  # Turn off "Remote Search", so search terms in Dash don&apos;t get sent to the internet
  $GS set $CCUL remote-content-search none

  # If you&apos;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&apos;re using a later version, disable remote scopes
  else
    $GS set $CCUL disabled-scopes 
      "[&apos;more_suggestions-amazon.scope&apos;, &apos;more_suggestions-u1ms.scope&apos;,
      &apos;more_suggestions-populartracks.scope&apos;, &apos;music-musicstore.scope&apos;,
      &apos;more_suggestions-ebay.scope&apos;, &apos;more_suggestions-ubuntushop.scope&apos;,
      &apos;more_suggestions-skimlinks.scope&apos;]"
  fi;

  # Block connections to Ubuntu&apos;s ad server, just in case
  if ! grep -q "127.0.0.1 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

再次,我進入到 Unity dash 的終端。現在 Unity 只顯示終端應用,而不是無用的垃圾,現在 Unity Dash 看起來還不錯。

全部搞定,讓那些雜亂的東西再也不要回來了。

歡呼~!

更新:這一招只適用Unity desktop。如果你使用其他的比如GNOME,LXDE或Xfce,你不用這麼做。同時,這個在線搜索功能將不會包含在Ubuntu 14.10和即將推出的版本中。

Source & Reference: Fixubuntu

via: http://www.unixmen.com/disable-unity-online-search-feature-ubuntu-14-04-lts-older-versions/

譯者:tenght 校對:Caroline

本文由 LCTT 原創翻譯,Linux中國 榮譽推出


本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive

對這篇文章感覺如何?

太棒了
0
不錯
0
愛死了
0
不太好
0
感覺很糟
0
雨落清風。心向陽

    You may also like

    Leave a reply

    您的電子郵箱地址不會被公開。 必填項已用 * 標註

    此站點使用Akismet來減少垃圾評論。了解我們如何處理您的評論數據

    More in:Linux中國