
On 31/05/2004, at 7:21 PM, Gabriel Bankier-Perry wrote:
The first thing I did was try and copy the lynx binary (/usr/bin/lynx) on my (already installed) system onto the same floppy disk as the saved webpage. When I tried to run it, it complained about a missing library (which is logical considering that I only copied the executable).
Missing shareable libraries? Try running: ldd `which lynx` on the system you copied lynx from. I see on mine that it needs: libncurses.so.5 => /lib/libncurses.so.5 (0x4002e000) libssl.so.0.9.6 => /usr/lib/libssl.so.0.9.6 (0x40071000) libcrypto.so.0.9.6 => /usr/lib/libcrypto.so.0.9.6 (0x400a0000) libc.so.6 => /lib/libc.so.6 (0x40174000) libdl.so.2 => /lib/libdl.so.2 (0x40292000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000) You will need to make sure those libraries (or whatever ones your version requests) are available in the /usr/lib directory of the floppy. Michael.