| View previous topic :: View next topic |
| Author |
Message |
danielsbrewer Tux's lil' helper


Joined: 04 Oct 2004 Posts: 135 Location: Epsom, UK
|
Posted: Tue May 09, 2006 9:53 am Post subject: Personal budget software |
|
|
I am looking for some financial software for linux so I can:
1) Make a monthly budget
2) Keep track of how much I have spent in each catergory e.g. £10 left in travel for this month
Can anyone recommend any software? I looked at gnucash, but it looked too complex for what I wanted. |
|
| Back to top |
|
 |
at240 l33t

Joined: 12 Aug 2005 Posts: 603 Location: UK
|
Posted: Tue May 09, 2006 11:01 am Post subject: |
|
|
| KMyMoney? Easy to use. |
|
| Back to top |
|
 |
danielsbrewer Tux's lil' helper


Joined: 04 Oct 2004 Posts: 135 Location: Epsom, UK
|
Posted: Tue May 09, 2006 11:12 am Post subject: |
|
|
| Looks good, but it appears to have budgeting as a future advancement. Maybe budgeting means something slightly different in the fiancial world. |
|
| Back to top |
|
 |
hellboi64 Apprentice


Joined: 11 Sep 2004 Posts: 155 Location: Columbus, Ohio, USA
|
|
| Back to top |
|
 |
nevynxxx Veteran

Joined: 12 Nov 2003 Posts: 1123 Location: Manchester - UK
|
Posted: Tue May 09, 2006 12:37 pm Post subject: |
|
|
GNUCash?
Granted it is not budgeting software per say. It is accounting software.
It does have the best help files of any piece of software I have ever used though , and once you get the hang of it, makes seeing where your money went very easy. _________________ My Public Key
Wanted: Instructor in the art of Bowyery |
|
| Back to top |
|
 |
hellboi64 Apprentice


Joined: 11 Sep 2004 Posts: 155 Location: Columbus, Ohio, USA
|
|
| Back to top |
|
 |
Grayman Apprentice

Joined: 25 Feb 2004 Posts: 186 Location: South Africa
|
Posted: Tue May 09, 2006 8:24 pm Post subject: |
|
|
why not just do a spreadsheet - gnumeric, openoffice there's a couple spreadsheet capable apps out there. perosonally I'd go for openoffice, just plan on a weekend away while it compiles... I use openoffice myself,just for that - my PC is erm.. a home-user, no no real need for any other aspects of openoffice, but I played with the letter writing aspect and it seems good. the presentation aspect is great for all those weird things my bud sent ib e-mail
Grayman |
|
| Back to top |
|
 |
bettlert n00b

Joined: 07 Apr 2004 Posts: 15
|
Posted: Mon Oct 02, 2006 8:38 pm Post subject: |
|
|
You're right. KMyMoney2 0.8.5 doesn't provide budgeting.
But the good news is, that it will arrive sometime in the near future. If you can't wait to see you might want to try it from CVS. Works well for me...
kmymoney2-cvs-1.ebuild
| Code: | # Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
inherit kde cvs
ECVS_USER="anonymous"
ECVS_SERVER="kmymoney2.cvs.sourceforge.net/cvsroot/kmymoney2"
#ECVS_AUTH="ext"
#ECVS_SSH_HOST_KEY=""
#CVS_RSH="ssh"
ECVS_MODULE="kmymoney2"
ECVS_TOP_DIR="${DISTDIR}/cvs-src/${PN}"
S=${WORKDIR}/${ECVS_MODULE}
DESCRIPTION="Personal Finances Manager for KDE."
HOMEPAGE="http://kmymoney2.sourceforge.net"
#SRC_URI="mirror://sourceforge/kmymoney2/${P}.tar.bz2"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="crypt ofx hbci"
DEPEND="dev-libs/libxml2
hbci? ( >=net-libs/aqbanking-1.8.0_beta )
ofx? ( >=dev-libs/libofx-0.7 )"
RDEPEND="${DEPEND}
crypt? ( app-crypt/gnupg )"
DEPEND="${DEPEND}
dev-util/cppunit"
need-kde 3.4
pkg_setup() {
if use hbci && ! built_with_use net-libs/aqbanking kde; then
eerror "The HBCI plugin is shipped by net-libs/aqbanking,"
eerror "which has to be built with KDE support."
die "rebuild net-libs/aqbanking with USE=kde"
fi
}
src_compile() {
local myconf="$(use_enable ofx ofxplugin)
$(use_enable hbci kbanking)
--disable-cppunit"
# bug 132665
replace-flags "-Os" "-O2"
kde_src_compile
}
|
|
|
| Back to top |
|
 |
|