Ubuntu 11.10,经典 Gnome 外壳。前段时间我使用这种方式在 Nautilus 中设置了可编辑地址,在SuperUser上的这个问题中对此进行了描述:
gconftool-2 --type=Boolean --set /apps/nautilus/preferences/always_use_location_entry true
Run Code Online (Sandbox Code Playgroud)
现在我想恢复默认行为。我试过这个:
gconftool-2 --type=Boolean --set /apps/nautilus/preferences/always_use_location_entry false
Run Code Online (Sandbox Code Playgroud)
但它没有帮助。如何恢复默认行为?
命令行
只需在终端中键入以下内容:
gsettings set org.gnome.nautilus.preferences always-use-location-entry false
图形化
要从位置栏切换到路径栏,可以使用dconf-tools .
要安装 dconf-tools,请在终端中运行以下命令:
sudo apt-get install dconf-tools
Run Code Online (Sandbox Code Playgroud)
安装后,在dash中搜索dconf-tools并打开它。
从那里,设置位于org -> gnome -> nautilus -> preference。您需要禁用always-use-location-entry以始终使用路径栏而不是位置栏。
