this error means that Your GRASS installation can not access GDAL
library. First You have to check is GDAL/OGR library installed on that
system. Most likely it is not. There are only two solutions then:
1) Ask system administrator to install GDAL/OGR and GRASS;
2) Install GDAL/OGR and GRASS from source in Your home directory and
set up manually all paths (LD_LIBRARY_PATH, PATH).
this error means that Your GRASS installation can not access GDAL
library. First You have to check is GDAL/OGR library installed on that
system. Most likely it is not. There are only two solutions then:
Ask system administrator to install GDAL/OGR and GRASS;
Install GDAL/OGR and GRASS from source in Your home directory and
set up manually all paths (LD_LIBRARY_PATH, PATH).
thanks for help: resolved the problem by installing GDAL and setting:
setenv LD_LIBRARY_PATH "$LD_LIBRARY_PATH":[path to gdal]/gdal/lib/
beware if $LD_LIBRARY_PATH is empty the above will shorten to
":[path to gdal]/gdal/lib/", and the starting ":" will make it include
the current directory in the path, which could cause weird problems if
working with multiple copies of the libraries or create a minor security
risk.