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 !

Installing a non-package software

Got problems with your B2 or B3? Share and get helped!
Post Reply
Anders_W
Posts: 34
Joined: 13 Sep 2011, 09:22

Installing a non-package software

Post by Anders_W »

Hi again!

As an alternative to the method in the linked thread: http://forum.excito.net/viewtopic.php?f=9&t=3366, I am trying to install a piece of software that does not come as a debian package, but as a tar ball.

Since I'm new to the command prompt, I'm not sure where to put the tar ball (which I now have on a USB memory stick, since source forge does not allow me to get through FTP), or quite what to do with it.

Step 1: Where do I put the tar ball before decompressing it?

Step 2: What do I do with it once it is decompressed? Am I correct in assuming that I should give the commands
  • ./configue
    make
    make install
?

Step 3: Is that all?


Any help is greatly welcomed!
Ubi
Posts: 1549
Joined: 17 Jul 2007, 09:01

Re: Installing a non-package software

Post by Ubi »

yes that is all, if all the dependencies are present (such as build-essential) and there are no problems during the build. But the compiler will inform you of this. But if all is ok, the compile is indeed very simple.
Last edited by Ubi on 28 Sep 2011, 17:54, edited 1 time in total.
Anders_W
Posts: 34
Joined: 13 Sep 2011, 09:22

Re: Installing a non-package software

Post by Anders_W »

OK, thanks!

Is there any particular place that I should unpack and compile the software?

(I have used Macs for years, and they do not require this kind of manual labor, so I really don't know.)
RandomUsername
Posts: 904
Joined: 09 Oct 2009, 18:49

Re: Installing a non-package software

Post by RandomUsername »

The scripts install all the relevant files in the right places so you just need to uses working directory such as ~/downloads.
ryz
Posts: 183
Joined: 12 Feb 2009, 06:03

Re: Installing a non-package software

Post by ryz »

Just make sure that you first install the package build-essential by running

Code: Select all

apt-get install build-essential
as root to install the most common needed packages when compiling your own software.
Post Reply