💻
CSC3150 VM Setup Workflow
  • VM Configuration
    • MacOS/Linux (Intel/x86)
      • Grant Permissions
    • MacOS (ARM64/M1/M2)
    • Windows (AMD/Intel x86)
    • Transferring File from/to VM
Powered by GitBook
On this page
  1. VM Configuration

Transferring File from/to VM

PreviousWindows (AMD/Intel x86)

Last updated 2 years ago

You can simply drag files to the VS Code window after connecting to remote host (VM) to transfer file to VM. To download file from VM back to the host system, just right click file in VS Code window and select "Download".

You can also use scp to transfer file.

For MacOS/Linux (Intel/x86) user:

Host->VM: scp localpath default:remote path

VM->Host: scp default:remote path localpath

For MacOS (ARM64/M1/M2) user:

Host->VM scp -P 31500 localpath csc3150@127.0.0.1:remote path

VM->Host: scp -P 31500 csc3150@127.0.0.1:remote path localpath

For Windows user, please just stick to the VS Code GUI way.

SCP SSH File Transfer