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 12-16-2004, 06:02 PM   #16
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928

Quote:
Originally posted by pilotgi
The mods are going to come to your house and slap you silly for using a title like that to start a thread.
No, they won't... they'll just merge his threads.


Cheers,
Tink
 
Old 12-16-2004, 06:10 PM   #17
MetalliMyers
LQ Newbie
 
Registered: Dec 2004
Distribution: SuSE 9.1
Posts: 16

Original Poster
Rep: Reputation: 0
Ok, deep breath

Sorry for freaking out, I'm just not used to the architecture of this OS. I'm trying though, I really want to learn. I just can't deal with all the jargon.
 
Old 12-16-2004, 06:16 PM   #18
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
I was editing my last message when you replied, so you may want to re-read it. ( Or I need to learn to type faster ).

A program you install from RPM will most likely be fund under either /usr/bin or /usr/local/bin.
An exception might be a suite of programs like open-office or the KDE window manager which may go under /opt in their own directories. With Open Office, there may be a folder located under /opt, but links created in /usr/bin. For KDE, there will be a /opt/kde entry added to your PATH variable.

Make sure that both /usr/bin and /usr/local/bin are in your PATH variable. A program installed yourself from a tarball configure/make/make install method will probably get installed in /usr/local/bin. The /usr/local contents will be preserved when upgrading your distribution.

The /bin directory is used for basic system files like the core-utils and file-utils programs.

To find the gaim program in particular you could expand the find command to search everything, 'find / -iname "gaim"'

But that would be a waste of time in my opinion. If the gaim program doesn't get installed under /usr, I wouldn't trust it. So 'find /usr -iname "gaim"' should work if it was installed.

You can also try 'which gaim' if it is located in one of your PATH directories and is executable.

After updating the locate database with the root command 'updatedb', you can use the locate command to find it with 'locate gaim'.

Also, you could look at the contents of the RPM file using the Midnight Commander program 'mc'.
The directory structure of the RPM package file will reflect the locations that the file gets installed under. You can also read the the SPEC and/or installation script to find out what else is done (such as the Menu entry).

Good Luck!
 
Old 12-16-2004, 06:23 PM   #19
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
I forgot to reiterate that I believe that the problem with 'gaim' is that the installation failed. It should be located in your path, and you should be able to start it from the shell, even without a menu entry. This having failed, I doubt whether it was actually installed in the first place. The only other possibility is if you got your $PATH variable screwed up. Please try reinstalling it. If it was installed, you will get an 'everything installed' message and no harm will be done.

Are you installing the Gaim RPM from your SuSE installation disk?

I don't have this program installed myself, but look under the Internet section of the menu. It may have a descriptive menu entry such as 'instant messaging' rather then the name of the program itself.

Quote:
Ok, how do you use YaST to install packages such as rpm, run, tar.gz?
You use YaST to install a file from RPM. Install an RPM for SuSE if possible since that is your distro. Otherwise you may need to enter the menu entry yourself, since this part may be different between distros. Also, there are RPM packages for particular Computer Architectures. You don't want to try to install an RPM for a PPC if you have a Pentium machine.

A tar.gz (ake .tgzz) file is referred to as a tarball. This will expand to a subdidrectory. Most likely, the program was created for 'autoconf' which makes installing from souce possible even for different types of architectures and distributions. There will be a README and an INSTALL file that contains the instructions on how to install it.
About 95% of the time, This will entail a 5 step process.
1) Expand the tarball with the command tar xvzf <filename>
2) Enter the created directory and read the README and/or INSTALL files: cd <directory>/
3) run the ./configure script
4) run the 'make' command
6) su to root: jsu
7) and run 'make install'

A download that ends in .run will be a program with it's own installion routine. You may need to first set the executable bit before running it.
chmod +x download.run
./download.run


Notice the './' characters before the command. This is because, unlike MSDOS,
the current path is not executable by default. This is for security reasons, and I wouldn't change the default behavior if I were you. The ./ part refers explicitly to the current directory.

Again, good luck!


Last edited by jschiwal; 12-16-2004 at 06:44 PM.
 
Old 12-16-2004, 06:54 PM   #20
MetalliMyers
LQ Newbie
 
Registered: Dec 2004
Distribution: SuSE 9.1
Posts: 16

Original Poster
Rep: Reputation: 0
I finally found "AIM"

But the only way to start it is to find the Executeable or run "aim"

I like links, how do you put the link for in Applications?

Also, Firefox and Thunderbird came in a tar.gz

