LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 02-11-2004, 07:55 PM   #1
air69buddy
LQ Newbie
 
Registered: Feb 2004
Location: Michigan
Distribution: SUSE 9.0 Personal Edition
Posts: 3

Rep: Reputation: 0
Install downloaded programs


I am trying to figure out how to install programs I download from the internet. The example is Mozilla Firebird 0.8. I download it into my documents file and then extracted in there. I have the compressed folder there and the folder that says firefox on it. This is were I am stuck, I opened the firefox folder and could not figure out how to install. Have to think different than the .exe that I have been used to doing. Any suggestions on this or future downloads would be great. I am using SUSE 9.0 personal edition. Thanks, Steve
 
Old 02-11-2004, 07:58 PM   #2
compu73rg33k
Member
 
Registered: Feb 2004
Distribution: Ubuntu
Posts: 316

Rep: Reputation: 30
I'm kinda of a newbie too but I think you go in the terminal and cd to the uncompressed folder and then type ./configure then when that's done type ./make and then finally
./make install that should install it for you
 
Old 02-11-2004, 09:30 PM   #3
FF103
Member
 
Registered: Aug 2003
Location: Kentucky
Distribution: Mandrake 10.1
Posts: 157

Rep: Reputation: 30
If you have already extracted the zipped file to a directory,now you should have a folder that says Firebird or Mozilla-Firebird ,All you need to do to run Firebird is "cd" or "change directory" to your Firebird folder. In a terminal you will see "you@localhost$" or whatever you are called in a terminal, after that type "cd"and space, then the path to your firebird folder,(example)/home/you/programs/Firebird , then you should be "you@Firebird$ ,then type "su"(no quotes) and hit enter,you should be root@Firebird# , now type ./MozillaFirebird ,and hit enter,and firebird should open and run. after that you can make a link on the desktop and you won't have to go thru all that again. Hope this helps
 
Old 02-11-2004, 10:22 PM   #4
vectordrake
Senior Member
 
Registered: Nov 2003
Location: NB,Canada
Distribution: Something alpha or beta, binary or source...
Posts: 2,280
Blog Entries: 4

Rep: Reputation: 47
I have it installed now in my home directory (its firefox, right?) To run it, I cd /firefox and type firefox

Or, from a run box in kde or gnome ~/firefox/firefox (which is shorthand for /home/corey/firefox/firefox)

Or, from a terminal, ~forefox/firefox &
then I can type exit and close the terminal without closing the browser
 
Old 02-12-2004, 09:37 AM   #5
air69buddy
LQ Newbie
 
Registered: Feb 2004
Location: Michigan
Distribution: SUSE 9.0 Personal Edition
Posts: 3

Original Poster
Rep: Reputation: 0
Here is what I have done so far and it still won't work. I went to terminal which says aces69@linux:~> then I type in cd /home/aces69/Documents/firefox which is were I have it uncompressed. It now says aces69@linux:~/Documents/firefox> to which point I type in su from earlier reply. It will ask me for a password which I am assuming is for the root. I type my password in and I get this linux:/home/aces69/Documents/firefox # then I type in ./firefox and get a connection refused by server. Anymore help in this would be great or if there is a shorter way. I am getting the hang of this just taking a little time. Thanks, Steve
 
Old 02-12-2004, 04:49 PM   #6
FF103
Member
 
Registered: Aug 2003
Location: Kentucky
Distribution: Mandrake 10.1
Posts: 157

Rep: Reputation: 30
Both of you are close to getting it to work I believe. Steve if you are getting a" connection refused by server" are you trying to run this program from a server? if so that might be some of the problem,or maybe a firewall on the server is stopping you . I'll try and give you the rundown as I would install it on my system running Mandrake 9.1, This is all done from a terminal.
[xxx@localhost xxx]$ cd /home/xxx/programs/MozillaFirebird(enter)
[xxx@localhost MozillaFirebird]$ su
password
root@localhost MozillaFirebird]#./mozilla-firebird (or whatever the shell script is to install or run it)

I believe I saw where FireBird changed to FireFox or FoxFire but the install should be the same, just replace FireBird with FireFox. Hope this helps.
 
Old 02-12-2004, 05:08 PM   #7
vectordrake
Senior Member
 
Registered: Nov 2003
Location: NB,Canada
Distribution: Something alpha or beta, binary or source...
Posts: 2,280
Blog Entries: 4

Rep: Reputation: 47
don't try as root!!!!!!!!!!

Read my post. The tarball is uncompressed. It makes its own directory (wherever you uncompressit). You're done! Enter the directory and type the name of the program. firebird <enter key> or firefox <enter key>

Surf.

Mozilla 1.6 seems much snappier for some reason, though. That caught me by surprise.
 
Old 02-12-2004, 05:44 PM   #8
SciYro
Senior Member
 
Registered: Oct 2003
Location: hopefully not here
Distribution: Gentoo
Posts: 2,038

Rep: Reputation: 51
better to just install by source code i think, as this trouble with extracting and mutilbe cd'ing is solved by the wounderful comand "make install"
 
Old 02-12-2004, 06:23 PM   #9
vectordrake
Senior Member
 
Registered: Nov 2003
Location: NB,Canada
Distribution: Something alpha or beta, binary or source...
Posts: 2,280
Blog Entries: 4

Rep: Reputation: 47
Re: Install downloaded programs

