scp指令用於透過ssh在兩台伺服器之間傳輸檔案。大多數scp使用者在系統中已經可以使用scp指令,但它仍然顯示「bash:scp:command not found」。因此註意,scp指令必須在本地和遠端系統上都可用才可以避免這個問題。
安裝SCP指令包
scp指令來自Red Hat系統上的openssh-clients軟體包,openssh-client軟體包用於基於Debian的系統。可以使用以下命令在Linux作業系統上安裝scp命令包。
CentOS / RHEL和Fedora
#yum install openssh-clients
Ubuntu和Debian
$ sudo apt-get install openssh-client
使用SCP命令傳輸檔案
本地到遠端:要將檔案/opt/myfile.txt從本機傳輸到遠端(remote.example.com)系統的/opt/directory,可以使用下列命令。
# scp /opt/myfile.txt remote.example.com:/opt/
遠端到本機:要將檔案/opt/myfile.txt從遠端(remote.example.com)系統傳輸到本機系統/ opt目錄,請使用下列命令。
#scp remote.example.com:/opt/myfile.txt / opt /
這篇文章到這裡就已經全部結束了,更多其他精彩內容可以關注php中文網的其他相關欄位教學! ! !
以上是bash scp:未找到指令的解決方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!