Adding software through add/remove software
Did you activate the "advanced" menu yet ? If not - do so.
Instructions can be found in the topic
Linux Linpus - Acer Aspire One - Advance mode hack.
If you right click on the desktop, you will see an option to "add/remove software" under the system menu. Clicking that will start a program that will allow you to install packages from the fedora repository - including about 224 game related ones
The package "gnome-games" will install several games, including minesweeper,blackjack, four in a row and so on. Officially it includes aislerot solitaire, but that seems to not install.
Fortunately the package "PySolFC" is a good choice for solitaire - it includes the "normal" one you play in windows (klondike) as well as a few 100 others.
If you are addicted to windows games install the package "wine". That will allow you to play quite a few (older/simple) windows games on you aspire one - and comes complete with windows minesweeper
Console install with yum
Alternatively you can install programs from the console. A terminal window can be opened through the filemanager, or by pressing alt+f2 and typing "terminal" (Without the quotes) in the run box.
Then, to for instance install PySolFC, type
sudo yum install PySolFC
To break this command down for you:
- sudo tells the system to do this as root (administrator on windows machines)
- yum is the nifty program that will download and install stuff for you
- install is what you want yum to do
- PySolFC is the name of the program you want.