尝试将文件从一个系统复制到另一个系统时,我发现了2个命令
scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null alice29.txt abc@1.2.3.4:/home/fun/test_store
scp -P 22 alice29.txt abc@1.2.3.4:/home/fun/test_store/
第一个命令有效,而第二个命令返回目标路径被拒绝的错误许可。
Dest Dir权限:
drwsrwsrwx 3 root root 4096 May 4 16:51 test_store
src文件权限:
-rwsrwsrwt 1 root root 152089 Sep 26 1996 alice29.txt
错误:
scp: /home/fun/test_store//alice29.txt: Permission denied