Please note the new address for this forum : forum.excito.org. The old address redirects here but I don't know for how long. Thanks !
New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !

How do I get more software of compile it myself

Got problems with your B2 or B3? Share and get helped!
Post Reply
pindakoe
Posts: 11
Joined: 13 May 2010, 10:51

How do I get more software of compile it myself

Post by pindakoe »

There is one utility which I really would want on my bubba -- deduplication by means of freedup. This is not present in the repositories for bubba as far as I can make out. I know that 'freedups' is available, but it is not working quite as well.
  • Any other deduplication software for this version available than freedups?
  • Any other repositories that I should/can enable?
  • Alternatively: how easy/hard is it to compile software for bubba
  • I assume compiling on bubba is slow; probably not an issue for freedup (which is small). How difficult is it to cross-compile from my other linux host (i686 bases) for bubba's hardware?
Thanks for any tips
zander
Posts: 141
Joined: 01 Jan 2009, 23:16
Location: las vegas, nv, usa
Contact:

Re: How do I get more software of compile it myself

Post by zander »

i suggest installing gcc on your bubba and then subsequently compiling the source for the software you want to run.

so first go to root and then run apt-get install...

Code: Select all

su
apt-get install gcc

that will install gcc for you and then you can compile the software you want to install on the bubba.

download the software you want, unzip it where you want to build it. next cd into the directory that was created when you unziped. and type...

Code: Select all

./configure
that should configure the software you want to build for the bubba. next type...

Code: Select all

make
and that should build the software. if it compiles okay and you want to install it then type...

Code: Select all

make install
~alonzo...
Post Reply