Pages

Wednesday, October 31, 2012

Android SDK folder stays read only

After downloading/installing Android SDK, it put the files/folders here: C:\Program Files (x86)\Android\android-sdkif I right click on the parent folder, Android, I see that it's readonly. I unchecked readonly, and I got a prompt saying, "You will need to provide adminitsrator permission to change these attributes". I clicked Continue. It then seemed to run thru that folder and all of its children, applying the new non-readonly attr.
But when I right click on the Android folder and go to props again, it says it's readonly again.
Win7 has a lot of access problems when you install some programs in the Program Files(x86)
Uninstall the android sdk and install it in C:/ for example, it will work. 

Monday, October 22, 2012

Error Connecting GBA Action Replay to Computer


Follow the relevent link below to download the Action Replay GBX for GBA PC Link software. 
http://us.codejunkies.com/support_downloads/ActionReplayGBX_3_3_EU_ENG.exe

If you are receiving and “Error Connecting” message when trying to link the GBA Action Replay to your computer you must make sure that you have everything connected and turned on for it to link properly. First make sure that you have the Action Replay in the GBA and there is a game in the Action Replay. Then plug in the cable to the Action Replay and turn the GBA on. Let the Action Replay load to the main menu screen, and then open the GBX software on your computer. Now all you need to do is click on the AR GBX button at the bottom of the GBX software.

If it`s still not connecting, try the following:

   1. Click START -> SETTINGS -> CONTROL PANEL. Double click on "Add New Hardware".
   2. When prompted select that you want to "select the Hardware from a list".
   3. Select "Other Devices" from the list of hardware and then click Next.
   4. Click on the Have Disk button. Enter "C:\Program Files\Interact\Action Replay GBA\Drivers" or  "C:\Program Files\Datel\ActionReplayGBX\Drivers" under the box to "Copy Manufacturer`s files from".
   5. Select the "GBA Link" and Click Next.

Thursday, October 18, 2012

How to Install Oracle Java on Ubuntu Linux


This tutorial will cover the installation of 32-bit and 64-bit Oracle Java 7 (currently version number 1.7.0_09) JDK/JRE on 32-bit and 64-bit Ubuntu operating systems. These instructions will also work on Debian and Linux Mint.
If you already have Oracle Java 7 installed on your system, using this method but need to upgrade, please see the following article:
Also to upgrade the Oracle Java in your web browsers, please see the following article:

