LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 01-18-2004, 09:57 PM   #1
zzZoiDzz
Member
 
Registered: Jan 2004
Location: Savannah
Distribution: mandrake 9.2
Posts: 31

Rep: Reputation: 15
Gaim problems installing


when i double click the installer for gaim this is what i get

some package requested cannot be installed:
gaim-0.75-0mdk9.2.i586 (due to unsatisfied libnss3)
do you agree?

ok or cancel


Im running Mandrake 9.2
Please help!
 
Old 01-18-2004, 10:02 PM   #2
Jose Muņiz
Member
 
Registered: Jul 2003
Location: Mexico City
Distribution: Slackware 9.1, SuSE 9.1
Posts: 248

Rep: Reputation: 32
You could try going to your Mandrake Control Center, and select Install Packages under the Software Management. Then type in libnss and press enter. You will be shown some package(s). Install them and then try installing gaim again.
 
Old 01-18-2004, 10:56 PM   #3
zzZoiDzz
Member
 
Registered: Jan 2004
Location: Savannah
Distribution: mandrake 9.2
Posts: 31

Original Poster
Rep: Reputation: 15
libnss

i tried doing that but libnss is not in the list of applications. I looked under "all applications" and i found a few entries begginging with lib, but none at all close to libnss or libnss3
 
Old 01-19-2004, 01:12 AM   #4
MrOuija
Member
 
Registered: Jan 2004
Location: California
Distribution: SuSE10.1, Ubuntu Edgy, Fedora 7
Posts: 30

Rep: Reputation: 15
Google

Search for libnss3.rpm or something of the sort. Try using RPM finder to find the RPM for libnss3. From there it's just an install/upgrade with the RPM command. You could also try passing the RPM installer the --force command, but Im not sure I'd recommend it.

Upon querying my install files for nss I found the following installed on my system:
insserv
openssh
openssh-askpass
openssl

Look into those, they may contain your required file.

Last edited by MrOuija; 01-19-2004 at 01:17 AM.
 
Old 01-19-2004, 02:16 AM   #5
zzZoiDzz
Member
 
Registered: Jan 2004
Location: Savannah
Distribution: mandrake 9.2
Posts: 31

Original Poster
Rep: Reputation: 15
For anyone else who replies to this post. Speak to me as if i am a 4th grader please. RPM finder is a google thing i figured out but your not very explanative about t he RPM command. Are there certain switches, do i have to specify some file that i have downloaded with the rpm command? I have used linux for about a total of 3 hours now so im as new as you can get. Thanks!
 
Old 01-19-2004, 08:26 AM   #6
php
Member
 
Registered: Jun 2001
Location: USA
Distribution: Slackware
Posts: 827

Rep: Reputation: 30
Do you have Mozilla installed? libnss comes FROM/WITH mozilla. You can google for Mozilla NSS and read all about it OR compile GNUtls ssl support into your system and then install gaim
 
Old 01-19-2004, 01:55 PM   #7
MrOuija
Member
 
Registered: Jan 2004
Location: California
Distribution: SuSE10.1, Ubuntu Edgy, Fedora 7
Posts: 30

Rep: Reputation: 15
RPM Info

RPM is a fairly easy (by comparison) to use tool for installing software on the Linux O/S. It is typically used with
> rpm [options] [package]
You can get more information about the options by running
> man rpm
Generally speaking, if you have questions about any command in Linux, you can typically run a man [command name] for information on options and usage syntax. Typically if you have an older version of a package installed, you'd upgrade it with
> rpm -Uhv [package]
I believe the switch to install fresh is -I and for force is either --force or -f but don't quote me on either, as Im running Windows as I write this so I can't exactly *check*.

Installing Mozilla is actually probably the best way to get that library, as hackers_ previously posted. Check www.mozilla.org. They *should* have an easy to install RPM file for your distro of Linux.
 
Old 01-19-2004, 02:07 PM   #8
nightjar
Member
 
Registered: May 2002
Location: Argentina
Distribution: Mandrake 9.2
Posts: 177

Rep: Reputation: 30
But Mandrake 9.2 comes with gaim 0.94 that u can install easily
 
Old 01-20-2004, 08:50 PM   #9
zzZoiDzz
Member
 
Registered: Jan 2004
Location: Savannah
Distribution: mandrake 9.2
Posts: 31

