LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 10-10-2014, 12:38 AM   #1
Wyght
LQ Newbie
 
Registered: Sep 2013
Location: Canada
Distribution: Mint 14 (want to learn Debian)
Posts: 7

Rep: Reputation: Disabled
Install SeaMonkey/2.29.1 Mint 17


Hi I am a newbie and I am trying to install SeaMonkey/2.29.1 onto my Mint 17 box.

I downloaded seamonkey-2.29.1.tar.bz2 then in Terminal I used this line
tar xvjf seamonkey-2.29.1.tar.bz2 which extracted the files and folders. I then tried to use the following and received the error messages included

Code:
./configure
bash: ./configure: No such file or directory

 make
make: *** No targets specified and no makefile found.  Stop.

sudo make install
[sudo] password for WSW: 
make: *** No rule to make target `install'.  Stop.

sudo make install
[sudo] password for warren: 
make: *** No rule to make target `install'.  Stop.
Can someone tell me what I am doing wrong, I have been searching around google for a couple hours and keep finding the same install method save one which gave as a suggestion to install firefox to type firefox-bin into Terminal so I typed in seamonkey-bin but received

Code:
seamonkey-bin
seamonkey-bin: command not found
Can anyone tell me what I should do to get SeaMonkey installed, thanks
 
Old 10-10-2014, 12:50 AM   #2
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Hi:

The tar.bz2 that you downloaded should of came with a "Read Me" file or a "Install" file try reading those files to find out how to install it that way. You need to be in the directory in which the Make file is in so the terminal see's it.
http://www.codecoffee.com/tipsforlinux/articles/27.html

-:-This will help you to understand errors-:-
https://linuxacademy.com/blog/linux/...tall-tutorial/

Look in your Software Center Seamonkey might be in there and the Software MGR will install it for you.

Try running:
Code:
sudo apt-get install seamonkey
http://community.linuxmint.com/software/view/seamonkey

Hope that helps:-
 
1 members found this post helpful.
Old 10-10-2014, 12:55 AM   #3
Wyght
LQ Newbie
 
Registered: Sep 2013
Location: Canada
Distribution: Mint 14 (want to learn Debian)
Posts: 7

Original Poster
Rep: Reputation: Disabled
I tried your idea and received this error msg any ideas?

Code:
sudo apt-get install seamonkey
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package seamonkey is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'seamonkey' has no installation candidate
 
Old 10-10-2014, 01:09 AM   #4
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
The package that you dowloaded isn't a source file.
chmod the file
You extract it to where you want it installed either your /home directory if you are the only user that reqires it or /opt.
If in /opt
Make the necessary links to the executable, most likely
ln -s /opt/seamonkey/seamonkey /usr/bin
Add to your menu.
Also keep in mind when there's an update you will have to manually update the same way you installed.

Last edited by EDDY1; 10-10-2014 at 01:11 AM.
 
1 members found this post helpful.
Old 10-10-2014, 01:19 AM   #5
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
It sounds like your repository list may not be able to find it.
It also appears that APT (your commandline utility) doesn't know about seamonkey.

With Mint you can install .deb packages. The first link on this page for seamonkey is for a 32-bit machine. The second link is for a 64-bit machine.
Download Seamonkey form here and use the
http://sourceforge.net/projects/ubun...mozilla-build/

Use the dpkg command as "root" to install the package-
Make sure your in the directory in which the Seamonkey download is in when you run the cmd-
Code:
dpkg --install nameofpkg.deb
http://www.cyberciti.biz/howto/quest...heat-sheet.php

-:-If that doesn't work look in your Software Center for Seamonkey-:-

Aside from that you can add the repo by using the apt-add-repository cmd-
http://community.linuxmint.com/tutorial/view/173
 
2 members found this post helpful.
Old 10-10-2014, 01:21 AM   #6
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
Originally Posted by EDDY1 View Post
The package that you dowloaded isn't a source file.
chmod the file
You extract it to where you want it installed either your /home directory if you are the only user that reqires it or /opt.
If in /opt
Make the necessary links to the executable, most likely
ln -s /opt/seamonkey/seamonkey /usr/bin
Add to your menu.
Also keep in mind when there's an update you will have to manually update the same way you installed.
Thanks!
 
1 members found this post helpful.
Old 10-10-2014, 01:31 AM   #7
Wyght
LQ Newbie
 
Registered: Sep 2013
Location: Canada
Distribution: Mint 14 (want to learn Debian)
Posts: 7

Original Poster
Rep: Reputation: Disabled
Smile

Quote:
Originally Posted by Ztcoracat View Post
It sounds like your repository list may not be able to find it.
It also appears that APT (your commandline utility) doesn't know about seamonkey.

With Mint you can install .deb packages. The first link on this page for seamonkey is for a 32-bit machine. The second link is for a 64-bit machine.
Download Seamonkey form here and use the
http://sourceforge.net/projects/ubun...mozilla-build/

Use the dpkg command as "root" to install the package-
Make sure your in the directory in which the Seamonkey download is in when you run the cmd-
Code:
dpkg --install nameofpkg.deb
http://www.cyberciti.biz/howto/quest...heat-sheet.php

-:-If that doesn't work look in your Software Center for Seamonkey-:-

Aside from that you can add the repo by using the apt-add-repository cmd-
http://community.linuxmint.com/tutorial/view/173
Thanks this worked
 
1 members found this post helpful.
Old 10-10-2014, 01:38 AM   #8
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
Quote:
Originally Posted by Ztcoracat View Post
It sounds like your repository list may not be able to find it.
It also appears that APT (your commandline utility) doesn't know about seamonkey.

With Mint you can install .deb packages. The first link on this page for seamonkey is for a 32-bit machine. The second link is for a 64-bit machine.
Download Seamonkey form here and use the
http://sourceforge.net/projects/ubun...mozilla-build/

Use the dpkg command as "root" to install the package-
Make sure your in the directory in which the Seamonkey download is in when you run the cmd-
Code:
dpkg --install nameofpkg.deb
http://www.cyberciti.biz/howto/quest...heat-sheet.php

-:-If that doesn't work look in your Software Center for Seamonkey-:-

Aside from that you can add the repo by using the apt-add-repository cmd-
http://community.linuxmint.com/tutorial/view/173
Great links & also the command.
 
1 members found this post helpful.
Old 10-10-2014, 01:48 AM   #9
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
Originally Posted by Wyght View Post
Thanks this worked
Your Welcome!

Have a great weekend!
 
  


Reply



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
[BUG] in seamonkey 2.9 slackbuild; does not create usr/include/seamonkey-2.9/nss -> . zerouno Slackware 5 05-02-2012 03:21 AM
Seamonkey and Seamonkey libs update for Slackware 13.1? Lufbery Slackware 7 08-05-2011 03:00 AM
Can I install Mozilla SeaMonkey in Squeeze? rkelsen Debian 4 08-10-2010 07:58 AM
Newbie with Mint/ Linux needs to install Clam AV in Mint after 4 Wdws Trogan attack BAKEAPPLEFARM Linux Mint 6 03-24-2010 08:38 PM
LXer: SeaMonkey 1.0.6 and SeaMonkey 1.1 Beta Released LXer Syndicated Linux News 0 11-09-2006 02:33 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 02:22 AM.

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