我正在尝试使用 Raspbian 从 Raspberry Pi 上的文件夹中删除文件,但我不断收到错误。
以下是我采取的一些步骤(我将文件名替换为foo
并将文件夹名称替换为folder
)
> ls -al
total 4032
drwxrwxrwx 1 root root 4096 Jun 22 19:00 .
drwxrwxrwx 1 root root 4096 Jun 22 19:43 ..
-rwxrwxrwx 1 root root 4120032 Jun 18 20:02 foo
> rm [TAB] (auto completes to file name)
rm: cannot remove foo: No such file or directory
> rm -i *
sure you want to delete the only file in /complete/path/folder? y
rm: remove regular file foo? y
rm: cannot remove foo: No such file or directory
还尝试删除文件夹本身
> cd ..
> rm -rf folder
rm: cannot remove folder: Directory not empty
尝试检查是否有任何内容保存该文件,但没有输出
> lsof foo
根据请求,这里是输出ls -alR foo
-rwxrwxrwx 1 root root 4120032 Jun 18 20:02 foo
我还能做些什么来解锁并删除该文件(或文件夹)吗?