Archive for March, 2016
Install Android SDK on Linux – in my case Ubuntu 14.04 server
wget http://dl.google.com/android/android-sdk_r24.4.1-linux.tgz tar -xvf android-sdk_r24.4.1-linux.tgz cd android-sdk-linux/tools ./android update sdk –no-ui create file: ~/.zshrc with follwing content: export PATH=${PATH}:$HOME/sdk/android-sdk-linux/platform-tools:$HOME/sdk/android-sdk-linux/tools:$HOME/sdk/android-sdk-linux/build-tools/23.0.2/ sudo apt-get install libc6:i386 libstdc++6:i386 sudo apt-get install zlib1g:i386
Linux install Java 8 from Oracle
sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer sudo apt-get install oracle-java8-set-default
How to resize (make it bigger) partition on Ubuntu 14.04 in Command Line
Let’s assume you have new virtual Linux Server box running and you “suddenly” out of space. Shit. Well, you stopped your VM and increased the size of you hard drive from 20Gb to 40Gb, started VM again and… nothing changed. This is what I did: Sttep1: First i run cfdisk and removed swap (yes, you […]
In: English, Fighting the system, Linux