Advertisement
zatuz

install.sh

Nov 20th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.48 KB | None | 0 0
  1. # Install Pre-Dependencies virtualbox etc prdsfdsfadsf
  2. apt-get install -y --reinstall software-properties-common
  3. ## Add APT repos
  4. add-apt-repository main
  5. add-apt-repository contrib
  6. add-apt-repository non-free
  7. # actuliza el sistema virtual (debian / ubuntu)
  8. sudo apt update
  9. sudo apt install -y build-essential \
  10. linux-headers-$(uname -r) \
  11. dkms \
  12. module-assistant \
  13. xserver-xorg \
  14. xserver-xorg-core \
  15. dirmngr
  16. sudo m-a prepare
  17. sudo apt upgrade -y
  18. sudo apt dist-upgrade -y
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement