Advertisement
Guest User

Untitled

a guest
Aug 26th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. # Install the packages required
  2. yum update
  3. yum install gcc kernel-devel make
  4.  
  5. reboot
  6.  
  7. # Click: Devices/Install Guest Additions...
  8.  
  9. # Mount the ISO image with the guest additions
  10. mkdir /cdrom
  11. mount /dev/cdrom /cdrom
  12.  
  13. # Install guest additions
  14. /cdrom/VBoxLinuxAdditions.run
  15.  
  16. # Share a folder from the VirtualBox control panel, giving it a share name.
  17. sudo usermod -aG vboxsf $(whoami)
  18. ls /media/sf_<share_name>
  19.  
  20.  
  21. # You could always mount the directory yourself as well
  22. mkdir ~/a_folder_name
  23. mount -t vboxsf vb_share_name ~/a_folder_name
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement