在Linux系统中,互传文件通常可以使用scp
(secure copy) 命令来完成。
1.从远程服务器复制文件到本地:
scp username@remote_host:/path/to/remote/file /path/to/local/directory
2.将本地文件复制到远程服务器
scp /path/to/local/file username@IP:/path/to/remote/directory
在这些命令中,/path/to/local/file
是你本地机器上的文件路径,username
是远程服务器上的用户名,remote_host
是远程服务器的IP地址或主机名,/path/to/remote/directory
是远程服务器上的目标目录路径。
确保你在执行这些命令时有足够的权限来访问远程服务器和本地文件系统。如果远程服务器使用的是不同的端口,你可以使用-P
参数指定端口:
scp -P port /path/to/local/file username@remote_host:/path/to/remote/directory
替换port
为实际使用的端口号。