Se você realmente quer ter essa funcionalidade no Nautilus 3.26 (que é agora a versão atual no Ubuntu 17.10), confira o meu guia passo-a-passo para obter essa pergunta: Modelo tradicional de busca-como-você-tipo nas versões mais recentes do Nautilus para construa sua própria versão do Nautilus com o suporte corrigido de volta!
Na verdade, existe uma maneira de obter isso no Nautilus 3.26 (o atual
versão no Ubuntu 17.10), que está construindo sua própria versão a partir
fonte usando um patch fornecido pela incrível comunidade Arch Linux.
Felizmente, o ótimo sistema de compilação no Ubuntu torna isso muito fácil.
Aqui estão os passos. Eu suponho que você estará trabalhando em
%código%. Abra o terminal e faça o seguinte:
# 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
Inicie um novo Nautilus. Digite algumas letras. Experimente essa sensação de
alegria que acontece quando o arquivo pretendido é selecionado.