Find the answer to your Linux question:
Results 1 to 7 of 7
I have gone through many tutorials on unpacking and installing .tar.gz files, I get through unpacking the file no problem and get through changing the directory to the unpacked folder, ...
  1. #1
    Just Joined!
    Join Date
    Oct 2006
    Posts
    5

    new to linux and compiling .tar.gz and installing

    I have gone through many tutorials on unpacking and installing .tar.gz files, I get through unpacking the file no problem and get through changing the directory to the unpacked folder, however when I use the ./configure command I get the error: bash: ./configure: No such file or directory.

    also when try using the "make" command I get the following: bash: make: command not found

    is this because I have not installed a certain plugin, as I cannot seem to get around this.

    Thank you for all your help, cheers
    Bryce

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    I get the error: bash: ./configure: No such file or directory.
    it means you are not in the directory having configure file.
    navigate to the extracted folder and execute 'ls' at prompt. configure file should be listed in output. execute ./configure now.




    casper
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Banned jan1024188's Avatar
    Join Date
    Jul 2006
    Location
    EU, SLOVENIA
    Posts
    1,549
    read README and INSTALL file if there is no configure

  4. #4
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    First, in Debian or Ubuntu (which one are you using ?), very rarely will you ever need to compile anything by yourself. The repositories for those distros contain tens of thousands of packages : just make sure you make the most of it by correctly configuring your /etc/apt/sources.list file.

    Adding repositories in Ubuntu :
    https://help.ubuntu.com/community/Repositories/Ubuntu

    For Debian (you can replace "sarge" with the flavor you are using) :
    http://www.linuxforums.org/forum/341302-post8.html

    As for compilation, you need to install a compiler first :
    Code:
    apt-get install build-essential
    Then you follow the directives posted here, in the section "Compiling and Installing from software from sources".
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

  5. #5
    Just Joined!
    Join Date
    Oct 2006
    Posts
    5
    I am using Ubuntu, and am trying to install edm from http://edm-fps.net/page.php/download do I make this into an repository?

    then type in: sudo apt-get install edm-bin.tar.gz ?

    thanks, Bryce

  6. #6
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    I don't think there is package for that, but still you can take a look :
    Code:
    apt-cache search edm
    or
    Code:
    apt-cache search extended death match
    The edm-bin.tar.gz file you are refering to is a binary file (as mentionned on their web site). It is already compiled.

    You can play it simpy like that :
    Code:
    tar zxf edm-bin.tar.gz
    cd edm-bin
    ./edm_linux
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

  7. #7
    Just Joined!
    Join Date
    Oct 2006
    Posts
    5
    thanks to everyone who posted I got it to work after I had installed the compiler then used thexe file to run, this didn't work until after the compiler was installed, thanks again

    cheers, Bryce

Posting Permissions

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