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/sh | |
# FORK THIS GIST THEN RUN ALL COMMANDS ONE BY ONE | |
# Select The Fastest Apt Mirror and Adjust Ubuntu Default Setting: https://youtu.be/lWHOECQ7t9Q | |
# Open your terminal by ctrl+alt+t and run all commands one by one. You can copy and paste into terminal too. | |
sudo -i | |
apt update -y && apt upgrade -y | |
apt install build-essential checkinstall | |
apt install ubuntu-restricted-extras | |
apt install software-properties-common |