You are not logged in.

1

Sunday, September 7th 2003, 8:13am

How to delete all games in Linux

Tell me please.
I installed Linux Red Hat 7.2 Enigma with all games.
But now i wnat to delete all games how can i do this?

seb

Professional

Posts: 622

Location: Sydney

Occupation: Student

  • Send private message

2

Sunday, September 7th 2003, 9:33am

I am assuming this works, as I have never tried it, but - first check what games packages you have available to uninstall.

[code:1]
[seb@localhost seb]$ rpm -qa | grep -i games
kdegames-3.1-11mdk
kdegames-devel-3.1-11mdk

[/code:1]

Then
[code:1]
[seb@localhost seb]$rpm -e kdegames-3.1-11mdk
[seb@localhost seb]$rpm -e kdegames-devel-3.1-11mdk
[/code:1]

This should work (hypothetically) but I cant confirm it.

3

Monday, September 15th 2003, 11:20am

Amazing that I can actully learn something new every day! :D I never tried to display all rpm packages and then just grep for games but it's a very usefull command to know to find out other things too. Seb Although you did not repply to this message for me thx for the answer anyway. 8)
The Best Games are for Download @ GCCLINUX

seb

Professional

Posts: 622

Location: Sydney

Occupation: Student

  • Send private message

4

Monday, September 15th 2003, 11:50am

no problem!
Actually, i may have even learnt that trick from someone here! heheh

5

Monday, September 15th 2003, 2:01pm

There's a spot of dependency trouble when you attempt this...

[code:1]# rpm -e --test kdegames
error: Failed dependencies:
libatlantic.so.1 is needed by (installed) kdeaddons-3.1.3-0.9x.1
libatlantikui.so.1 is needed by (installed) kdeaddons-3.1.3-0.9x.1
libkdegames.so.1 is needed by (installed) kdeaddons-3.1.3-0.9x.1
[/code:1]

However forcing it to remove shouldn't cause any problems unless you want to use atlantikdesigner from kdeaddons.

[code:1]# rpm -e --nodeps kdegames[/code:1]

:D

6

Sunday, September 21st 2003, 9:55am

Just a little silly question but is that not going to damage the

Quoted

kdeaddons
package?
The Best Games are for Download @ GCCLINUX

7

Monday, September 22nd 2003, 9:43am

Quoted

However forcing it to remove shouldn't cause any problems unless you want to use atlantikdesigner from kdeaddons.


The only dependency in kdeaddons is atlantikdesigner see above

:)