- 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?
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
How do I get more software of compile it myself
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.
Re: How do I get more software of compile it myself
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...
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...
that should configure the software you want to build for the bubba. next type...
and that should build the software. if it compiles okay and you want to install it then type...
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
Code: Select all
make
Code: Select all
make install
~alonzo...