Firefox has an automatic installer but Thunderbird does not. What's the deal.

If it has an auto installer, what directory should I install it to?

Last edited by MetalliMyers; 12-16-2004 at 07:00 PM.
 
Old 12-16-2004, 07:33 PM   #21
pilotgi
Member
 
Registered: Apr 2002
Location: ks
Distribution: openSUSE Tumbleweed
Posts: 495

Rep: Reputation: 33
On my SUSE 9.2 install, chat programs are in the kde menu (green gecko icon, lower left) > internet. If you don't see it there, check the 'more programs' option.
Quote:
If it has an auto installer, what directory should I install it to?
If you downloaded the firefox installer in tar.gz format, place it in your /home directory. There may be a way to use YaST to install this, but I don't know how it is done. The way to install it from the command line is pretty straight forward, even for a n00b.

Open a terminal and type:
Code:
tar -xzvf firefox- (press tab to auto-complete this file name) (press enter)
Then:
Code:
cd firefox (press tab again to complete) (press enter)
Code:
./firefox-installer
Follow the graphical installer to complete the install.

To create a desktop icon:

Right click on an empty space on your desktop. Choose create new > file > link to application. In the window that pops up, type the name firefox in the space provided. Click the application tab at the top. In the 'command' space, click browse and select /home/yourhomedirectory/firefox-installer/firefox.

Click the general tab at the top. Click on the blue gear icon. Choose other icons and click the browse tab. Select your home folder at the left. Then choose firefox-installer > icons > mozicon50.xpm. Then click the open tab at the bottom right. Just click ok to finish out. The firefox icon will appear on your desktop.

A question for you: Do you have cds? Is it the personal version or Pro?

Last edited by pilotgi; 12-16-2004 at 07:37 PM.
 
Old 12-16-2004, 09:12 PM   #22
MetalliMyers
LQ Newbie
 
Registered: Dec 2004
Distribution: SuSE 9.1
Posts: 16

Original Poster
Rep: Reputation: 0
Thank you, that is the kind of directions I was talking about.

Very useful, thank you.
 
Old 12-17-2004, 02:59 AM   #23
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
As I stated in my previous response, I extracted the firefox-installer folder to /opt/firefox. Just to be clear. My installation of firefox was an executable, and I selected /opt/firefox as the destination. The default was a folder called firefox-installer, but this was a misnomer because it was the actual firefox folder rather than an installation directory.

I just looked in the webpage for downloading Thunderbird. It says:
Linux: GTK2 + XFT (no installer)
Use the command: tar xvzf thunderbird-1.0.tar.gz to extract the contents.

There should be a README and an INSTALL file inside the thunderbird directory containing the installation instructions.

According to there web page, these are the linux requirements:
Quote:
Software Requirements
Please note that Linux distributors may provide packages for your distribution which have different requirements.

* Linux kernel - 2.2.14 with the following libraries or packages minimums:
o glibc 2.3.2
o gtk+2.0
o XFree86-3.3.6
o fontconfig (also known as xft)
o libstdc++5
* Thunderbird has been tested on Red Hat Linux 8.0 and later
-----

OK, I'm at a windows machine right now, but I downloaded the linux package and looked at the contents using WinZip. It expands to a directory called 'thunderbird'. There is a small executable called 'thunderbird' and a large one called 'thunderbird-bin'. You could expand your tarball under the /opt directory and either make a link to /opt/thunderbird/thunderbird and /opt/thunderbird/thunderbird-bin in /usr/bin (or /usr/local/bin) or add /opt/thunderbird to your PATH variable.

----

As to your aim menu question, just add it to your menu the normal way. There is probably an icon file added by the install. There will be one for either 'aim' or 'gaim' installed even before installing gaim, since it is a common program.

Last edited by jschiwal; 12-17-2004 at 03:01 AM.
 
Old 12-17-2004, 03:04 AM   #24
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
Ignore this, I posted in the wrong tab. Sorry!

Last edited by jschiwal; 12-17-2004 at 03:22 AM.
 
  


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
installing software ceborame Linux - Newbie 3 08-07-2005 01:00 PM
Installing software NomadABC Linux - Software 5 12-24-2004 01:14 PM
installing software spiky001 Linux - Software 5 09-11-2004 08:58 PM
Installing software sharpie Slackware 3 03-12-2004 12:16 AM
Question on installing software and starting software rootlinux Linux - Newbie 5 01-19-2002 10:40 AM

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

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