I've got user account on some strange server running Ubuntu. I do not have root access, so all solutions including sudo apt-get install <package>
will not work.
For some reason on server there is no make
nor any C compiler, which prevents it from being usefull in any way.
Without the possibility of using package manager, I've tried to install make
from the source, but I failed.
My problem is: Installation of make
requires C compiler (eg. gcc
), but installing gcc
from source requires not only gcc
(which can be worked around - as shown here), but also make
, which closes the circle.
At this point I gave up and tried to get binary version of make
, but I couldn't find it. The same was with gcc
- all I could find were tarballs containing the source.
It's the list of possible solutions, I can think of:
- Page with binary of
make
. - Page with working binary of
gcc
or any other C compiler. - Or some way to install one of these from the source, with earlier listed restrictions.
- Some other way?