Original Poster
Rep: Reputation: 15
ok ok i got gaim installed, but heres what i did. I re-installed mandrake but instead of pressing cancel i actually downloaded and used cd's 2 and 3 during the install. This apparently puts many more libraries on there. Also, your giving me switches in these posts which is great, but i have no idea what the commands are. the only commands I know are from reading posts like ifconfig>ifconfig.txt which outputs to a text file. SImple enough, and SU which is the super user login. I run mandrake from a blue non-root account because i have idea wtf im doing.

Nightjar, i didnt see gaim anywhere after installing mandrake, but then again i have NO CLUE where things are stored. What are all these folders for? /local /host / blah blah blah. I know what the abbreviations mean, but i know no clue as to what determines what goes in each folder. I mean i must have found 5 different games folders...wtf is that?

Anyhow, thanks for the help. Try speaking in steps to me though, i learn better that way. =P
 
Old 01-20-2004, 09:13 PM   #10
Pwnz3r
Member
 
Registered: Jan 2004
Location: Lancaster, OH
Distribution: Gentoo
Posts: 393

Rep: Reputation: 30
You sound like I did about 3 weeks ago when I started using Mandrake Linux 9.2. then I started compiling stuff from the sources and doing a lot of other things that taught me more and more about Linux, enough to even install the newest kernel. First of all, it helps to know how to use terminals for things like moving, copying, and other things with files. Also, you can uninstall and reinstall packages through it.

When he said try using the --force option, he meant opening a terminal and logging in as root. To login as root type su and then your root password. Then, go to the directory where the RPM is located, and since you start out in your home folder if it's in /home/yourname/location-of-rpm-download then you would type cd location-of-rpm-download. After you're there, type ls to get a list of the files in the directory and then enter:

rpm -i --force name-of-package.rpm

For example, for gaim version 0.75, type:

rpm -i --force gaim-0.75-0mdk9.2.i586.rpm

I tried explaining it in fourth grade terms as much as possible for you. If you're confused about what I mean, just ask me. I'm more than willing to help you further.
 
Old 01-20-2004, 09:32 PM   #11
zzZoiDzz
Member
 
Registered: Jan 2004
Location: Savannah
Distribution: mandrake 9.2
Posts: 31

Original Poster
Rep: Reputation: 15
hell yeah, now thats what im talking about. I understand dos commands very well so i knew it couldnt be much different. Thanks
 
Old 01-20-2004, 09:35 PM   #12
Pwnz3r
Member
 
Registered: Jan 2004
Location: Lancaster, OH
Distribution: Gentoo
Posts: 393

Rep: Reputation: 30
You're welcome. I understand how confusing it is at first, but I'm happy to say that it'll start making since after a little while.
 
Old 01-21-2004, 12:20 PM   #13
nightjar
Member
 
Registered: May 2002
Location: Argentina
Distribution: Mandrake 9.2
Posts: 177

Rep: Reputation: 30
gaim is locate in CD2.
U can do the following:
1) mount /mnt/cdrom
2) cd /mnt/cdrom/Mandrake/RPMS2
3)rpm -Uvfh gaim (and here press tab; maybe twice)
After this you can type gaim from a terminal
 
Old 01-22-2004, 10:13 PM   #14
zzZoiDzz
Member
 
Registered: Jan 2004
Location: Savannah
Distribution: mandrake 9.2
Posts: 31

Original Poster
Rep: Reputation: 15
Thumbs up quick note

ok i already got the program installed by just downloading the rpm file and double clicking it. I still have a quick question. I installed winex3 and also installed counterstrike, but when i typed MOUNT in the console it gave me an error. I had to use the command mount and then put "supermount" at the end. What is that about? It worked then....
 
Old 01-24-2004, 10:58 PM   #15
nightjar
Member
 
Registered: May 2002
Location: Argentina
Distribution: Mandrake 9.2
Posts: 177

Rep: Reputation: 30
what does u need to mount ?
a cd? a windows partition?
Let we know what do u want to do with mount?
 
  


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
Problems installing linphone-im for gaim-vv Hungry ghost Linux - Software 0 02-14-2005 07:31 AM
Problems installing Gaim FireInTheDark Linux - Software 3 12-01-2004 05:19 PM
problems installing GAIM thw Linux - Software 3 03-07-2004 06:50 AM
problems installing Gaim (among other things kaega2 Linux - Software 10 09-25-2003 09:57 PM
problems installing Gaim 0.66 digitalboi Linux - Software 6 08-15-2003 11:57 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

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