清空文档文件夹

清空文档文件夹

我的home/user/Documents文件夹已空。权限也已更改,不允许尝试写入。我猜想这是在升级到新的 Kernel 45 后发生的。我注意到一个名字奇怪的(临时的?)文件“tmpmGRH...很多随机字母...Lqa”,大小为 17GB,我猜想其中包含数据。我有一个不太新的备份,但不幸的是不在我的位置。如果您能告诉我发生了什么以及如何恢复数据和/或恢复文件夹,我将不胜感激。

ls -la | head -5

total 8
dr-xr-xr-t  2 user user 4096 okt 24 21:36 .
drwxr-xr-x 59 user user 4096 okt 27 15:33 ..

答案1

您无法写入Documents文件夹,因为您已w关闭该位,并且t已打开(粘性位)。您可以使用以下命令将Documents目录恢复为默认目录:

$ chmod 0755 ~/Documents

至于以前的文件,您必须尝试回忆一些您确定以前在文件夹中的文件的名称Documents并找到其中一个。当您找到一个文件时,其他文件应该在同一文件夹中。

您可以使用以下方式执行此操作:

$ 定位 -ir “定位 -ir “英特尔.*pdf”
/home/users/l/j/ljames/Documents/IntelliApp Releases.pdf
/home/users/l/j/ljames/Documents/IntelliApp Releases2.pdf
/home/users/l/j/ljames/Documents/IntelliApp Releases3.pdf
/home/users/l/j/ljames/Documents/IntelliApp Releases4.pdf
/home/users/l/j/ljames/Documents/IntelliApp Releases5.pdf
/mnt2/datadrive/extroot/home/users/l/j/ljames/Documents/IntelliApp Releases.pdf
/mnt2/datadrive/extroot/home/users/l/j/ljames/Documents/IntelliApp Releases2.pdf
/mnt2/datadrive/extroot/home/users/l/j/ljames/Documents/IntelliApp Releases3.pdf
/mnt2/datadrive/extroot/home/users/l/j/ljames/Documents/IntelliApp Releases4.pdf
/mnt2/datadrive/extroot/home/users/l/j/ljames/Documents/IntelliApp Releases5.pdf
/opt/Adobe/Reader9/浏览器/intellinux/nppdf.so
/opt/Adobe/Reader9/Reader/intellinux/plug_ins/AcroForm/adobepdf.xdc
/opt/Adobe/Reader9/Reader/intellinux/plug_ins/AcroForm/PMP/libpdf417pmp.pmp
/opt/Adobe/Reader9/Reader/intellinux/plug_ins/Annotations/Stamps/Words.pdf
/opt/Adobe/Reader9/Reader/intellinux/plug_ins/Annotations/Stamps/ENU/Dynamic.pdf
/opt/Adobe/Reader9/Reader/intellinux/plug_ins/Annotations/Stamps/ENU/SignHere.pdf
/opt/Adobe/Reader9/Reader/intellinux/plug_ins/Annotations/Stamps/ENU/StandardBusiness.pdf

以上示例是regex使用 进行的搜索locate。在上面的示例中,我知道我将“Intelli”文档保存为文件.pdf。因此,找到该文档将显示我可以在同一区域中查找其他文档的目录。

$命令提示符,提示符后面跟着命令。命令行后面的文本是命令的输出。

相关内容