[SOLVED] hearts game downloading problem

This forum is dedicated to basic help and support :

Ask here your questions about basic installation and usage of Mageia. For example you may post here all your questions about getting Mageia isos and installing it, configuring your printer, using your word processor etc.

Try to ask your questions in the right sub-forum with as much details as you can gather. the more precise the question will be, the more likely you are to get a useful answer

[SOLVED] hearts game downloading problem

Postby ofbodur » May 18th, '13, 00:53

I am trying to download hearts game and play it on my Mageia 2 distr.
the command that I write on to my konsole is as follows:

rpm –ivh hearts-1.95-1.i586.rpm –force --nodeps

However it doesn't work.
At first, just typing urpmi hearts-1.95-1.i586.rpm does not work at all, so I tried the code above to fix it, but could not download it.
Last edited by ofbodur on May 18th, '13, 22:27, edited 1 time in total.
There is nothing worse than having failed to explain what you believe.
User avatar
ofbodur
 
Posts: 35
Joined: Mar 10th, '13, 12:33
Location: Istanbul

Re: hearts game downloading problem

Postby doktor5000 » May 18th, '13, 00:57

Where do you want to download it?
Cauldron is not for the faint of heart!
Caution: Hot, bubbling magic inside. May explode or cook your kittens!
----
Disclaimer: Beware of allergic reactions in answer to unconstructive complaint-type posts
User avatar
doktor5000
 
Posts: 18066
Joined: Jun 4th, '11, 10:10
Location: Leipzig, Germany

Re: hearts game downloading problem

Postby ofbodur » May 18th, '13, 01:04

does it matter where I want to download?
say in a file named hearts in desktop..
There is nothing worse than having failed to explain what you believe.
User avatar
ofbodur
 
Posts: 35
Joined: Mar 10th, '13, 12:33
Location: Istanbul

Re: hearts game downloading problem

Postby doktor5000 » May 18th, '13, 01:11

No, i meant where do you want to download it from? You didn't gave an URL or something like that, and it seems this is not in the Mageia repos.
Cauldron is not for the faint of heart!
Caution: Hot, bubbling magic inside. May explode or cook your kittens!
----
Disclaimer: Beware of allergic reactions in answer to unconstructive complaint-type posts
User avatar
doktor5000
 
Posts: 18066
Joined: Jun 4th, '11, 10:10
Location: Leipzig, Germany

Re: hearts game downloading problem

Postby ofbodur » May 18th, '13, 01:30

sorry..
I downloaded it from a different source.
Here what happened...

Code: Select all
[root@localhost Downloads]# rpm -ivh --force hearts-1.95-1.i586.rpm --nodeps
Preparing...                ########################################### [100%]
   1:hearts                 ########################################### [100%]
[root@localhost Downloads]# hearts
hearts: error while loading shared libraries: libkdeui.so.4: cannot open shared object file: No such file or directory
There is nothing worse than having failed to explain what you believe.
User avatar
ofbodur
 
Posts: 35
Joined: Mar 10th, '13, 12:33
Location: Istanbul

Re: hearts game downloading problem

Postby Ken-Bergen » May 18th, '13, 02:04

ofbodur wrote:sorry..
I downloaded it from a different source.
As the Doktor said, if you don't tell us where you downloaded it from it's next to impossible to help.
Ken
Ken-Bergen
 
Posts: 1019
Joined: Mar 30th, '11, 02:45
Location: Chilliwack, BC, Canada

Re: hearts game downloading problem

Postby mhoke63 » May 18th, '13, 08:16

Did you try using URPMI instead of RPM -i? URPM eliminates dependency hell.
mhoke63
 
Posts: 23
Joined: May 3rd, '13, 06:41

Re: hearts game downloading problem

Postby ofbodur » May 18th, '13, 09:59

Ken-Bergen wrote:
ofbodur wrote:sorry..
I downloaded it from a different source.
As the Doktor said, if you don't tell us where you downloaded it from it's next to impossible to help.


I downloaded the program from the link below
http://rpm.pbone.net/index.php3/stat/4/idpl/17920543/dir/other/com/hearts-1.95-1.i586.rpm.html

mhoke63 wrote:Did you try using URPMI instead of RPM -i? URPM eliminates dependency hell.

Yes I tried it but does not work.
There is nothing worse than having failed to explain what you believe.
User avatar
ofbodur
 
Posts: 35
Joined: Mar 10th, '13, 12:33
Location: Istanbul

Re: hearts game downloading problem

Postby doktor5000 » May 18th, '13, 11:06

ofbodur wrote:hearts: error while loading shared libraries: libkdeui.so.4: cannot open shared object file: No such file or directory

That is a KDE3 library, you won't be able to run such an old program under Mageia, sorry.

What is hearts exactly? A game? Maybe we can help you find an alternative.
Cauldron is not for the faint of heart!
Caution: Hot, bubbling magic inside. May explode or cook your kittens!
----
Disclaimer: Beware of allergic reactions in answer to unconstructive complaint-type posts
User avatar
doktor5000
 
Posts: 18066
Joined: Jun 4th, '11, 10:10
Location: Leipzig, Germany

Re: hearts game downloading problem

Postby ofbodur » May 18th, '13, 12:04

My objective was not playing the game but just wondered why it did not open. The idea of library is not so precise in my head. I may read about these topics later.

Hearts is a card game similar to basic games in Windows that is already downloaded within the distribution itself.
There is nothing worse than having failed to explain what you believe.
User avatar
ofbodur
 
Posts: 35
Joined: Mar 10th, '13, 12:33
Location: Istanbul

Re: hearts game downloading problem

Postby oj » May 18th, '13, 16:51

kde4-games, gnome-games and some specific cards programs have a version of hearts, IIRC.

"Library" is simple: many programs may need the same services from the system. To be obvious, an app needs to use the display. Rather than every application having every possible service it needs built into it, many common parts of making the system work are put in a "library" full of files that do the various things every app needs. So if you have 12 card games installed, rather than having 12 copies of a file they all need, the developer just points the app to the appropriate file(s) in the "library."

The library is a collection of basic files common to pretty much all applications. There's hundreds of them, and each app will use whatever of them they need. It makes managing the whole operating system a whole lot easier.

Many errors such as the one you saw here, are caused by an application needing a specific version of a file ("library") that differs from the version installed. If you were to replace a specific "library" with an older version to get an app to work, you would break every other app that calls on that same library.
oj
 
Posts: 232
Joined: Aug 23rd, '12, 00:22

Re: hearts game downloading problem

Postby ofbodur » May 18th, '13, 22:26

it was a great and thorough explanation indeed. thanks oj!
There is nothing worse than having failed to explain what you believe.
User avatar
ofbodur
 
Posts: 35
Joined: Mar 10th, '13, 12:33
Location: Istanbul


Return to Basic support

Who is online

Users browsing this forum: No registered users and 1 guest