08.11.2013

Ubuntu Privacy Fix - Ubuntu-Privatsphärenschutz


The Ubuntu Desktop has the unpleasant feature to send all kinds of typed stuff to Amazon, Ebay & Co. This isn't only "not nice", it's "broken". Here comes the help.

Der Ubuntu-Desktop hat die unangenehme Eigenschaft allerhand eingetipptes Zeug an Amazon, Ebay & Co. zu senden. Das ist nicht nur "nicht nett", sondern "kaputt".  Hier kommt die Hilfe.

#!/bin/bash
## filname: fix_ubuntu_privacy.bash
## found @ https://fixubuntu.com/
## author: Micah Lee, Electronic Frontier Foundation (EFF),
## edited by Jörg Reinholz
## download from http://www.fastix.org/r/fix_ubuntu_privacy.bash
## licence: Use this! Now!

gsettings set com.canonical.Unity.Lenses remote-content-search none 2> /dev/null;
ubuntuVersion=`/usr/bin/lsb_release -rs | tr -d '.'`;
if test $ubuntuVersion -lt 1310; then
  sudo apt-get remove -y unity-lens-shopping 2> /dev/null;
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'
]" 2> /dev/null;
fi;
echo "echo '0.0.0.0 productsearch.ubuntu.com' >> /etc/hosts;" | sudo sh

  1. download this,
  2. use a terminal and change to your download-dir. 
  3. run the skript with "bash fix_ubuntu_privacy.bash"
  1. Lade das herunter.
  2. Benutze ein Terminal und wechsle in das Download-Verzeichnis.
  3. Starte das Skript mit "bash fix_ubuntu_privacy.bash"
Why i write this? - Warum ich das schreibe?

2 Kommentare:

Anonym hat gesagt…

Ubuntu-Bashing? o.O

. hat gesagt…

"Ubuntu-Bashing? o.O"

Darum geht es nicht. Es geht darum, dass bei Benutzung des Ubuntu-Desktops die Eingaben an eine Reihe von Diensten im Web übertragen wird und das eventuell die Inhalte der Webseite https://fixubuntu.com/ verschwinden.

Zudem musste das originale Skript "etwas verbessert" werden :)

Kommentar veröffentlichen