Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
running a java jar file from a different directory[solved]
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Portage & Programming
View previous topic :: View next topic  
Author Message
logical_guy
Apprentice
Apprentice


Joined: 18 Sep 2007
Posts: 238

PostPosted: Fri Jul 06, 2012 7:17 pm    Post subject: running a java jar file from a different directory[solved] Reply with quote

Hi, I've got a java jar file in a directory and its got a subdirectory with some fonts in it that the java app uses. How do I put a link to this java app in the /usr/bin folder so everyone can use it? Thanks.

Last edited by logical_guy on Tue Jul 10, 2012 2:43 pm; edited 1 time in total
Back to top
View user's profile Send private message
Bzub
Tux's lil' helper
Tux's lil' helper


Joined: 25 Dec 2004
Posts: 87
Location: Belgium

PostPosted: Mon Jul 09, 2012 10:32 pm    Post subject: Re: running a java jar file from a different directory Reply with quote

logical_guy wrote:
Hi, I've got a java jar file in a directory and its got a subdirectory with some fonts in it that the java app uses. How do I put a link to this java app in the /usr/bin folder so everyone can use it? Thanks.

Hi,

Easiest solution I can think of is making a small bash script:

Put this in a file and give it a name you like, I'm calling it MyApp
Code:

#!/bin/bash
cd /path/to/jar/file
java -jar MyApp.jar


Change MyApp permissions
Code:
chown root:root MyApp # makes user: root and group: root owner of this file
chmod 755 MyApp # change permissions of MyApp to -rwxr-xr-x


Put that in /usr/bin (or better /usr/local/bin) and it should work.
Back to top
View user's profile Send private message
logical_guy
Apprentice
Apprentice


Joined: 18 Sep 2007
Posts: 238

PostPosted: Tue Jul 10, 2012 2:43 pm    Post subject: Reply with quote

Great stuff, bro, thanks a mill - it worked!! Help much appreciated :D
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Portage & Programming All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum