Share data between systems through FM RFC_TABLE_ACCESS
Suppose I want to share the folder temp in the host operating system to Ubuntu in the virtual machine, and define this temp folder as a shared folder in the virtual machine settings of Virtual Box.
Enter the Ubuntu operating system in the virtual machine and use the command line
sudo mount -t vboxsf temp /mnt/share
After that, in Ubuntu, you can access the temp folder in the host operating system Windows 10 by accessing the /mnt/share folder.
Recommended Posts