Advertisement
mauwiks

Fix Virtualbox Guest Additions Installation Failed

Dec 18th, 2022 (edited)
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. # How to Install Virtualbox Guest Additions | Guest Install Failed
  2. # Fix Windows 10 virtualbox guest additions failed
  3. # Fix Copy Paste from Virtualbox to PC (vise-versa)
  4. =========================================================
  5. https://www.mauwiks.com | Learn more: Youtube.com/@mauwiks
  6.  
  7. Pastebin link http://mauwiks.com/virtualbox-guest (use in your Virtualbox server with GUI Browser to copy and paste code easily)
  8.  
  9. # Commands to update and install packages:
  10. yum -y update
  11. yum -y install epel-release
  12. yum -y install wget nano screen curl zip unzip gcc make perl kernel-devel kernel-headers bzip2 dkms && yum -y update
  13.  
  14. # In the Virtualbox Menu > Insert Guest Additions CD Image
  15.  
  16. # In Terminal, mount the CD image commands
  17. mount /dev/cdrom /mnt/
  18.  
  19. # Run installation scripts. First move to the mount point, then run the installation file
  20. cd /mnt/
  21. ./VBoxLinuxAdditions.run
  22.  
  23. # Command to add user to vboxsf group:
  24. usermod --append --groups vboxsf username
  25.  
  26. # Reboot VM to apply changes
  27. reboot
  28.  
  29. # TROUBLESHOOTING 1:
  30. /sbin/rcvboxadd quicksetup all
  31. /sbin/rcvboxadd setup
  32.  
  33. # Goto VM settings > Storage and remove Attached CD/DVD
  34.  
  35. # Re-Insert VBox Guest Additions again
  36.  
  37. # Then re-install on Desktop: VBoxLinuxAdditions.run
  38.  
  39. # Reboot to apply chages
  40. reboot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement