I am sorry I can't reply to the thread "gdiplus error" since i just subscribed this maillist.<br>I've encountered this problem too, and I found this is a dependency problem caused by mono, not OpenSim.<br>
Your mono looked for gdiplus.dll, but failed to find it.<br>First, run "ldconfig -p | grep gdiplus" to find out what kind of gdiplus lib you have.<br>Then, modify /etc/mono/config, add a mapping like this:<br>*********************************************************************
<br><dllmap dll="gdiplus.dll" target="libgdiplus" os="!windows"/><br>*********************************************************************<br>Replace the target with the lib name on your system.
<br>At last, run <br><pre>MONO_LOG_LEVEL=debug mono Opensim.exe<br>to see if it works.<br><br>Maybe you also need to change the name (or create symbolic name) of other libs,<br>such as libexif and libexpat.<br>On my machine, I need to do the following since my libgdiplus is looking for 
<br>wrong versions of those libs<br>*********************************************************************<br>ln -s libexif.so.12 libexif.so.9<br>ln -s libexpat.so.1 libexpat.so.0<br>*********************************************************************
<br><br></pre>