Forked from larsar/shared_folder_centos_virtualbox.txt
Created
June 2, 2017 04:38
Revisions
-
larsar revised this gist
Jan 27, 2012 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -19,7 +19,10 @@ mount /dev/cdrom /cdrom # Share a folder from the VirtualBox control panel, giving it a share name. ls /media/sf_<share_name> # You could always mount the directory yourself as well mkdir /a_folder_name mount -t vboxsf the_share_name /a_folder_name -
larsar revised this gist
Jan 27, 2012 . 1 changed file with 11 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,18 +1,26 @@ # The VirtualBox documentation[1] for how to install guest additions # for Linux on a virtual host is somewhat messy. So here is what # I did to make it work. # Install the packages required yum update yum install gcc kernel-devel make reboot # Click: Devices/Install Guest Additions... # Mount the ISO image with the guest additions mkdir /cdrom mount /dev/cdrom /cdrom # Install guest additions /cdrom/VBoxLinuxAdditions.run # Share a folder from the VirtualBox control panel, giving it a share name. # Mount the share mkdir /a_folder_name mount -t vboxsf the_share_name /a_folder_name -
larsar revised this gist
Jan 27, 2012 . 1 changed file with 0 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,5 @@ The VirtualBox documentation[1] for how to install guest additions for Linux on a virtual host is somewhat messy. So here is what I did to make it work. yum update yum install gcc kernel-devel make -
larsar created this gist
Jan 27, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,22 @@ The VirtualBox documentation[1] for how to install guest additions for Linux on a virtual host is somewhat messy. So here is what I did to make it work. yum update yum install gcc kernel-devel make reboot mkdir /cdrom mount /dev/cdrom /cdrom /cdrom/VBoxLinuxAdditions.run Share a folder from the VirtualBox control panel, giving it a share name. mkdir /a_folder_name mount -t vboxsf the_share_name /a_folder_name [1] http://www.virtualbox.org/manual/ch04.html