Unity dash:抱歉,没有符合您搜索的内容

bar*_*rej 6 unity lenses unity-dash 14.04

我面临问题

抱歉,没有与您的搜索相符的内容

在应用程序中搜索时。但是在文件或音乐等中搜索是可以的。只是没有找到应用程序。它甚至不试图找到任何东西。无论您搜索什么,都没有应用程序。

统一破折号没有与您的搜索匹配的内容

这是我的尝试列表:

sudo apt-get install unity-scope-home
Reading package lists... Done
Building dependency tree       
Reading state information... Done
unity-scope-home is already the newest version.
0 to upgrade, 0 to newly install, 0 to remove and 0 not to upgrade.
Run Code Online (Sandbox Code Playgroud)

没有效果。

sudo apt-get install unity-place-applications unity-place-files
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package unity-place-applications
E: Unable to locate package unity-place-files
Run Code Online (Sandbox Code Playgroud)

没有希望

rm ~/.cache -R
unity --reset &
Run Code Online (Sandbox Code Playgroud)

结果:

[1] 5355
me@mypc:~$ ERROR: the reset option is now deprecated
Run Code Online (Sandbox Code Playgroud)

即使通过注销/登录仍然无法正常工作。

sudo apt-get update
sudo apt-get upgrade
Run Code Online (Sandbox Code Playgroud)

不!

sudo apt-get install unity-scope-home unity-scope-loader
[sudo] password for me: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package unity-scope-loader
Run Code Online (Sandbox Code Playgroud)

不!

sudo apt-get install --reinstall unity-scope-home
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 to upgrade, 0 to newly install, 1 to reinstall, 0 to remove and 0 not to upgrade.
Need to get 0 B/105 kB of archives.
After this operation, 0 B of additional disk space will be used.
(Reading database ... 565848 files and directories currently installed.)
Preparing to unpack .../unity-scope-home_6.8.2+14.04.20131029.1-0ubuntu1_amd64.deb ...
Unpacking unity-scope-home (6.8.2+14.04.20131029.1-0ubuntu1) over (6.8.2+14.04.20131029.1-0ubuntu1) ...
Setting up unity-scope-home (6.8.2+14.04.20131029.1-0ubuntu1) ...
Run Code Online (Sandbox Code Playgroud)

没有效果!


编辑:

我检查并意识到即使其他用户帐户也有同样的问题。

May*_*hux 0

E:无法找到包 unity-place-applications

E:无法找到包 unity-place-files

unity-place-applications并且在 Ubuntu 14.04 中不再可用unity-place-files ,而是使用在 Universe 存储库中创建的and ,因此首先启用它(如果由于某种原因禁用它,否则将其跳到最后一个命令)unity-lens-applicationsunity-lens-files

sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"
Run Code Online (Sandbox Code Playgroud)

现在更新软件源

sudo apt-get update
Run Code Online (Sandbox Code Playgroud)

现在您可以安装它:

sudo apt-get install unity-lens-applications

sudo apt-get install unity-lens-files 
Run Code Online (Sandbox Code Playgroud) 尝试执行以下操作: mkdir local.OLD mkdir gnome.OLD mv .local/share/applications/*.desktop local.OLD/ mv .gnome/apps/*.desktop gnome.OLD/ 然后注销,登录并立即检查结果。


小智 0

我刚刚遇到了与您类似的问题:报告了 unity-scope-loader 崩溃,dash 应用程序搜索找不到任何应用程序,甚至在运行某些命令时 gnome 终端也无声地崩溃了。

最后我通过纠正 /tmp 文件夹的权限解决了这个问题,方法如下:

1)检查您对/tmp文件夹的权限。

ls -la /tmp

我找到了 的写权限。对于非 root 用户已删除。

2) 使 /tmp 对每个人都可写 cd /tmp

须藤 chmod 1777 。

现在一切看起来都正常

为什么/tmp的写权限被去掉了?也许是因为我之前不小心将根文件系统解压到 /tmp 文件夹中。