Find the answer to your Linux question:
Results 1 to 6 of 6
Hi i have just installed debian 4.0 etch and im having trouble with installing anything. Im new to linux so sorry if this is a stupid question. I downloaded a ...
  1. #1
    Just Joined!
    Join Date
    Sep 2007
    Posts
    2

    debian 4.0 etch help :(

    Hi i have just installed debian 4.0 etch and im having trouble with installing anything. Im new to linux so sorry if this is a stupid question.

    I downloaded a program i wanted to install, the source, when i do:-

    tar xzvf "name of file.tar.gz"

    cd nameoffile

    then ./configure

    ir comes up with there is no C compiler and it aborts, i dont understand what to do, can someone help me please?


    Thanks

  2. #2
    Just Joined!
    Join Date
    Sep 2007
    Posts
    2
    This is the exact problem i am getting:-


    configure: error: no acceptable C compiler found in $PATH.



    Any help would be greatly appreciated.

    Thanks

  3. #3
    Linux User cheesecake42's Avatar
    Join Date
    Jan 2007
    Location
    Panama City, FL
    Posts
    364
    click on system>administration>Synaptec Package Manager and search for C Compiler. pick one like gcc and it will install it for you. you can also search for whatever program you are trying to install in synaptec and it might find it for you and install it automatically.

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Execute this
    Code:
    su 
    apt-get update
    apt-get install build-essential
    Check this Tutorial on How to install softwares in Linux.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  5. #5
    Just Joined! creativename's Avatar
    Join Date
    Oct 2006
    Posts
    6
    Installing GCC (and other build-essential stuff) will do, but as cheesecake42 said it's probably best to check whether that program is available through the package manager first, as that is considerably easier.

    You can use the GUI front-end (System > Administration > Synaptec Package Manager), or optionally apt-get from the command line. ("su", "apt-get update", "apt-get package_name").

  6. #6
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Quote Originally Posted by creativename
    Installing GCC (and other build-essential stuff) will do, but as cheesecake42 said it's probably best to check whether that program is available through the package manager first, as that is considerably easier.

    You can use the GUI front-end (System > Administration > Synaptec Package Manager), or optionally apt-get from the command line. ("su", "apt-get update", "apt-get package_name").
    Simply installing gcc will not sort out problem. libc6-dev and a few other libraries are required to compile sources. gcc installation doesn't include those.
    build-essential meta-package includes all necessary libs and compilers and I would suggest you to install it only.

    Synaptic is just a front-end of apt-get.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Posting Permissions

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