Find the answer to your Linux question:
Results 1 to 4 of 4
Let me just start by saying I've gracefully made the jump to Linux and very happy with it. I had several Linux machines back in the late 90's but have ...
  1. #1
    Just Joined!
    Join Date
    Nov 2007
    Posts
    2

    App Install help for a newbie

    Let me just start by saying I've gracefully made the jump to Linux and very happy with it. I had several Linux machines back in the late 90's but have kept up since then. I just installed Ubuntu 7.10 on my Toshiba A55 laptop and everything works great. Touchpad, sound, video, and even the POS software modem. I'm having trouble installing some apps though. I'm trying to use Ardour digital audio workstation, but I can't even get past the requirements. Everything was already installed except for scons 0.96 (which I installed 0.97) and libtool. Scons installed with no problem, but libtool is killing me. I tried a few other programs and no go either. First libtool. on the ./configure is errors out with checking for C compiler output file name... configure: error: C compiler cannot create executables ??? HELP!!! with the other programs it would error out on make install. It says make: *** No rule to make target `install'. Stop. Any help you guys can provide is greatly appreciated. Thanks

  2. #2
    Blackfooted Penguin daark.child's Avatar
    Join Date
    Apr 2006
    Location
    West Yorks
    Posts
    4,344
    You need to install some development tools e.g. gcc by doing
    Code:
    sudo aptitude install build-essential

  3. #3
    Just Joined!
    Join Date
    Nov 2007
    Posts
    2
    That helped out so much. Libtool is installed perfectly. Still getting the same make error on the other program. But make install worked perfectly after ./configure on Libtool. I'll keep trying the other program

  4. #4
    Linux Engineer aliov's Avatar
    Join Date
    Dec 2006
    Location
    Geneva,Beirut
    Posts
    1,078
    Quote Originally Posted by decaren View Post
    But make install worked perfectly after ./configure on Libtool.
    If you do make install after configure so you missed to compile the package and then nothing will be installed , the Libtool should be in the synaptic package manager, just installed from there , but if you insist on installing it from source type the following

    Code:
    ./configure --prefix=/usr 
    make 
    make install
    if make comes with some errors so there is some dependencies are missing scroll up to the first error message and se it's complaining about what . but in Ubuntu is always better to use the precompiled packages.

    Regards.
    Linux is not only an operating system, it's a philosophy.
    Archost.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...