Operating system: Lubuntu 13.10, 64-bit.
I installed the Seamonkey browser from http://www.seamonkey-project.org/ following the instructions quoted below from http://www.seamonkey-project.org/doc/install-and-uninstall#install_linux
To install SeaMonkey by downloading the tar.bz2 file:
Create a directory named "seamonkey2" (mkdir seamonkey2) and change to that directory (cd seamonkey2).
Click the link on the site you're downloading SeaMonkey from to download the package (seamonkey-2.*.tar.bz2) file into the seamonkey2 directory.
Decompress the file with the following command:
tar jxvf seamonkey-2.*.tar.bz2
This creates a "seamonkey" directory under your seamonkey2 directory.
Change to the seamonkey directory (cd seamonkey).
Run SeaMonkey with the following command:
./seamonkey
I followed the instructions but here is what I see with the following commands:
[05:28 PM] ~/seamonkey2/seamonkey $ ll seam*
-rwxr-xr-x 1 vasa1 vasa1 82816 Oct 29 08:23 seamonkey*
-rwxr-xr-x 1 vasa1 vasa1 82820 Oct 29 08:23 seamonkey-bin*
[05:28 PM] ~/seamonkey2/seamonkey $ seamonkey
bash: /home/vasa1/seamonkey2/seamonkey/seamonkey: No such file or directory
[05:28 PM] ~/seamonkey2/seamonkey $ seamonkey-bin
bash: /home/vasa1/seamonkey2/seamonkey/seamonkey-bin: No such file or directory
[05:28 PM] ~/seamonkey2/seamonkey $ ./seamonkey
bash: ./seamonkey: No such file or directory
[05:29 PM] ~/seamonkey2/seamonkey $ ./seamonkey-bin
bash: ./seamonkey-bin: No such file or directory
[05:29 PM] ~/seamonkey2/seamonkey $
So why is bash
saying "No such file or directory" although the directory and files (seamonkey and seamonkey-bin) exist?
Here is the output of cat /etc/environment
:
[05:38 PM] ~ $ cat /etc/environment
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/vasa1/seamonkey2/seamonkey"
[05:38 PM] ~ $
Here is the output of file seamonkey
and ldd seamonkey
:
[06:29 PM] ~/seamonkey2/seamonkey $ file seamonkey
seamonkey: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.9, stripped
[06:30 PM] ~/seamonkey2/seamonkey $ ldd seamonkey
linux-gate.so.1 => (0xf7726000)
libpthread.so.0 => /lib32/libpthread.so.0 (0xf76f6000)
libdl.so.2 => /lib32/libdl.so.2 (0xf76f1000)
libstdc++.so.6 => not found
libm.so.6 => /lib32/libm.so.6 (0xf76ae000)
libgcc_s.so.1 => not found
libc.so.6 => /lib32/libc.so.6 (0xf74fc000)
/lib/ld-linux.so.2 (0xf7727000)
[06:31 PM] ~/seamonkey2/seamonkey $
ls -l
in that directory. I think Cesar is correct, the files aren't executable. – goldilocks Nov 09 '13 at 12:41ls -al for seam*
at the top of the code output in my question. Those are the relevant "executables" I think. – Nov 09 '13 at 12:44file seamonkey
andldd seamonkey
... – goldilocks Nov 09 '13 at 12:59