This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
vitualbox:start [2016/12/16 00:39] dwheele created |
vitualbox:start [2016/12/16 00:58] (current) dwheele |
||
|---|---|---|---|
| Line 15: | Line 15: | ||
| df -h | df -h | ||
| </ | </ | ||
| + | |||
| + | < | ||
| + | root@homestead:/ | ||
| + | Filesystem | ||
| + | udev 983M | ||
| + | tmpfs | ||
| + | / | ||
| + | tmpfs 1001M 4.0K 1001M 1% /dev/shm | ||
| + | tmpfs | ||
| + | tmpfs 1001M 0 1001M 0% / | ||
| + | / | ||
| + | cantatamusic | ||
| + | Code 466G 381G | ||
| + | tmpfs | ||
| + | Code 466G 381G | ||
| + | / | ||
| + | </ | ||
| + | |||
| Use the shared name as " | Use the shared name as " | ||
| Line 20: | Line 38: | ||
| mount -t vboxsf NAME /mnt/folder | 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 | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||