在 ubuntu 22.04LTS 中,文件和文件夹丢失且无法使用 ls -la 访问

在 ubuntu 22.04LTS 中,文件和文件夹丢失且无法使用 ls -la 访问

我使用的是双操作系统 ubuntu 22.04 和 windows 11。在我的本地磁盘分区之一中,我将所有旧文件移动到一个文件夹 A 中,并为我的新文件创建了另一个文件夹 B。我在 ubuntu 上执行了此操作。直到昨天我都可以看到该文件夹​​。今天,当我打开笔记本电脑时,除了文件夹 B 之外,我再也看不到它们了。它们占据了磁盘空间,但在 windows 和 ubuntu 上都看不到。我尝试这样做,ls -la但它给出了以下输出:

ls: cannot access 'file_name': No such file or directory
ls: cannot access 'file_name': No such file or directory
ls: cannot access 'file_name': No such file or directory
ls: cannot access 'file_name': No such file or directory
...

total 24
drwxrwxrwx  1 asif asif 20480 Nov 26  2023  .
drwxr-x---+ 3 root root  4096 Nov 25 20:40  ..
drwxrwxrwx  1 asif asif     0 Aug  4  2021 '$RECYCLE.BIN'
-?????????? ? ?    ?        ?            ? 'braincount umap.jpg'
d?????????? ? ?    ?        ?            ?  CD
d?????????? ? ?    ?        ?            ? 'folder_name'
d?????????? ? ?    ?        ?            ? 'file_name'
-?????????? ? ?    ?        ?            ? 'file_name'
d?????????? ? ?    ?        ?            ?  folder_name
d?????????? ? ?    ?        ?            ?  folder_name
drwxrwxrwx  1 asif asif     0 Nov 16 12:12  crc_scrna
-?????????? ? ?    ?        ?            ? 'ppt final.pdf'
-?????????? ? ?    ?        ?            ? 'ppt prog.pdf'
d?????????? ? ?    ?        ?            ? 'Preimplantation results'
d?????????? ? ?    ?        ?            ?  Syllabus
drwxrwxrwx  1 asif asif     0 Nov 26  2023 'System Volume Information'
drwxrwxrwx  1 asif asif     0 Nov 26  2023 'System Volume Information'
...

我删除了上面的许多重复的细节以使其更具可读性。

请帮助我,它包含我所有必要的文件。我将不胜感激。

我尝试了sudo chmod 755 /path/to/directory/*网上能找到的所有方法。但到现在都没用。请帮忙。#SOS

答案1

感谢您的解决方案。感谢您的时间。

我已通过在我的 Windows 操作系统上运行该分区纠正了错误checkdisk。我可以看到 ubuntu 和 windoes 中的所有文件和文件夹。

再一次感谢你。

最佳,A.

答案2

asif这似乎是权限错误。您以无权查看相关文件的身份登录。

要绕过此问题,请使用提升您的权限sudo ls -la。为了查看文件,您需要以用户身份更改您的权限。

sudo chmod u+rwx /*path to fileA*/

希望这可以帮助!

相关内容