When you are using a software for the first time always expect problems! For any problem related to a specific GRASS command (you ran r.whatever and it caused error n°78371647....) see the GRASS official site or the users mailing list (learn to use this precious resource!). In this part of the tutorial you will only find the main problems first time users have using GRASS, expecially if they are not so confident with Unix-like Operative Systems. This part has been written taking into account a long GRASS teaching experience (since 1996...) This is an advice for Windows users who start using GRASS: remember to close terminals, menus or forms only when the processes you ran have completely finished! If you don't check what's written inside the windows, you could shut a terminal (or a form) with an active process and this can cause the program not to respond anymore. Don't worry, with a little practice everything becomes much easier!
Two cases are possible:
The monitor is locked by a previous un-finished operation. Try the following operations: a) close this operation (press mouse right button on the monitor or on its form); b) kill the process in this way: first digit ps -a |grep x on the terminal to know the PID (process id), then prompt kill -9 PID ; c) kill the process as seen before then manually delete the locking file by typing: rm /GRASS_install_directory/locks/computer_name/*
Many commands can create maps but they don't display them automatically: you will have to display them manually using the Graphical interface or d.rast, d.vect. Some operations that takes a long while to be concluded run in background, and you will receive an e-mail when they are finished.
Make sure that the right region has been set with g.region and adapt the region to the map that must be displayed/elaborated.
Check if you have set the right location and mapset, and if you have the right permissions to read/write these files/directories.
Maps name cannot contain algebric symbols (like +/-) or r.mapcalc will see them as operators. Remember also to check syntax, quotes, spaces, filenames... and try again.
Map and file names are case sensitive, so Goofy or GOOFY or goofy or goofY are four different maps or files! Check name's capital letters (you can display a list of available maps using g.list or listing the file on the terminal or using a file manager) and try again.
In the hist directory of the mapset there's a textfile for each map: there you can find file history, including information about reclass and any r.mapcalc operation, or if the original file has been imported from an interchange format. To read these files use a text editor or run r.info.
For further informations on GRASS installation and many more usage problems see GRASS FAQ on the official site..