如何在Ubuntu 17.10及更高版本中禁用“搜索”类型的文本?

我找不到启用交互式搜索

gsettings set org.gnome.nautilus.preferences enable-interactive-search true. 

我搜索使用

 gsettings list-recursively | grep search 

 gsettings list-recursively | grep interactive 

但没有这样的选择。

你可以帮我在Ubuntu 17.10及更高版本中禁用它吗?

Gnome决定提前删除导航function,并将其替换为搜索。 他们没有看到这对许多用户来说是个大问题。

直到Ubuntu 17.10 Canonical提供了Nautilus的修补版本,保留了此function。 事实并非如此,并且提前输入已经不复存在了。

您当然欢迎加入Nautilus邮件列表,并说明仍然需要此function的原因。 不过,我认为没有多大用处。 其中一位维护人员告诉我“这已被讨论过死亡,我们可能听到了所有的争论。”

我参与了与Nautilus开发人员的长时间辩论,我们无法说服他们像以前一样拥有这个function。 唯一的回应是它将来会有所改善。

我喜欢Nautilus但是这个改变让我无法使用它。 这让我发疯了。

我的解决方案很简单:切换到另一个软件。 我现在使用Nemo,它是Nautilus的叉子。

如果你真的想在Nautilus 3.26中使用这个function(现在是Ubuntu 17.10中的当前版本),请查看我的分步指南,以便在这个问题中得到它: 传统的搜索类型更新Nautilus版本在补丁支持的情况下构建您自己的Nautilus版本!

实际上有一种方法可以在Nautilus 3.26(Ubuntu 17.10中的当前版本)中获得这个,它使用由令人敬畏的Arch Linux社区提供的补丁从源代码构建自己的版本。 幸运的是,Ubuntu中的优秀构建系统使这很容易。 这是步骤。 我假设你将在~/bld-nautilus-typeahead 。 打开终端并执行以下操作:

 # install some necessary tools sudo apt-get install git # Create your work directory and go there mkdir bld-nautilus-typeahead ; cd bld-nautilus-typeahead # Clone the repository holding the needed patch: git clone https://aur.archlinux.org/nautilus-typeahead.git # Make sure the source repositories for the main archives are available: sudo nano /etc/apt/sources.list # If the deb-src line for the main repository (usually around line 6) # is commented out (starts with a #) # uncomment it (remove the #) and save the file. sudo apt-get update # Install the build dependencies sudo apt-get build-dep nautilus # Retrieve the sources for Nautilus apt-get source nautilus # Source should now be in the 'nautilus-3.26.0/' folder. Go there cd nautilus-3.26.0/ # and Apply the patch from arch-linux patch -p0 < ../nautilus-typeahead/nautilus-restore-typeahead.patch # Build the package from source dpkg-buildpackage -rfakeroot -uc -b # This will take a little time. If everything goes well, the related packages will end up in the parent directory. Go there cd .. # and install the required packages sudo dpkg -i nautilus_3.26.0-0ubuntu1_amd64.deb nautilus-data_3.26.0-0ubuntu1_all.deb 

开始新的Nautilus。 输入一些字母。 体验当你想要的文件被选中时发生的快乐感。

Woohoooo! Nautilus有一个全新的修改版本。

请参阅https://launchpad.net/~lubomir-brindza/+archive/ubuntu/nautilus-typeahead

在我再次找到此function之前,我已经等了很久。 希望Nautilus开发人员考虑将其添加为应用程序中的一个选项。