Thursday, February 16, 2017

Software Installation in Ubuntu


-
Java Environment Set Up:

Firstly check, java is installed or not. For checking using bellow command:
→ “java –version

Then go to following step:

Using Oracle Java 7 is not formally supported by Ubuntu. There's plenty solutions for installing it, listed on https://help.ubuntu.com/community/Java .
The simplest one listed is this one:
        sudo add-apt-repository ppa:webupd8team/java
        sudo apt-get update
        sudo apt-get install oracle-java7-installer
It'll keep your java 7 installation up to date.
To automatically set up the Java 7 environment variables JAVA_HOME and PATH:
        sudo apt-get install oracle-java7-set-default
Reference:
  1. http://stackoverflow.com/questions/16263556/installing-java-7-on-ubuntu






Android Studio Set Up:

Firstly, you have to set up java environment. Firstly check, java is installed or not. For checking using bellow command:
→ “java –version

If java environment is not ready in pc then you can see java environment set up command:

then follow the following commands:

  1. Download Android Studio from here, use All Android Studio Packages
  2. Extract the archive file into an appropriate location for your applications, eg: /opt. Use the filename of your downloaded archive, in my example android-studio-ide-141.2178183-linux.zip
    sudo unzip android-studio-ide-141.2178183-linux.zip -d /opt
  3. To launch Android Studio, navigate to the /opt/android-studio/bin directory in a terminal and execute ./studio.sh. Or use a desktop file, see below.
    You may want to add /opt/android-studio/bin to your PATH environmental variable so that you can start Android Studio from any directory.
Create short cut of Android Studio:

  • Run the android studio
  • go to Tool option in android studio.
  • Then you get create desktop entry option and clicked
  • tick the check box and click the ok button
  • finally restart the pc.



Reference:





IpTux Instrallation:

just click on the “available on the software center”. And just follow the next instruction.

Reference:
  1. https://apps.ubuntu.com/cat/applications/precise/iptux/

No comments:

Post a Comment

Autoboxing and Unboxing

  Autoboxing  is the automatic conversion that the Java compiler makes between the primitive types and their corresponding object wrapper cl...