有多种方法可以将文件从宿主机拷贝到CentOS虚拟机中,以下是几种常用的方法:
scp /path/to/file username@hostname:/path/to/destination
其中,/path/to/file是宿主机上的文件路径,username是虚拟机的用户名,hostname是虚拟机的IP地址或主机名,/path/to/destination是虚拟机中的目标路径。
sftp username@hostname
然后使用put命令将文件上传到虚拟机中:
put /path/to/file /path/to/destination
以上是几种常用的方法,选择适合自己的方式进行文件拷贝即可。