How to SCP a file from Mac -> Ubuntu VirtualBox?

Put network settings from NAT to bridged adapter in Virtualbox settings for that machine. Then your virtual machine will be in local network with your host machine. It will probably get the IP from modem if DHCP is enabled, then scp to that machine.
You also need to have ssh-server installed on Ubuntu machine:
sudo apt-get install openssh-server
That should work: scp file host:/some/directory


User port forwarding
- With guest running, go to VirtualBox settings/network
- Click Port Forwarding
- Name "ssh", protocol TCP, Host port = 3022, Guest port = 22
Then, on the host,

scp -P 3022 myFile localhost:

After having installed Guest Additions you will be able to create shared folders for access from both, host and guest OS. Any directory on the host can be used for this. The shared folder needs to be mounted on the guest OS by:

sudo mount -t vboxsf [-o OPTIONS] sharename mountpoint

See also this answer on usage of shared folders. To make shared folders acessible on each boot of the guest os, you need to add the mounts to the guest fstab.

Alternatively you can also access directories from the host by adressing them using network shares.


Adding to enedene's answer:

change the adapter settings on your Oracle VM vitualbox to Bridged Adapter On the top left side of you Virtualbox screen click on "Machine" Click on Machine>Settings>Network>

Change the "Attached to:" to "Bridged Adapter" then Click "Ok"

Reset the Virtualbox (Click Machine>Reset)

Once it comes up do an ifconfig in terminal and use the new ip address for SCP


If you install the Virtualbox Guest Addons you can create a shared folder. Then use vboxmount (as root) under Ubuntu to mount the shared folder. Afterward, copy normally (cp).

If you actually need to use scp, let me know. I will dig up that information.