This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| export DEBIAN_FRONTEND=noninteractive | |
| export TERM=xterm-mono | |
| cd ~ | |
| sudo apt update | |
| sudo apt full-upgrade -y | |
| sudo apt autoremove -y | |
| sudo apt -y install apt-transport-https git wget build-essential ca-certificates curl gnupg-agent software-properties-common |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # System Updates | |
| sudo apt-get update -y | |
| sudo apt-get full-upgrade --fix-missing -y | |
| sudo apt-get autoremove -y | |
| #sudo parrot-upgrade | |
| # Alias to Fix Virtual Box issues | |
| # alias FixVM="killall /usr/bin/VBoxClient 2> /dev/null; /usr/bin/VBoxClient --clipboard && /usr/bin/VBoxClient --seamless && /usr/bin/VBoxClient --vmsvga && /usr/bin/VBoxClient --draganddrop && /usr/bin/VBoxClient --checkhostversion" |
OlderNewer