This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
vitualbox:start [2016/12/16 00:40] dwheele [To link a Windows folder with a Linux directory] |
vitualbox:start [2016/12/16 00:58] (current) dwheele |
||
|---|---|---|---|
| Line 14: | Line 14: | ||
| < | < | ||
| df -h | df -h | ||
| - | </ | ||
| - | |||
| - | Use the shared name as " | ||
| - | < | ||
| - | mount -t vboxsf NAME /mnt/folder | ||
| </ | </ | ||
| Line 37: | Line 32: | ||
| / | / | ||
| </ | </ | ||
| + | |||
| + | |||
| + | Use the shared name as " | ||
| + | < | ||
| + | mount -t vboxsf NAME /mnt/folder | ||
| + | </ | ||
| + | |||
| + | According to the Oracle instructions here: | ||
| + | |||
| + | https:// | ||
| + | | ||
| + | I modified ''/ | ||
| + | |||
| + | <code bash> | ||
| + | #!/bin/sh -e | ||
| + | # | ||
| + | # rc.local | ||
| + | # | ||
| + | # This script is executed at the end of each multiuser runlevel. | ||
| + | # Make sure that the script will "exit 0" on success or any other | ||
| + | # value on error. | ||
| + | # | ||
| + | # In order to enable or disable this script just change the execution | ||
| + | # bits. | ||
| + | # | ||
| + | # By default this script does nothing. | ||
| + | |||
| + | mount -t vboxsf cantatamusic / | ||
| + | mount -t vboxsf Code / | ||
| + | exit 0 | ||
| + | </ | ||
| + | |||
| + | |||