Ubuntu 22.04. 尝试使用 sudo 复制受密码保护的 pdf 文件时出现操作不允许的情况

Ubuntu 22.04. 尝试使用 sudo 复制受密码保护的 pdf 文件时出现操作不允许的情况

我有一台 ubuntu 22.04 服务器。我通过 scp 将受密码保护的 pdf 文件复制到用户主目录,然后尝试将同一个 pdf 复制到使用另一个名称的同一目录中。

例如:sudo cp A1.pdf _A1.pdf

我越来越

cp: cannot open 'A1.pdf' for reading. Operation not permitted error.

但我可以在另一台运行 ubuntu 20.04 的服务器上做同样的事情。

是什么阻止我在 22.04 中复制文件?

ubuntu@ip-10-xxx-xxx-xx:~$ lsattr A2.pdf
lsattr: Operation not permitted While reading flags on A2.pd
ubuntu@ip-10-xxx-xxx-xx:~$lsof A2.pdf     # (returned empty) 
ubuntu@ip-10-xxx-xxx-xx:~$
ubuntu@ip-10-xxx-xxx-xx:~$ file A2.pdf 
A2.pdf: writable, regular file, no read permission
ubuntu@ip-10-xxx-xxx-xx:~$ ls A2.pdf -al
-rw-r--r-- 1 ubuntu ubuntu 1354946 Dec 27 06:36 A2.pdf

相关内容