恐怖和悬疑故事随处可见。通过阅读我的RSS订阅源,我发现Canonical公司竟然利用其logo的版权来审查对Ubuntu的批评,这种情况以前从未发生过。
事情经过如下:Fix Ubuntu网站的所有者Micah Lee发布了一段代码,用于删除 Unity 新版本中包含的在线搜索功能,许多人声称该功能侵犯了他们的隐私。
问题出在哪里?嗯,Micah Lee在他的网站上使用了Ubuntu 的名称和徽标,而众所周知,成千上万的网站和博客都在这样做。
但由于Fix Ubuntu的目标是从Unity中移除一个为 Canonical 带来利润的功能,因此他们禁止该组织使用 Ubuntu 的标志,甚至禁止使用Ubuntu 这个词/名称。
Micah 已经移除了标志,但保留了名称,详情请见此处。
你怎么看? 就我而言,我给Micah先生+1000,用于分享并希望保护我们的隐私和Canonical,因为他为-1。
脚本执行
基本上,我们要做的就是打开一个终端并运行:
gsettings设置com.canonical.Unity.Lenses远程内容搜索无; 如果[`cat / etc / lsb-release | grep DISTRIB_RELEASE | 切-d“ =” -f2` \ <'13.10 .1']; 然后sudo apt-get remove -y unity-lens-shopping; 否则gsettings设置了com.canonical.Unity.Lenses禁用范围“ ['more_suggestions-amazon.scope','more_suggestions-u127.0.0.1ms.scope','more_suggestions-populartracks.scope','music-musicstore.scope','more_suggestions- ebay.scope','more_suggestions-ubuntushop.scope','more_suggestions-skimlinks.scope']“; fi; sudo sh -c'echo“ XNUMX productsearch.ubuntu.com” >> / etc / hosts';
这是做什么的? |
|
gsettings set com.canonical.Unity.Lenses remote-content-search none |
它会禁用《远程搜索》,即搜索不需要Internet |
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']" |
禁用其他也可以访问Internet的Dash镜头 |
sudo apt-get remove -y unity-lens-shopping |
卸载亚马逊镜头 |
sudo sh -c 'echo "127.0.0.1 productsearch.ubuntu.com" >> /etc/hosts' |
阻止与Ubuntu广告服务器的连接,以防万一 |