View Single Post
  #4 (permalink)  
Old October 10th, 2002
Unregistered
Guest
 
Posts: n/a
Default

after that comes the tricky part. you have to run the app, but you have to make sure you get the CLASSPATH right, which is where java looks for packages.

I'm assuming you installed limewire to /home/user/limewire.

type "cd ~user/limewire"
type "ls -1 core/lib/*.jar gui/lib/*.jar | cat > ./libs.txt"

now you have a list of all the libraries limewire will need to run in libs.txt

For each of them (you could write SH or perl to do this) you want to add them to the classpath with

CLASSPATH=$CLASSPATH:/home/user/limewire/[next_one]

once you have them all done type "export CLASSPATH"

then type "echo $CLASSPATH | cat > ./cp.txt", and then "gedit ./cp.txt & gedit ~/.bashrc &", and copy the one line from cp.txt into the .bashrc. After all that's done you should be able to go to /home/user/limewire/gui and type "./run".

Not quite installing kazaa, huh?
Reply With Quote