Quote:
Originally posted by air69buddy
I am trying to figure out how to install programs I download from the internet. The example is Mozilla Firebird 0.8. I download it into my documents file and then extracted in there. I have the compressed folder there and the folder that says firefox on it. This is were I am stuck, I opened the firefox folder and could not figure out how to install. Have to think different than the .exe that I have been used to doing. Any suggestions on this or future downloads would be great. I am using SUSE 9.0 personal edition. Thanks, Steve
This will get you going:

extract the file: tar -xzvf firewhatever #if its a tar.gz
tar -xjvf firewhatever #if its a tar.bz2

enter the directory and type the name of the executable (if you have a color terminal, the exe's should be green). If firefox, type "firefox" without the quotes. It should work. Do this as user. if you want an easy way into it, make a shortcut on your desktop to it or add it to your menu.

If you want an easy way to it from the CLI, as root make a shortcut to a globally accessible directory, like /usr/local or /usr/bin:

ln -s /usr/bin/firefox ~/home/whoeveryoumaybe/forefox/forefox

Then you can type "firefox" from the CLI (or the runbox) too. Or you could wait for the rpm to show up in suse's repository
 
Old 02-12-2004, 06:38 PM   #10
Redsquare
LQ Newbie
 
Registered: Feb 2004
Distribution: RedHat 9 Shrike i-386
Posts: 7

Rep: Reputation: 0
ok so with red hat linux 9 am i restricted to running only 386 and 686 filetypes?
Whats the deal with that exactly? I managed to get some programs to install but
other programs either dont respond at all or hang my command line session window.
 
Old 02-12-2004, 06:43 PM   #11
FF103
Member
 
Registered: Aug 2003
Location: Kentucky
Distribution: Mandrake 10.1
Posts: 157

Rep: Reputation: 30
air69buddy said in his original post that he had already unzipped the compressed file and had a directory called "firefox" and he was trying to get it to run the browser for firefox,at least thats what I understood from his original post, so I was trying to get his program to run.,maybe I misunderstood his post,sorry about that if that was the case.
 
Old 02-12-2004, 06:56 PM   #12
vectordrake
Senior Member
 
Registered: Nov 2003
Location: NB,Canada
Distribution: Something alpha or beta, binary or source...
Posts: 2,280
Blog Entries: 4

Rep: Reputation: 47
Quote:
Originally posted by Redsquare
ok so with red hat linux 9 am i restricted to running only 386 and 686 filetypes?
Whats the deal with that exactly? I managed to get some programs to install but
other programs either dont respond at all or hang my command line session window.
i386 will run on a 386 and up
i686 will run on a P-II, PPro, P-III, P-IV

i686 will not run on a P-I, 486, 386
 
Old 02-12-2004, 07:02 PM   #13
dave bean
Member
 
Registered: Jun 2003
Location: UK
Distribution: Slackware 9.1
Posts: 136

Rep: Reputation: 15
hi
air69buddy I hope you don't mind if i ask a few questions i think are relevent to this thread, like you i recently have been learning linux by downloading progs then installing them. So my related queries are

it seems a bit messy to download progs to /home then link them to the desktop, my /home is full of directories which i don't use or need to see. Is it good practice to unzip them into /usr and then 'make install' this way they are with all the other progs ? (i know its a bit of windows mentality in me

and the other query is how to link a program into the menu - im using Kde. I read the LQ tutorial (thanks, its excellant) but this could be a useful thing to add to it.

thanks
 
Old 02-12-2004, 07:02 PM   #14
vectordrake
Senior Member
 
Registered: Nov 2003
Location: NB,Canada
Distribution: Something alpha or beta, binary or source...
Posts: 2,280
Blog Entries: 4

Rep: Reputation: 47
Quote:
Originally posted by FF103
air69buddy said in his original post that he had already unzipped the compressed file and had a directory called "firefox" and he was trying to get it to run the browser for firefox,at least thats what I understood from his original post, so I was trying to get his program to run.,maybe I misunderstood his post,sorry about that if that was the case.
I see what you were doing. It was right, but not for the Linux version of firebird/firefox. I tried ./blablabla and it didn't work. Tried just the name. It worked. The Linux installs aren't really installs. You just unzip the folder and you're done. You can put it wherever you want to. This goes for Win32 nightlies too. This is actually kinda good, as you know where everything is and you can get rid of it by deleting the directory (and your .phoenix profile)
 
Old 02-12-2004, 10:27 PM   #15
air69buddy
LQ Newbie
 
Registered: Feb 2004
Location: Michigan
Distribution: SUSE 9.0 Personal Edition
Posts: 3

Original Poster
Rep: Reputation: 0
Ok I can surf with Firefox from the unzipped folder. There is a file in there called firefox and when I click on it the browser opens and I am good to go. Is there a quicker way of bringing this up like an icon? I tried to move and copy the firefox icon onto my desktop but when I click it, it says program not found. Thanks in advance for all the help. Steve
 
  


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
downloaded some programs / drivers where to from here. mookie2125 Linux - Newbie 1 07-12-2005 07:45 PM
Installing downloaded programs elite122 Linux - Newbie 3 07-29-2004 11:38 AM
opening downloaded programs Bikerboy Linux - Software 1 07-09-2004 12:01 AM
Can't install downloaded programs with Synaptic. atko Linux - Software 1 07-06-2004 08:27 AM
How to install programs that i downloaded from internet??? VityokM Linux - Software 3 12-21-2003 11:53 PM

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

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