Advertisement
zatuz

pre install -virtualbox.sh

Sep 14th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.66 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. ## Install Pre-Dependencies
  4. apt-get install -y --reinstall \
  5.     software-properties-common
  6.  
  7. ## Add APT repos
  8. add-apt-repository main
  9. add-apt-repository universe
  10. add-apt-repository restricted
  11. add-apt-repository multiverse
  12.  
  13. # actuliza el sistema virtual (debian / ubuntu)
  14. sudo apt update
  15. sudo apt install build-essential -y
  16. sudo apt install linux-headers-$(uname -r) -y
  17. sudo apt install dkms -y
  18. sudo apt install module-assistant -y
  19. sudo apt install xserver-xorg -y
  20. sudo apt install xserver-xorg-core -y
  21. sudo apt install dirmngr -y
  22. sudo apt install software-properties-common -y
  23. sudom-a prepare
  24. sudo apt upgrade -y
  25. sudo apt dist-upgrade -y
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement