Ubuntu复制文件问题(无法统计文件)


15

使用命令复制文件时遇到了问题,

cp ~/Downloads/sample.pdf ~/Desktop/

但是终端给我一个信息cp: cannot stat 'sample.pdf': No such file or directory


ls -al从〜/ Downloads运行时的输出是什么?如果没有完全相同名称的文件要复制,您将看到错误。

Answers:


10

您是否已验证sample.pdf是downloads文件夹中的确切文件名?看起来路径不正确,并且该文件实际上不存在。尝试这个...

ll ~/Downloads

查看是否sample.pdf在文件列表中显示。


2
实际上,我在终端机中遇到了错字,无论如何,谢谢您的回答。
Herks

1

如果该文件存在,则您可能没有正确的权限,请复制该文件。在终端中运行:sudo chmod 775 /home/<user>/Downloads/sample.pdf授予您自己的权限并 sudo chown <your-user>:<your-user-group> /home/<user>/Downloads/sample.pdf拥有该文件,然后尝试再次复制它。您的用户组应与您的用户具有相同的值。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.