LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 09-19-2015, 07:11 PM   #1
MrUmunhum
Member
 
Registered: May 2006
Location: Mt Umunhum, CA, USA, Earth
Distribution: Debian/ Fedora/ Ubuntu/ Raspbian
Posts: 549

Rep: Reputation: 40
Install of Seamonkey fails on Ubuntu 15.04


Hi group,

Fresh install on Ubuntu 15.04, attempting to install seamonkey using http://http://www.seamonkey-project....#install_linux. Downloaded tar
file and extracted it. When I try to run seamonkey I get this error:
Code:
 seamonkey; pwd
/src/Seamonkey/seamonkey
seamonkey; ls -lrat seamon*
-rwxrwxr-x 1 wre00 root 123064 Sep  3 21:25 seamonkey-bin
-rwxrwxr-x 1 wre00 root 123056 Sep  3 21:25 seamonkey
seamonkey; file seamonkey*
seamonkey:     ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.18, BuildID[sha1]=e04bbcc4c943c98b1e04e2ef7cbbbeac51000cdf, stripped
seamonkey-bin: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.18, BuildID[sha1]=e04bbcc4c943c98b1e04e2ef7cbbbeac51000cdf, stripped
seamonkey; ./seamonkey
bash: ./seamonkey: Permission denied
Any ideas? It fail with both 32 and 64 bit.
 
Old 09-19-2015, 10:05 PM   #2
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,666
Blog Entries: 28

Rep: Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248
Try just

Code:
$ seamonkey
That just worked for me in a VM of Ubuntu 14.04
 
Old 09-20-2015, 03:02 PM   #3
MrUmunhum
Member
 
Registered: May 2006
Location: Mt Umunhum, CA, USA, Earth
Distribution: Debian/ Fedora/ Ubuntu/ Raspbian
Posts: 549

Original Poster
Rep: Reputation: 40
Quote:
Originally Posted by frankbell View Post
Try just

Code:
$ seamonkey
That just worked for me in a VM of Ubuntu 14.04
Nope, not found.
 
Old 09-20-2015, 05:25 PM   #4
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 23, MX 23
Posts: 7,275
Blog Entries: 21

Rep: Reputation: 3503Reputation: 3503Reputation: 3503Reputation: 3503Reputation: 3503Reputation: 3503Reputation: 3503Reputation: 3503Reputation: 3503Reputation: 3503Reputation: 3503
Quote:
Originally Posted by MrUmunhum View Post
Nope, not found.
and

Code:
ls
says when you tried what frankbell suggested?
 
Old 09-20-2015, 06:16 PM   #5
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,647

Rep: Reputation: 2655Reputation: 2655Reputation: 2655Reputation: 2655Reputation: 2655Reputation: 2655Reputation: 2655Reputation: 2655Reputation: 2655Reputation: 2655Reputation: 2655
you REALLY???????? want to put it here ???????
-- odd location but -- it is YOUR computer
there is normally NO /src folder but ....... ( a /usr/src -- but no /src)
Code:
/src/Seamonkey/seamonkey
the instructions have you put the seamonkey folder in /opt or in /usr/opt


just typing "seamonkey" will do NOTHING if that folder is NOT in the system $PATH and in the library $LD_LIBRARY_PATH

this is why you use ./seamonkey in the folder that has it


did you read ( and understand) the error ?
Code:
bash: ./seamonkey: Permission denied
what is the permissions of the file ?????
is it executable ?
are you a member of the "group"
are you thew "owner"


there is a nice shell script called "run-mozilla.sh "
normally this dose not need to be used

but you might need to make the "seamonkey" binary file executable

to check
Code:
cd /to/the/install/location
ls -l seamonkey
now YOU as a NORMAL user DO NOT !!! have permission to edit or use files in that odd location "/src"

your NORMAL!!!! user dose need to be able to read AND WRITE !!! to this folder
so for the very odd location of /src
you need to do this AS ROOT!!!!!
Code:
su -
cd /src 
chown -R YOUR_USER_NAME:users seamonkey
cd seamonkey
chmod +x seamonkey
replace "YOUR_USER_NAME" with well your normal user name


NOW you will be able to start it from ONLY!!! the terminal
and ONLY after you cd into the seamonkey folder

so open a terminal
Code:
cd /src/seamonkey
./seamonkey
you WILL need to do that EVERY TIME you want to run it from there
unless you edit the system settings and make a launcher



now plugins

this being a very ODD location you will likely need to manually make a "plugins" folder and link all the plugins in the system folder to that NEW one in the new seamonkey folder
Code:
su -
ln -s /usr/lib64/browser-plugins /src/seamonkey/plugins
it might be
/use/lib64/mozilla/plugins or some other name

Last edited by John VV; 09-20-2015 at 06:24 PM.
 
1 members found this post helpful.
Old 09-20-2015, 10:09 PM   #6
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,666
Blog Entries: 28

Rep: Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248
I realize my previous post was too brief. This is a mea culpa and the rest of the story.

I downloaded the Seamonkey tarball and decompressed it, then cd'ed into the directory created thereby, where ls revealed a file called "seamonkey," among others. I issued the command seamonkey and the browser opened and displayed the default homepage.

Sorry for being almost criminally terse.

Last edited by frankbell; 09-20-2015 at 10:11 PM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Ubuntu 14 VPS - mysql install fails after fresh OS install weirdaljr Linux - Software 2 10-09-2014 11:02 AM
[SOLVED] Mozilla Lightning fails after Seamonkey update ljb643 Slackware 13 08-17-2013 10:56 AM
Ubuntu fails to install Les Macaulay Linux - Newbie 6 12-29-2011 11:09 AM
Seamonkey fails to stay open. nappy501 Linux - Software 6 07-29-2009 03:33 PM
installation fails to install ubuntu pyush Linux - Newbie 20 01-14-2008 03:53 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 06:39 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration