Clear, practical technology insights BSOD Code Lookup · Windows Error Code Lookup · Wi-Fi Troubleshooting · PC Troubleshooting Checklist

How to Install Titanium Studio on Linux/ubuntu

Learn how to install titanium Studio on linux/ubuntu with clear steps, practical context, and useful troubleshooting guidance.

Table of Contents

This updated guide examines How to Install Titanium Studio on Linux/ubuntu and organizes the essential facts, background, and practical takeaways in clear American English.

Part 1of 5:

Set up Ubuntu

  1. Install Ubuntu 12.04 (32-bit) - if not already installed.
  2. To ensure TS has the permissions it needs we want to login as root to our desktop environment. To do so we need to make sure root has a password and then make it possible to login to root from the login screen. Afterwards reboot and login as root.
    • sudo passwd root
    • sudo sh -c 'echo "greeter-show-manual-login=true" >> /etc/lightdm/lightdm.conf'
  3. Update your system further with these commands. The last one is mainly for installing node.js in the next stop.
    • sudo apt-get install libjpeg62 libwebkitgtk-1.0-0
    • echo 'export MOZILLA_FIVE_HOME=/usr/lib/mozilla' >> ~/.bashrc
    • sudo apt-get install git-core curl build-essential openssl libssl-dev

Part 2of 5:

Install Java

  1. Install Oracle JDK 7. Titanium will not work with OpenJDK so make sure you uninstall that first if you have it.
    • sudo apt-get install software-properties-common
    • sudo add-apt-repository ppa:webupd8team/java
    • sudo apt-get update
    • sudo apt-get install oracle-java7-installer

Part 3of 5:

Install node.js

  1. Clone the Node.js repository
    • git clone https://github.com/joyent/node.git
  2. Show node.js versions available in the repository and select one. I chose to install version 0.10.28 which seems to work just fine.
    • cd node
    • git tag #
    • git checkout v0.10.28
  3. Compile and install it
    • ./configure
    • make
    • sudo make install
  4. Check that it was installed correctly:
    • node -v
  5. Install the package manager NPM. With the second command you just check that it is installed correctly.
    • sudo apt-get install npm
    • npm -v

Part 4of 5:

Install Android SDK

  1. Download the SDK bundle fromAndroid developer site
  2. Extract the 'sdk' folder from the zip file which is named something like 'adt-bundle-linux-x86-20140321.zip' to a desired location, eg. somewhere in your home folder.
    • Syntax of the unzip command:
      unzip [zipfile] -d [destination-folder]
  3. Start the Android SDK Manager:
    • sudo /your/sdk/folder/tools/./android
  4. Check the Tools and the APIs you want to install, then click Install package and follow on screen instructions. Let it complete the downloads.
    • Minimum API 10, which is Android 2.3.3, must be installed.

Part 5of 5:

Install Titanium Studio

  1. Download the latest Titanium Studio fromAppcelerator(account required) and unzip to any desired folder.
  2. Start TS by opening the file 'TitaniumStudio' in the location you unzipped the file, and let it install its latest updates when it asks to do so.
    • ./TitaniumStudio
    • When asked indicate the location of your workspace.
  3. After updates are installed it will ask which SDKs to install. Select the Android SDK and select Settings. Instead of selecting which SDKs you want, enter the path to the 'sdk' folder that unzipped earlier.
  4. We are done!

FAQ

What is How to Install Titanium Studio on Linux/ubuntu about?

It provides a structured overview of install, explains the main context, and highlights practical takeaways for readers.

Why does this topic matter?

Understanding the main concepts helps readers evaluate the issue, avoid common mistakes, and make better-informed decisions.

How should readers use this information?

Use the guidance as a practical starting point, confirm details that may have changed, and follow current product, safety, or security recommendations.

Discussion

Reader Comments 0

Sign in with email or Google to join the discussion.