LinuxQuestions.org
Visit Jeremy's Blog.
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 04-27-2005, 05:04 PM   #1
rixride00
Member
 
Registered: Mar 2004
Posts: 31

Rep: Reputation: 15
Downloaded File now what?


Ok guys, I am still new,
RH 9
I downloaded firefox and wlan into my Download folders.

firefox-1.0.2.installer.tar.gz
and
linux-wlan-ng-0.2.1-pre26.tar.gz


I am not sure how to install these from here? I tried extracting them but I am not sure what the .exe equivalent is in linux?
 
Old 04-27-2005, 05:17 PM   #2
mjrich
Senior Member
 
Registered: Dec 2001
Location: New Zealand
Distribution: Debian
Posts: 1,046

Rep: Reputation: 45
Either right-click, and select Extract Here (in konquoror/evolution) or in a terminal type
Code:
tar -xvvzf firefox-1.0.2.installer.tar.gz
cd firefox-installer
./firefox-installer
Cheers,

mj
 
Old 04-27-2005, 05:18 PM   #3
damicatz
Member
 
Registered: May 2004
Distribution: FreeBSD 7, Debian "Squeeze", OpenBSD 4.5
Posts: 167

Rep: Reputation: 30
Linux doesn't rely solely on file extensions like Windows based operating systems do, though most executable files end in .run or .bin or have a descriptive name.

I would try this in the directory you extracted firefox to, as root (use the su command) :

cd firefox-installer
./firefox-installer

The ./ tells the shell that you want it to run the program from your current directory.
 
Old 04-27-2005, 05:23 PM   #4
mjrich
Senior Member
 
Registered: Dec 2001
Location: New Zealand
Distribution: Debian
Posts: 1,046

Rep: Reputation: 45
Quote:
try this in the directory you extracted firefox to, as root (use the su command) :

cd firefox-installer
./firefox-installer
If you're installing it into your home directory, I wouldn't recommend doing it as root -- just do it under your regular login.

Cheers,

mj
 
Old 04-27-2005, 05:27 PM   #5
damicatz
Member
 
Registered: May 2004
Distribution: FreeBSD 7, Debian "Squeeze", OpenBSD 4.5
Posts: 167

Rep: Reputation: 30
Quote:
Originally posted by mjrich
If you're installing it into your home directory, I wouldn't recommend doing it as root -- just do it under your regular login.

Cheers,

mj
I belive the Firefox Installer does a system install but I could be wrong. I generally use ports/portage so I don't have to worry about installers.
 
Old 04-27-2005, 06:01 PM   #6
rixride00
Member
 
Registered: Mar 2004
Posts: 31

Original Poster
Rep: Reputation: 15
So is it possible for me to run something from my explorer windows after I extract it? Or do I have to use the command prompt when I want to install something?

For example, when I right click and hit extract to a subfolder, I navigate in there.

Downloads/linux-wlan-ng-0/linux-wlan-ng-0.2.1-pre26
Now in my screen I see Makefile, Config.in, and subfolders.
If I wanted to install this would I double click on something or would I have to go to the command line, navigate to it then hit ./whateverfile-installer
 
Old 04-27-2005, 06:04 PM   #7
Komakino
Senior Member
 
Registered: Feb 2004
Location: Somerset, England
Distribution: Slackware 10.2, Slackware 10.0, Ubuntu 9.10
Posts: 1,938

Rep: Reputation: 55
The presence of a Makefile would indicate that that program needs to be compiled first. Read whatever documentation is provided in the tarball. It's usually called INSTALL or README and will have instructions on compiling.
 
Old 04-27-2005, 06:19 PM   #8
rixride00
Member
 
Registered: Mar 2004
Posts: 31

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by Komakino
The presence of a Makefile would indicate that that program needs to be compiled first. Read whatever documentation is provided in the tarball. It's usually called INSTALL or README and will have instructions on compiling.
Thanks, I did read the install but I didn't quite understand it:

Quote:
You need :
--------
o Compiler and development environment
o A kernel supporting wireless extensions version 11 or higher
-> from 2.4.4 onward (including 2.6.X)
Note : CONFIG_NET_RADIO must be enabled
o (Optional) A Pcmcia package supporting Wireless Extension
o A driver supporting wireless extensions
-> Check my web pages for status of various drivers.
Note : more recent kernels and drivers are likely to support
more wireless extension features...

Compile wireless tools :
----------------------
In theory, a "make" should suffice to create the tools.

Installation :
------------
"make install" should do the right thing for you, and install
the tools, their library and the man pages. You can also uninstall the
tools via "make uninstall".
Note that the default installation is in the directory
'/usr/local/sbin'. This may not be in your path. Also, other version
of the tools may exist on the system, so double check which version is
the default and adjust your path as necessary.
but I am not sure where to run the "make install"
 
