> i was wondering
> if there is a way to install httrack without having
> root/admin access.
Just try:
./configure --prefix=$HOME
make
make install
And then, in your .profile (or .bashrc):
export PATH=$PATH:$HOME/bin
export LD_LIBRARY_PATH=$HOME/lib
This should do the trick!
|