Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. //1. Create a Dirctory in /media/cdrom
  2. sudo mkdir /media/cdrom
  3.  
  4. //2. Mount the CD-ROM
  5. sudo mount /dev/cdrom /media/cdrom
  6.  
  7. //3. Change into the mounted directory
  8. cd /media/cdrom
  9.  
  10. //4. Install the necessary dependencies
  11. sudo apt-get install -y dkms build-essential linux-headers-generic linux-headers-$(uname -r)
  12.  
  13. //5. Change to the root user with the command
  14. sudo su
  15.  
  16. //6. Install the Guest Additions package
  17. ./VBoxLinuxAdditions.run
  18.  
  19. //7. Reboot VM
  20. reboot
  21.  
  22. //8. verify the Guest Additions installation was successful
  23. lsmod | grep -io vboxguest
  24.  
  25. //9. view the details of module
  26. modinfo vboxguest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement