| > I am new in Linux. I just downloaded this programme and
> unpacked it. Now how do I get it to run? Which file do
> I click to launch the programme?
If you are new to Linux, I would *strongly* recommend to install a binary
version (already compiled and packaged) from your distribution site (there are
packages for Debian, Mandrake and others)
You can also compile httrack by typing the following lines:
cd /tmp
gunzip httrack.tar.gz | tar xvf -
cd httrack-*
./configure --prefix=/usr/local && make
and (as root)
make install
Then, type:
/usr/local/bin/webhttrack
| |