Skip to content

Instantly share code, notes, and snippets.

@MShahine
Last active May 9, 2020 01:28
Show Gist options
  • Save MShahine/a4e8aecdb72b2e9b2d3fcfe59402b9db to your computer and use it in GitHub Desktop.
Save MShahine/a4e8aecdb72b2e9b2d3fcfe59402b9db to your computer and use it in GitHub Desktop.
Eatch Time I Install Ubuntu I Have To Do This
#!/bin/bash
clear
echo '[+] After Install Script. This Will Install The Following: '
echo '\n-> build-essential - chromium-browser - nmap - hydra - medusa - sqlmap - kazam - audacious - masscan'
echo '\n-> vlc - vim - SpaceVim - Spotify - telegramlient - sublime-text3 - git - wget - curl - python3.8 - golang'
echo '\n-< jq - twitch - PowerShell - JAVA8'
sudo apt -y install build-essential chromium-browser nmap sqlmap git wget curl kazam sqlmap hydra medusa audacious whatweb websploit jq python3.8 python3.8-dev telegram-desktop vim vlc masscan gnome-twitch python-pip python3-pip openjdk-8-jre-headless
echo '\n[!] Installing Sublime Text ... '
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
sudo apt-get install apt-transport-https
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
sudo apt update && sudo apt-get install sublime-text -y
echo '\n[!] Installing Spotify .... '
curl -sS https://download.spotify.com/debian/pubkey.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 -y install spotify-client
echo '\[!] Installing SpaceVim .... '
curl -sLf https://spacevim.org/install.sh | bash -s -- -i
echo '\n[!] Installing Powershell ....'
wget https://gist.githubusercontent.com/MShahine/7a09013f301c393322e047f060335bf4/raw/c5d9c3d29f073882b685c01c115b68a66af34fc7/PowerShell-setup.sh
sudo bash PowerShell-setup.sh
echo '[!] Golang Setup ...'
wget https://gist.githubusercontent.com/MShahine/267b58b5e5a7ce4fa240a4c293d6855c/raw/f386a4724c71e01e101207e810ad4c3951ebe9c3/golang-setup.sh
sudo bash golang-setup.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment