Last active
July 30, 2017 00:33
-
-
Save tzutalin/e1fd0e2b56a2a8bd63d020892994df33 to your computer and use it in GitHub Desktop.
VirtualBox
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
sudo apt-get update | |
sudo apt-get install -y virtualbox-guest-dkms virtualbox-guest-utils virtualbox-guest-x11 | |
sudo apt-get -y install git | |
sudo apt-get -y install -y ant | |
sudo apt-get -y install g++ | |
sudo apt-get -y install ipython | |
sudo apt-get -y install python2.7-dev python-pip | |
sudo apt-get -y install geany tree meld | |
sudo apt-get -y install terminator | |
sudo apt-get -y install giggile gitk | |
sudo apt-get -y install openssh-server openssh-client | |
sudo apt-get -y install bpython | |
# Auto format for geany. http://askubuntu.com/questions/481182/is-there-any-shortcut-key-to-align-code-in-geany-editor | |
# Change key and git clone [email protected]:TzuTaLin/vim_setup.git | |
sudo apt-get -y install imagemagick | |
# For building AOSP | |
sudo apt-get -y install openjdk-8-jre | |
sudo apt-get -y install openjdk-8-jdk | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get -y install oracle-java8-installer | |
sudo apt-get -y install pkg-config zip g++ zlib1g-dev unzip | |
# For andriod studio | |
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386 | |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get -y install synaptic | |
sudo apt-get -y install autojump | |
echo '. /usr/share/autojump/autojump.sh' >> ~/.bashrc | |
sudo apt-get install -y software-properties-common | |
sudo add-apt-repository ppa:george-edison55/cmake-3.x | |
sudo apt-get update | |
# first time install cmake | |
sudo apt-get install -y cmake | |
# cmake already install | |
sudo apt-get upgrade -y | |
# Gen a public key to bitbucket and create an private key | |
cd ~;mkdir .ssh;cd .ssh | |
ssh-keygen | |
pip install --upgrade pip | |
pip install glances | |
pip install thefuck |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment