LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 11-29-2004, 05:15 PM   #1
tgrier
Member
 
Registered: Nov 2004
Location: Austin, Texas
Posts: 33

Rep: Reputation: 15
Fedora3 and Moneydance


hello.
I am new to linux. I installed fedora 3 this week-end. I have everything setup. Although it took .. hours and hours of reading....
The last thing.. I need is moneydance.

I did not understand before installing linux... that just becuase there is a 'linux' version on a website... does not mean that it will work on your 'flavor' of linux.

There are instructions on the webiste and I have followed them to the letter and when I try to tun the program I get 'bash: moneydance: command not found'

There are no yum or rpm for it.

These are the instructions on how to install moneydance.
I need/want this program to work with Fedora 3.
*I am just wasting my time here? .... or am I missing a step?
or ... are these instructions... no good? ....
*the program runs in Java. I followed the instruction on fedorafaq.org and installed java first.*

*www.moneydance.com
*

*If this will not work... what program to people use for personal finances? I truly enjoyed using this program.
T

*

Once you have downloaded the appropriate package, untar the file into a directory on your system like so:

%> gunzip moneydance_*.tar.gz
%> tar xf moneydance_*.tar -C /usr/local

This will create the /usr/local/moneydance directory. We use /usr/local as an example, Moneydance can be installed in any location.

** /Please skip this step if you are not installing the "Other" package. / If you downloaded the "Other" package above, you will need to create a symbolic link named "jre" in the /usr/local/moneydance directory that points to the location of Java on your system. For example, if your java executable is at /usr/j2se/bin/java then you should create the link like so:

%> cd /usr/local/moneydance
%> ln -s /usr/j2se jre



** You can now run Moneydance by executing the 'moneydance' script in the new directory.

%> /usr/local/moneydance/moneydance

To make starting Moneydance from the command line easier, you can create a symbolic link in your path that points to the moneydance startup script:

%> cd /usr/local/bin
%> ln -s /usr/local/moneydance/moneydance moneydance

For your convenience we have provided a moneydance.xpm file that can be used with a desktop icon for launching Moneydance from a GUI such as KDE or GNOME.
 
Old 11-29-2004, 06:29 PM   #2
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 683Reputation: 683Reputation: 683Reputation: 683Reputation: 683Reputation: 683
Quote:
cd /usr/local/bin
ln -s /usr/local/moneydance/moneydance moneydance
Did you perform this step?

If so, check that /usr/local/bin is in your PATH variable (echo $PATH). If not, you can add the path in your ~/.profile or ~/.bash_login file.
Code:
PATH=PATH:/usr/local/bin
Another option is to create the link in /usr/bin instead.
Code:
su
<root password>
cd /usr/bin
ln -s /usr/local/moneydance/moneydance moneydance

Good Luck!
 
Old 11-30-2004, 09:25 AM   #3
tgrier
Member
 
Registered: Nov 2004
Location: Austin, Texas
Posts: 33

Original Poster
Rep: Reputation: 15
Thank you for your response.


did you perform this step? - <yes I did>

If so, check that /usr/local/bin is in your PATH variable (echo $PATH). If not, you can add the path in your ~/.profile or ~/.bash_login file.

<I did this and it appears that it is in my path>

[tgrier@localhost ~]$ echo $PATH
/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/usr/lib/jre/bin:/home/tgrier/bin:/usr/lib/jre/bin


When I make the changes.. are you suggest and try to execute .. I get this.
Exception in thread "main" java.lang.UnsatisfiedLinkError: /usr/local/moneydance/j2re1.4.2_03/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(Unknown Source)
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
at sun.security.action.LoadLibraryAction.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at sun.awt.NativeLibLoader.loadLibraries(Unknown Source)
at sun.awt.DebugHelper.<clinit>(Unknown Source)
at java.awt.Component.<clinit>(Unknown Source)
at com.moneydance.apps.md.controller.Main.initializeApp(Main.java:255)
at com.moneydance.apps.md.controller.Main.main(Main.java:189)
at Moneydance.main(Moneydance.java:7)
 
Old 11-30-2004, 10:19 AM   #4
jens
Senior Member
 
Registered: May 2004
Location: Belgium
Distribution: Debian, Slackware, Fedora
Posts: 1,465

Rep: Reputation: 299Reputation: 299Reputation: 299
First install these JAVA RPMs(just click to download):
http://dag.wieers.com/packages/j2re/...c3.rf.i586.rpm
http://dag.wieers.com/packages/j2re/...c3.rf.i586.rpm
This will make sure JAVA is running.
Next, you just have to follow it's instructions without the 'other' package.

Now it should work

Others are:
http://www.gnucash.org/
http://home.gna.org/cbb/

Last edited by jens; 11-30-2004 at 10:20 AM.
 
Old 11-30-2004, 11:03 AM   #5
exvor
Senior Member
 
Registered: Jul 2004
Location: Phoenix, Arizona
Distribution: Gentoo, LFS, Debian,Ubuntu
Posts: 1,537

Rep: Reputation: 87
In your last message tells you what is wrong with the program. Your program requires the 2 librarys and when its attempting to access them it cannot find them or they are not there


Quote:
libawt.so: libXp.so.6


Try seaching for the package that these librarlys are included with

 
Old 11-30-2004, 11:22 AM   #6
tgrier
Member
 
Registered: Nov 2004
Location: Austin, Texas
Posts: 33

Original Poster
Rep: Reputation: 15
n your last message tells you what is wrong with the program. Your program requires the 2 librarys and when its attempting to access them it cannot find them or they are not there


quote:libawt.so: libXp.so.6





Try seaching for the package that these librarlys are included with



Got it ... These files are not on my '/' anywhere.

How do I go about finding or installing these?

Also to the other post.. I dnloaded and confirmed that java is on my comp.

thanks for all of you help.
T
 
Old 11-30-2004, 12:34 PM   #7
jens
Senior Member
 
Registered: May 2004
Location: Belgium
Distribution: Debian, Slackware, Fedora
Posts: 1,465

Rep: Reputation: 299Reputation: 299Reputation: 299
Quote:
Originally posted by tgrier


Also to the other post.. I dnloaded and confirmed that java is on my comp.


T
If you simply install those rpms you won't have to configure anything.
It will just work...
I just tried this 'moneydance' myself and it works perfect without any compiling.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
keithmcd-fedora3 keithmcd LinuxQuestions.org Member Intro 2 06-01-2005 01:56 PM
New member, use Fedora3. sielon LinuxQuestions.org Member Intro 1 05-21-2005 03:23 PM
can't login to fedora3 keiwu Linux - Newbie 6 02-14-2005 04:59 PM
Screen on Fedora3 wimanx Linux - Software 2 02-04-2005 12:17 PM
Apt for fedora3 mickeyboa Fedora 0 09-14-2004 05:58 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 05:25 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration