If you installed them and the installation ran to completion then they will be on your machine. It is possible that the binaries are not in your $PATH. See e.g.
Unable to start installed games [Solved]. You can use various commands to find them, for example:
- Code: Select all
$ whereis pacmanarena
pacmanarena: /usr/games/bin/pacmanarena
and, if /usr/games/bin/ is not in your $PATH then you would need to enter the command using Alt-F2 or in a Konsole/Terminal window (or configure the menu GUI to use the command):
- Code: Select all
/usr/games/bin/pacmanarena
- Code: Select all
$ whereis alien
alien:
$ whereis alien-arena
alien-arena:
$ whereis alienarena
alienarena: /usr/games/bin/alienarena
$ /usr/games/bin/alienarena
Another useful tool for finding files quickly is the
locate command. You need to install the mlocate package and then populate its index file first:
- Code: Select all
$ su
Password:
# equo install mlocate
# updatedb
# exit
$ locate pacmanarena
From the output you'll be able to see in the list where the likely binary or launch script is located.