scp 報錯 not a regular file

大飛_dafei發表於2018-03-09

scp 報錯  not a regular file

兩臺 linux 伺服器之間拷貝檔案;

從 A 伺服器(192.168.1.113) 拷貝到 B 伺服器:

命令:  scp  test2 dafei@192.168.1.113:/data/www/test/

報錯: test2: not a regular file

原因:這樣相當於下載資料夾,而非檔案

解決辦法:新增引數 -r

正確命令: scp -r test2 dafei@192.168.1.113:/data/www/test/


相關文章