Steps

  1. 1
    Check to see if your Ubuntu Linux operating system architecture is 32-bit or 64-bit, open up a terminal and run the following command below.
    • Type/Copy/Paste: file /sbin/init
      • Note the bit version of your Ubuntu Linux operating system architecture it will display whether it is 32-bit or 64-bit.
  2. 2
    Check if you have Java installed on your system. To do this, you will have to run the Java version command from terminal.
    • Open up a terminal and enter the following command:
      • Type/Copy/Paste: java -version
    • If you have OpenJDK installed on your system it may look like this:
      • java version "1.6.0_21"
        OpenJDK Runtime Environment (IcedTea6 1.10pre) (6b21~pre1-0lucid1)
        OpenJDK 64-Bit Server VM (build 19.0-b09, mixed mode)
    • If you have OpenJDK installed on your system, you have the wrong vendor version of Java installed for this exercise.
  3. 3
    Completely remove the OpenJDK/JRE from the system if necessary. This will prevent system conflicts and confusion between different vendor versions of Java. For example, if you have the OpenJDK/JRE installed on your system, you can remove it by typing the following at the command line:
    • Type/Copy/Paste: sudo apt-get purge openjdk-\*
      • This command will completely remove OpenJDK/JRE from your system
    • Type/Copy/Paste: sudo mkdir -p /usr/local/java
      • Create a directory to put your Oracle Java JDK and JRE binaries in, open up a terminal and create the directory /usr/local/java
  4. 4
    Download the Oracle Java JDK/JRE for Linux. Make sure you select the correctcompressed binaries for your system architecture 32-bit or 64-bit (which end in tar.gz).
    • For example, if you are on Ubuntu Linux 32-bit operating system download 32-bit Oracle Java binaries.
    • For example, if you are on Ubuntu Linux 64-bit operating system download 64-bit Oracle Java binaries.
    • Optional, Download the Oracle Java JDK/JRE Documentation
      • Select jdk-7u9-apidocs.zip
    • Important Information: 64-bit Oracle Java binaries do not work on 32-bit Ubuntu Linux operating systems, you will receive multiple system error messages, if you attempt to install 64-bit Oracle Java on 32-bit Ubuntu Linux.
  5. 5
    Copy the Oracle Java binaries into the /usr/local/java directory. In most cases, the Oracle Java binaries are downloaded to: /home/"your_user_name"/Downloads.
    • 32-bit Oracle Java on 32-bit Ubuntu Linux installation instructions:
      • Type/Copy/Paste: cd /home/"your_user_name"/Downloads
      • Type/Copy/Paste: sudo -s cp -r jdk-7u9-linux-i586.tar.gz /usr/local/java
      • Type/Copy/Paste: sudo -s cp -r jre-7u9-linux-i586.tar.gz /usr/local/java
      • Type/Copy/Paste: cd /usr/local/java
    • 64-bit Oracle Java on 64-bit Ubuntu Linux installation instructions:
      • Type/Copy/Paste: cd /home/"your_user_name"/Downloads
      • Type/Copy/Paste: sudo -s cp -r jdk-7u9-linux-x64.tar.gz /usr/local/java
      • Type/Copy/Paste: sudo -s cp -r jre-7u9-linux-x64.tar.gz /usr/local/java
      • Type/Copy/Paste: cd /usr/local/java
  6. 6
    Run the following commands on the downloaded Oracle Java tar.gz files. Make sure to do this as root in order to make them executable for all users on your system. To open a root terminal type sudo -s you will be prompted for your logon password.
    • 32-bit Oracle Java on 32-bit Ubuntu Linux installation instructions:
      • Type/Copy/Paste: sudo -s chmod a+x jdk-7u9-linux-i586.tar.gz
      • Type/Copy/Paste: sudo -s chmod a+x jre-7u9-linux-i586.tar.gz
    • 64-bit Oracle Java on 64-bit Ubuntu Linux installation instructions:
      • Type/Copy/Paste: sudo -s chmod a+x jdk-7u9-linux-x64.tar.gz
      • Type/Copy/Paste: sudo -s chmod a+x jre-7u9-linux-x64.tar.gz
  7. 7
    Unpack the compressed Java binaries, in the directory /usr/local/java
    • 32-bit Oracle Java on 32-bit Ubuntu Linux installation instructions:
      • Type/Copy/Paste: sudo -s tar xvzf jdk-7u9-linux-i586.tar.gz
      • Type/Copy/Paste: sudo -s tar xvzf jre-7u9-linux-i586.tar.gz
    • 64-bit Oracle Java on 64-bit Ubuntu Linux installation instructions:
      • Type/Copy/Paste: sudo -s tar xvzf jdk-7u9-linux-x64.tar.gz
      • Type/Copy/Paste: sudo -s tar xvzf jre-7u9-linux-x64.tar.gz
  8. 8
    Double-check your directories. At this point, you should have two uncompressed binary directories in /usr/local/java for the Java JDK/JRE listed as:
    • Type/Copy/Paste: ls -a
    • jdk1.7.0_09
    • jre1.7.0_09
  9. 9
    Edit the system PATH file /etc/profile and add the following system variables to your system path. Use nano, gedit or any other text editor, as root, open up /etc/profile.
    • Type/Copy/Paste: sudo gedit /etc/profile
    • or
    • Type/Copy/Paste: sudo nano /etc/profile
  10. 10
    Scroll down to the end of the file using your arrow keys and add the following lines below to the end of your /etc/profile file:
    • Type/Copy/Paste:

      JAVA_HOME=/usr/local/java/jdk1.7.0_09
      PATH=$PATH:$HOME/bin:$JAVA_HOME/bin
      JRE_HOME=/usr/local/java/jre1.7.0_09
      PATH=$PATH:$HOME/bin:$JRE_HOME/bin
      export JAVA_HOME
      export JRE_HOME
      export PATH
  11. 11
    Save the /etc/profile file and exit.
  12. 12
    Inform your Ubuntu Linux system where your Oracle Java JDK/JRE is located. This will tell the system that the new Oracle Java version is available for use.
    • Type/Copy/Paste: sudo update-alternatives --install "/usr/bin/java" "java" "/usr/local/java/jre1.7.0_09/bin/java" 1
      • this command notifies the system that Oracle Java JRE is available for use
    • Type/Copy/Paste: sudo update-alternatives --install "/usr/bin/javac" "javac" "/usr/local/java/jdk1.7.0_09/bin/javac" 1
      • this command notifies the system that Oracle Java JDK is available for use
    • Type/Copy/Paste: sudo update-alternatives --install "/usr/bin/javaws" "javaws" "/usr/local/java/jre1.7.0_09/bin/javaws" 1
      • this command notifies the system that Oracle Java Web start is available for use
  13. 13
    Inform your Ubuntu Linux system that Oracle Java JDK/JRE must be the default Java.
    • Type/Copy/Paste: sudo update-alternatives --set java /usr/local/java/jre1.7.0_09/bin/java
      • this command will set the java runtime environment for the system
    • Type/Copy/Paste: sudo update-alternatives --set javac /usr/local/java/jdk1.7.0_09/bin/javac
      • this command will set the javac compiler for the system
    • Type/Copy/Paste: sudo update-alternatives --set javaws /usr/local/java/jre1.7.0_09/bin/javaws
      • this command will set Java Web start for the system
  14. 14
    Reload your system wide PATH /etc/profile by typing the following command:
    • Type/Copy/Paste: . /etc/profile
    • Note your system-wide PATH /etc/profile file will reload after reboot of your Ubuntu Linux system
  15. 15
    Test to see if Oracle Java was installed correctly on your system. Run the following commands and note the version of Java:
  16. 16
    A successful installation of 32-bit Oracle Java will display:
    • Type/Copy/Paste: java -version
      • This command displays the version of java running on your system
    • You should receive a message which displays:
      • java version "1.7.0_09"
        Java(TM) SE Runtime Environment (build 1.7.0_09-b09)
        Java HotSpot(TM) Server VM (build 23.1-b03, mixed mode)
    • Type/Copy/Paste: javac -version
      • This command lets you know that you are now able to compile Java programs from the terminal.
    • You should receive a message which displays:
      • javac 1.7.0_09
  17. 17
    A successful installation of Oracle Java 64-bit will display:
    • Type/Copy/Paste: java -version
      • This command displays the version of java running on your system
    • You should receive a message which displays:
      • java version "1.7.0_09"
        Java(TM) SE Runtime Environment (build 1.7.0_09-b20)
        Java HotSpot(TM) 64-Bit Server VM (build 23.0-b21, mixed mode)
    • Type/Copy/Paste: javac -version
      • This command lets you know that you are now able to compile Java programs from the terminal.
    • You should receive a message which displays:
      • javac 1.7.0_09
  18. 18
    Congratulations, you just installed Oracle Java on your Linux system. Now reboot your Ubuntu Linux system. Afterwards, your system will be fully configured for running and developing Java programs. Later on you may want to try compiling and running your own Java programs by following this article How to Create your First Java Program on Ubuntu Linux

EditTips

  • With Ubuntu Linux, you have the choice of whether to use OpenJDK, which is a free and open-source implementation of the Java programming language, or to use Oracle Java JDK and JRE. Some prefer to use Oracle Java (as it is the most up-to-date version of Java and it comes directly from the maintainers of Java technology), but this varies.
  • Keep in mind that Oracle makes security upgrades and bug fixes and enhances performance issues for each new release of Oracle Java. When installing Oracle Java on your system, be aware of the version number changes. See How to Upgrade Oracle Java on Ubuntu Linux for more information.
  • Please note that his document is in continual revision because Oracle sometimes changes the installation method of their Java JDK/JRE binaries.