-3

I have had 3 Ubuntu computers in my (relatively short) linux lifetime. On every single one, I have never been able to install from a tarball. I've looked everywhere, but there seems to always be a different answer depending on what you're trying to install, and not always one for what I'm working with. This time, I'm trying to install tor and hoping for a different result, but lo and behold I get:

bash: ./configure: No such file or directory.

I just want an end-all answer as to why on every single Ubuntu machine I've had, I can't configure/install from a tarball.

Edit: the tarball I was trying to install from is the 64 bit linux download from https://www.torproject.org/projects/torbrowser.html.en#downloads , and the only readmes in there are explanations of meek, proxies, etc. Nothing about install. I figured out Tor specifically though by not using ./configure at all, so that's done.

But the main problem is that I have never successfully installed from a tar file. No matter what I try to install, when I get to the ./configure step, I get a bash message.

1 Answers1

3

Here are some reasons I can think of:

  1. the tarball doesn't contain source code

  2. the tarball contains source code, but it doesn't use the GNU autotools build system - perhaps it uses a simple Makefile, or uses a different build system such as cmake or scons

  3. the tarball is a source tarball that uses the GNU autotools build system, but it provides a lower-level configuration file such as configure.ac from which you must first build an appropriate configure script for your platform using autoconf

  4. the tarball is a source tarball, including a GNU autotools configure script, but you're attempting to execute it from the wrong directory

steeldriver
  • 142,475