15.11 存储的资料突然不见了!怎么回事?!
Tofloor
poster avatar
j***y@sina.com
deepin
2019-07-30 22:05
Author
本来在图片文件夹中存放了一些壁纸,还有不少吉他谱子的图片,我很确定自己没有删除,但是现在图片文件夹为空。在此之前,因为文管有时会卡死,我就把deepin-anything禁用了,不知道跟这个有没有关系?
现在我收集的谱子全都不见了,太伤心了。https://bbs.deepin.org/user/101846
Reply Favorite View the author
All Replies
avatar
j***y@sina.com
deepin
2019-07-31 02:37
#1
  现在论坛这么冷清???                                             

Reply View the author
avatar
jianguo922
deepin
2019-07-31 02:46
#2
应该是有关系的,默认的文管应该没这个问题
Reply View the author
avatar
189******23
deepin
2019-07-31 04:32
#3
不至于吧
终端下 find /home/你的用户名/ -name '如果你记得文件名或者后缀' -print
看看
Reply View the author
avatar
aida
deepin
2019-07-31 18:51
#4
在终端  cd  图片

然后ls -al 看一下

deepin-anything 不会删文件的,只是一个搜索时的文件索引
Reply View the author
avatar
j***y@sina.com
deepin
2019-07-31 19:39
#5
https://bbs.deepin.org/post/181365
在终端  cd  图片

然后ls -al 看一下


Reply View the author
avatar
deepinuser17
deepin
2019-07-31 19:50
#6
检查一下Trash文件夹。

另外可以用命令来搜索一下。
  1. cd ~
  2. find . -name "*png" -exec ls -l {} \;
Copy the Code
Reply View the author
avatar
wenzhizhong
deepin
2019-07-31 19:59
#7
是不是你之前放在root 用户的图片目录/root/Pictures下?
Reply View the author
avatar
j***y@sina.com
deepin
2019-07-31 20:19
#8
https://bbs.deepin.org/post/181365
是不是你之前放在root 用户的图片目录/root/Pictures下?

不是的                     
Reply View the author
avatar
j***y@sina.com
deepin
2019-07-31 20:23
#9
谢谢各位的回复!找不到就算了,谁让我手欠,换了用了两年的neon呢。
不过请问上图中ls -al返回的信息是啥意思?
Reply View the author
avatar
deepinuser17
deepin
2019-07-31 20:29
#10
如果你没有在深度终端里用命令删除这些文件,那么这些文件很可能是被移到哪个文件夹里去了。我提供的命令可以帮助查找。
Reply View the author
avatar
wenzhizhong
deepin
2019-07-31 20:45
#11
https://bbs.deepin.org/post/181365
谢谢各位的回复!找不到就算了,谁让我手欠,换了用了两年的neon呢。
不过请问上图中ls -al返回的信 ...

以列表的方式显示全部文件信息
Reply View the author
avatar
j***y@sina.com
deepin
2019-07-31 21:29
#12
https://bbs.deepin.org/post/181365
如果你没有在深度终端里用命令删除这些文件,那么这些文件很可能是被移到哪个文件夹里去了。我提供的命令可 ...

谢谢!试了,没找到。我自己绝对没有执行过删除命令
Reply View the author
avatar
aida
deepin
2019-07-31 22:25
#13
sudo apt install locate -y && sudo updatedb


然后通过 locate -i 你的图片名定位一下
Reply View the author
avatar
CrystalRays
deepin
2019-08-01 21:29
#14
本帖最后由 crystalrays 于 2019-8-1 13:30 编辑
https://bbs.deepin.org/post/181365
sudo apt install locate -y && sudo updatedb

aida,我也遇到过类似的事情,https://bbs.deepin.org/post/180514
Reply View the author
avatar
funtoo
deepin
2019-08-02 00:25
#15
本帖最后由 funtoo 于 2019-8-1 16:34 编辑

看看是否触发了overlayroot,方法是运行
  1. $ df -Th
Copy the Code
看一下/挂载点的文件系统类型是否为overlay。这种模式下所有的修改都会在重启后消失。
如果确实误触发了overlayroot,可以用
  1. # overlayroot-disable
Copy the Code
命令关闭并重启。
Reply View the author