This site has been archived and will no longer be updated.
You can find my new profile at neilpahl.com. My new blog is at 808.ninja.
.jar files run automatically in windows, but in linux they need to be called with java
First, make sure you have the java runtime environment (JRE) installed. On an Ubuntu system, you could install it with using the apt package manager:
sudo apt-get install openjdk-6-jre
On other linux sytems, you can find it in their package manager.
then just cd to the folder which has the .jar file and type:
java -jar name_of_jar_file.jar
or, to free up your command line, you can detach by appending an ampersand to the end:
java -jar name_of_jar_file.jar &
PLEASE let me know if I'm doing something wrong, or if you have any suggestions or requests~
blog comments powered by Disqus