LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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-23-2009, 09:25 PM   #1
obrienaj
LQ Newbie
 
Registered: Oct 2009
Posts: 2

Rep: Reputation: 0
Stuck on the basics: Installing and running downloaded applications


As a long time Windows user, I am stuck on the basics of installing and running downloaded Linux applications. I've tried to read a few tutorials but am still baffled.

I am using a Puppy based boot CD and, of course, the applications that come with the Puppy all work fine. It is when I try to add something new that I become lost. Example: I just downloaded a Linux version of the Firefox browser. I click on the downloaded file in the Download Manager and kinda expect the thing to give me a executable set-up file, but just get a whole bunch of files. One available option is to "extract" them. I create a folder to extract them to and "extract". With Firefox I see nothing in that folder. With a few other applications, I see an extracted list of files but and try to find one file that will magically start and install or boot an application, but nothing ever happens.

So, how does one download , extract, install, and then run a basic application? The references I have found on the Internet tend to be rather old or more complex that my brain can handle.

Thanks
 
Old 10-23-2009, 09:52 PM   #2
jmc1987
Member
 
Registered: Sep 2009
Location: Oklahoma
Distribution: Debian, CentOS, windows 7/10
Posts: 893

Rep: Reputation: 119Reputation: 119
Most distros come with firefox. But what is the file you are downloading? You can pm me via MSN or Yahoo if you would like for help

My contact info is in my profile by the way

Last edited by jmc1987; 10-23-2009 at 09:56 PM.
 
Old 10-23-2009, 10:06 PM   #3
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,140

Rep: Reputation: 4123Reputation: 4123Reputation: 4123Reputation: 4123Reputation: 4123Reputation: 4123Reputation: 4123Reputation: 4123Reputation: 4123Reputation: 4123Reputation: 4123
Most distros (Puppy included) use a package manager to ensure all dependencies are satisfied - best to use that usually. And usually have a wiki - again Puppy has, but generally just for its own packages.
For most (source) packages, once you explode the tarball, you'll have a README - take that as a hint. It will explain the configure, make [install] sequence necessary. There will also be generic howto's out there, but they tend to be distro specific depending on what the author used.

Any reason you chose Puppy - is this a limited spec system ?.
 
Old 10-23-2009, 10:26 PM   #4
obrienaj
LQ Newbie
 
Registered: Oct 2009
Posts: 2

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by syg00 View Post
Most distros (Puppy included) use a package manager to ensure all dependencies are satisfied - best to use that usually. And usually have a wiki - again Puppy has, but generally just for its own packages.
For most (source) packages, once you explode the tarball, you'll have a README - take that as a hint. It will explain the configure, make [install] sequence necessary. There will also be generic howto's out there, but they tend to be distro specific depending on what the author used.

Any reason you chose Puppy - is this a limited spec system ?.

The Puppy came with Seamoney not Firefox, I am having some issues with Seakmoney and Gmail. so would like Firefox. The puppy has a special application that the author made for me so I could run and test his application that requires Linux. It was his easiest way of getting me over the Linux hurdle. I had previously tried to install Ubuntu 9.04 from an ISO and ran in to some odd partitioning issues .

So, lets use Firefox as an example. If I download it in Linux, what specific things do I need to learn to get it running ?
 
Old 10-23-2009, 10:46 PM   #5
jmc1987
Member
 
Registered: Sep 2009
Location: Oklahoma
Distribution: Debian, CentOS, windows 7/10
Posts: 893

Rep: Reputation: 119Reputation: 119
For example if you download it to your /home directory

you would

Code:
cd /home
tar xvf firefox-3.5.3.tar.bz2
cd firefox-3.5.3
./configure
make
makeinstall
When you run tar xvf firefox-3.5.3.tar.bz2 besure to read the readme and/or install file in filrefox-3.5.3 for further information.
 
Old 10-23-2009, 10:58 PM   #6
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,140

