Last active
December 22, 2024 05:53
-
-
Save sepgh/af5bccc539e08681d949b87c3d2127b1 to your computer and use it in GitHub Desktop.
My system init!
This file contains 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 | |
sudo apt update | |
sudo apt upgrade | |
sudo apt dist-upgrade | |
sudo apt install -y gettext maven git screen openjdk-8-jdk xclip proxychains proxychains4 privoxy tor torsocks net-tools gcc g++ make curl xorg openbox xauth gimp -y | |
##Node | |
curl -sL https://deb.nodesource.com/setup_14.x -o nodesource_setup.sh | |
sudo bash nodesource_setup.sh | |
sudo apt-get install -y nodejs | |
rm nodesource_setup.sh | |
## VSCode | |
sudo apt install software-properties-common apt-transport-https wget | |
wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" | |
sudo apt install -y code | |
# Spotify | |
curl -sS https://download.spotify.com/debian/pubkey_0D811D58.gpg | sudo apt-key add - | |
echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list | |
sudo apt-get update | |
sudo apt-get install -y spotify-client | |
# Python | |
sudo apt install python3 python3-pip python3-wheel -y | |
curl https://pyenv.run | bash | |
# Mysql | |
sudo apt-get install -y mysql-server | |
sudo apt-get install -y mysql-client | |
sudo apt-get install -y libmysqlclient-dev | |
sudo apt-get install -y libssl-dev | |
# Rust (for Spotify) | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh | |
# AdBlock | |
cd ~ | |
mkdir softwares | |
cd softwares | |
git clone https://github.com/abba23/spotify-adblock.git | |
cd spotify-adblock | |
make | |
sudo make install | |
echo "Refer to https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-20-04 for mysql installation" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ew