0
Q:

how to scp from vm to local

# Download the file ~/yourFile.xyz to your home directory on your computer
$ scp [email protected]:~/yourFile.xyz ~/.
 
# Download the folder yourFolder to your home directory on your computer
$ scp -r [email protected]:~/yourFolder ~/.
0
# Upload the file yourFile.xyz to your home directory on the VM
$ scp yourFile.xyz [email protected]:~/.
 
# Upload the folder yourFolder to your home directory on the VM
$ scp -r yourFolder [email protected]:~/.
0

New to Communities?

Join the community