Rep: Reputation: 4123Reputation: 4123Reputation: 4123Reputation: 4123Reputation: 4123Reputation: 4123Reputation: 4123Reputation: 4123Reputation: 4123Reputation: 4123Reputation: 4123
Everything (i.e. packages) tends to be different - Linux is all about choice as they say. Have a read of this - not the normal way to install a tarball, but do as they say.
Note the requirement to ensure all required libraries are installed.

Seems someone has tried it already - see this forum entry.
 
Old 10-23-2009, 11:06 PM   #7
jmc1987
Member
 
Registered: Sep 2009
Location: Oklahoma
Distribution: Debian, CentOS, windows 7/10
Posts: 893

Rep: Reputation: 119Reputation: 119
Quote:
Originally Posted by jmc1987 View Post
For example if you download it to your /home directory

you would

Code:
cd /home
tar xvf firefox-3.5.3.tar.bz2
cd firefox-3.5.3
./configure
make
makeinstall
When you run tar xvf firefox-3.5.3.tar.bz2 besure to read the readme and/or install file in filrefox-3.5.3 for further information.

This won't work I just opened up the contents of the tar ball.

Review this http://support.mozilla.com/en-US/kb/...refox+on+Linux
 
Old 10-24-2009, 07:48 AM   #8
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
Quote:
Originally Posted by jmc1987 View Post
Most distros come with firefox. But what is the file you are downloading? You can pm me via MSN or Yahoo if you would like for help
Please do not do this. LQ is not a referral service to facilitate private conversations--We need to keep the questions and answers on the forum so that everyone benefits.

Quote:
For example if you download it to your /home directory you would

<<Removed the erroneous code>>
Have you ever installed FF this way??? I sure haven't. <<i see that you corrected your mistake--please edit your first post to remove the wrong information>>

Last edited by pixellany; 10-24-2009 at 08:04 AM.
 
Old 10-24-2009, 08:01 AM   #9
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
Quote:
Originally Posted by obrienaj View Post
So, lets use Firefox as an example. If I download it in Linux, what specific things do I need to learn to get it running ?
First, welcome to LQ!!

A quick summary of some basic points:

1. The first thing to try is always the package manager. I'm not familiar with Puppy, so I cannot go further on this---have you tried a Google search using--eg--"firefox for puppy linux"?

2. If you are not using the package manager, then there are MANY ways of installing SW---some easier than others. You simply have to follow the directions supplied. Very often these directions come with the downloaded package.

3. You will quite often see packages supplied with the suffix ".tar.gz" or ".tar.bz2" These are simply compressed archives and can contain just about anything. There is a common misconception that ".tar.gz" always means source code, but that is incorrect.

4. In the case of Firefox, the compressed archive is NOT source code. After extracting, you should see a README file, but I'm pretty sure that you will be able to install it by simply running the "firefox" executable file.

When installing SW that is not from the distros official repositories, I alway put it in /opt. You can then "connect" it to the system in a variety of ways. Probably the simplest is to just create soft links---or perhaps make custom menu entries with the correct path to the executable file.
 
Old 10-24-2009, 12:15 PM   #10
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,887
Blog Entries: 28

Rep: Reputation: 534Reputation: 534Reputation: 534Reputation: 534Reputation: 534Reputation: 534
Puppy Linux Discussion Forum :: View topic - Firefox 3.5 Final and Firefox 2.0.0.20 and Firefox 1.5.0.12 - http://www.murga-linux.com/puppy/viewtopic.php?t=30434

Just grab the firefxo3.5 pet package
 
  


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
CPU running at 100% usage while no applications are running mike_morley Linux - Desktop 14 05-17-2007 09:39 PM
corrupted file in downloaded music now stuck in mp4's mini SD card helphelphelp Linux - Newbie 10 12-28-2006 12:48 AM
Do distro specific applications take the learning away from the basics of Linux? hunterhunter Linux - Newbie 6 04-06-2006 08:53 PM
Total newbie - help with installing downloaded applications. ReuvenNY Linux - Newbie 9 09-03-2005 10:12 AM
installing downloaded applications godders48 Linux - Software 3 09-19-2003 12:42 PM

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

All times are GMT -5. The time now is 12:20 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