On Tue, May 6, 2008 at 7:56 AM, Ajey Gore <ajey at thoughtworks.net> wrote: > You need to set your class path variable. You can do that by passing "-cp ." > command line argument. Make sure that you execute this from the directory > where azureus has been unzipped. It should work without a problem. > > Btw.. This is NOT a java problem.. This is class path configuration problem. > > >
It is indeed not a Java problem. Just a minor correction to Ajey's advice - if you use -cp and set up the classpath, then java -jar azureus.jar would give you the same problem, because when we use -jar, all other classpath settings are ignored. (See -jar at http://java.sun.com/javase/6/docs/technotes/tools/solaris/java.html) Something along lines of the following should help you get started : java -cp Azureus2.jar apple-extensions.jar commons-cli.jar log4j.jar swt.jar swt-win32.jar swt-osx.jar org.gudy.azureus2.ui.common.Main Substitute the jar file names as relevant for your system. In case the above doesn't work, then send the list of all *.jar files that were bundled in your azureus distribution. -- Sriram