NOTE: if you've never used locate before you'll need to run updatedb first like this:
sudo updatedb
or if you are already root, just run updatedb, usually it can take time so I run it in the background like this:
sudo updatedb &
the & causes the command to be run in the background, you can type jobs to see if its still running, but you'll get notified when it terminates like this:
[1]+ Done updatedb
Some people hate the shell, but even so, I have found it good to learn both GUI and shell no matter what OS you are using. There ARE going to be times when something can't be done via the GUI, esp in a linux environment. This was very true when it came to bridging ethernet interfaces, etc..
打开文件浏览器并按Ctrl+ H,显示隐藏文件(以 a 开头的文件
.
),现在导航到.cache
→wallpaper
。或点击Alt+F2并输入
nautilus .cache/wallpaper/
如果您的图片来自互联网,那么我建议您截屏(应用程序-> 附件-> 截屏)。
然后将您的屏幕截图上传到TinEye.com。在结果页面上,从左侧导航中选择“最大图像”。然后查看网站是否找到了您的图像。
这个“反向图像搜索”使我能够做你以前做的事情。
如果您
gconftool --get /desktop/gnome/background/picture_filename
在终端中运行,那么它将输出图像文件的位置。(GConf 是 GNOME 设置管理器,
/desktop/gnome/background/picture_filename
是您正在检索的特定设置。您还可以使用gconf 编辑器以图形方式浏览这些设置。)或点击Alt+F2并输入
(这将使用默认图像查看器,GNOME 之眼打开您的图像)
如果您绝对放错了文件并且无法上网询问它可能存储的位置,请始终记住这一点……多年来它对我帮助很大。
CTRL++获取shell,然后ALT:T
locate
(在此处键入您要查找的文件名,不带括号)NOTE: if you've never used
locate
before you'll need to runupdatedb
first like this:or if you are already
root
, just runupdatedb
, usually it can take time so I run it in the background like this:the
&
causes the command to be run in the background, you can typejobs
to see if its still running, but you'll get notified when it terminates like this:Some people hate the shell, but even so, I have found it good to learn both GUI and shell no matter what OS you are using. There ARE going to be times when something can't be done via the GUI, esp in a linux environment. This was very true when it came to bridging ethernet interfaces, etc..