Old 04-27-2005, 06:55 PM   #9
rixride00
Member
 
Registered: Mar 2004
Posts: 31

Original Poster
Rep: Reputation: 15
Ok figured it out.

Logged in as Root, navigated to the main folder in the terminal
then did make config

"-------------- Linux WLAN Configuration Script -------------

The default responses are correct for most users.

Build Prism2.x PCMCIA Card Services (_cs) driver? (y/n) [y]:
Build Prism2 PLX9052 based PCI (_plx) adapter driver? (y/n) [n]:
Build Prism2.5 native PCI (_pci) driver? (y/n) [n]:
Build Prism2.5 USB (_usb) driver? (y/n) [n]:

Linux source directory [/lib/modules/2.4.20-31.9/build]:
Linux source tree /lib/modules/2.4.20-31.9/build is incomplete or missing!
See the HOWTO for a list of FTP sites for current kernel sources.

Configuration failed

make: *** [config] Error 1
[root@localhost linux-wlan-ng-0.2.1-pre26]#
[root@localhost linux-wlan-ng-0.2.1-pre26]#"

I navigated to lib/modules/2.x/ and the build file is there. Am I missing something?
 
Old 04-27-2005, 07:08 PM   #10
damicatz
Member
 
Registered: May 2004
Distribution: FreeBSD 7, Debian "Squeeze", OpenBSD 4.5
Posts: 167

Rep: Reputation: 30
Quote:
Originally posted by rixride00
Ok figured it out.

Logged in as Root, navigated to the main folder in the terminal
then did make config

"-------------- Linux WLAN Configuration Script -------------

The default responses are correct for most users.

Build Prism2.x PCMCIA Card Services (_cs) driver? (y/n) [y]:
Build Prism2 PLX9052 based PCI (_plx) adapter driver? (y/n) [n]:
Build Prism2.5 native PCI (_pci) driver? (y/n) [n]:
Build Prism2.5 USB (_usb) driver? (y/n) [n]:

Linux source directory [/lib/modules/2.4.20-31.9/build]:
Linux source tree /lib/modules/2.4.20-31.9/build is incomplete or missing!
See the HOWTO for a list of FTP sites for current kernel sources.

Configuration failed

make: *** [config] Error 1
[root@localhost linux-wlan-ng-0.2.1-pre26]#
[root@localhost linux-wlan-ng-0.2.1-pre26]#"

I navigated to lib/modules/2.x/ and the build file is there. Am I missing something?
Do you have the kernel sources installed?
 
Old 04-27-2005, 07:13 PM   #11
rixride00
Member
 
Registered: Mar 2004
Posts: 31

Original Poster
Rep: Reputation: 15
I have no idea what those are or where to get them?

What does that mean?

I mean I downloaded all the latest updates for RH9. I assume that is not it...
Would it be the other file to download at : :ftp://ftp.linux-wlan.org/pub/linux-wlan-ng/
that ends in :linux-wlan-ng-0.2.1-pre26.tar.gz.asc
Or am I missing a bigger picture all together?

 
Old 04-27-2005, 10:32 PM   #12
mugwump84
Member
 
Registered: Mar 2005
Distribution: Arch Linux
Posts: 61

Rep: Reputation: 15
In the RedHat Package manager, there is a option for kernel source. Install it.

(Don't worry, I left this out on my first install too)
 
Old 04-29-2005, 08:06 PM   #13
rixride00
Member
 
Registered: Mar 2004
Posts: 31

Original Poster
Rep: Reputation: 15
Thanks, I am going to try it now, is the redhat package manager the same thing as "Quick Start"?
 
Old 04-29-2005, 09:02 PM   #14
rixride00
Member
 
Registered: Mar 2004
Posts: 31

Original Poster
Rep: Reputation: 15
Nevermind, Found it,
Package Manager = Add/Remove programs.

Is Kernel-Development what I need? I don't see anything else in the list that refer's to Kernel
 
Old 04-30-2005, 05:09 AM   #15
Komakino
Senior Member
 
Registered: Feb 2004
Location: Somerset, England
Distribution: Slackware 10.2, Slackware 10.0, Ubuntu 9.10
Posts: 1,938

Rep: Reputation: 55
Yes, that will probably do it.
 
  


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
need help with a file I downloaded with bit torrent Hockeyfan Linux - Software 2 10-25-2005 09:54 PM
finding downloaded file and... j_carmona Linux - Newbie 5 04-28-2005 06:51 PM
downloaded an empty? gif file blotch Linux - Newbie 1 02-07-2005 01:19 PM
executing a downloaded file? GiaCo Linux - Newbie 6 10-25-2004 09:35 AM
Where does the Mozilla put the downloaded file? duzhenhuan Linux - Software 1 02-24-2004 05:23 AM

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

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