so its a great time to be playin' around with my system files
mmk. well, I followed a tutorial to get azureus running, and it runs fine (plain azureus, not the one in fedora's repos using fedora's java)
however, I'd like to beable to launch it directly instead of typing
$./system/azureus/azureus
so here's what I did
code: Select all
[root@localhost azureus]# ln -s /home/windhound/system/azureus/azureus /usr/bin
[root@localhost azureus]# exit
exit
[windhound@localhost azureus]$ azureus
Starting Azureus...
Java exec found in PATH. Verifying...
Suitable java version found [java = 1.5.0_09]
Configuring environment...
Loading Azureus:
java -Xms16m -Xmx128m -cp "/usr/bin/*.jar" -Djava.library.path="/usr/bin" -Dazureus.install.path="/usr/bin" org.gudy.azureus2.ui.swt.Main ''
Exception in thread "main" java.lang.NoClassDefFoundError: org/gudy/azureus2/ui/swt/Main
Azureus TERMINATED.
[windhound@localhost azureus]$ ./azureus
Starting Azureus...
Java exec found in PATH. Verifying...
Suitable java version found [java = 1.5.0_09]
Configuring environment...
Loading Azureus:
java -Xms16m -Xmx128m -cp "/home/windhound/system/azureus/Azureus2.jar:/home/windhound/system/azureus/swt.jar" -Djava.library.path="/home/windhound/system/azureus" -Dazureus.install.path="/home/windhound/system/azureus" org.gudy.azureus2.ui.swt.Main ''
changeLocale: *Default Language* != English (United States). Searching without country..
changeLocale: Searching for language English in *any* country..
changeLocale: no message properties for Locale 'English (United States)' (en_US), using 'English (default)'
edit: its using Sun's java, as opposed to the free java Fedora gave out
also, if its not clear, the second version launched fine because I launched it with ./ from its directory
