在CentOS或Linux上使用Mono执行.Net应用程序
我在Visual Studio 2010的C#.Net中开发了一个使用WinForm的测试应用程序。现在,我想在Linux下使用Mono在CentOS上运行此应用程序。 所以我尝试了下面的命令序列 -
[root@localhost TestLinux]# /usr/bin/mono ./Test.exe
我遇到了一个例外
Unhandled Exception: System.TypeInitializationException: An exception was thrown by the type initializer for System.Windows.Forms.XplatUI ---> System.TypeInitializationException: An exception was thrown by the type initializer for System.Drawing.GDIPlus ---> System.DllNotFoundException: gdiplus.dll
at (wrapper managed-to-native) System.Drawing.GDIPlus:GdiplusStartup (ulong&,System.Drawing.GdiplusStartupInput&,System.Drawing.GdiplusStartupOutput&)
at System.Drawing.GDIPlus..cctor () [0x00000] --- End of inner exception stack trace ---
at <0x00000> <unknown method>
at System.Drawing.Graphics.FromHdcInternal (IntPtr hdc) [0x00000]
at System.Windows.Forms.XplatUIX11.SetDisplay (IntPtr display_handle) [0x00000]
at System.Windows.Forms.XplatUIX11..ctor () [0x00000]
at System.Windows.Forms.XplatUIX11.GetInstance () [0x00000]
at System.Windows.Forms.XplatUI..cctor () [0x00000] --- End of inner exception stack trace ---
at <0x00000> <unknown method>
at System.Windows.Forms.Application.EnableVisualStyles () [0x00000]
at Test.Program.Main () [0x00000]
在做一些研究的同时,我发现这是由于gdiplus.dll及其计数器部分libgdiplus.so.0在Linux上的链接所致,需要将其条目放入ldconfig缓存中。
[root@localhost TestLinux]# ldconfig -p | grep libgdiplus
libgdiplus.so.0 (libc6) => /usr/lib/libgdiplus.so.0
输出清楚地显示libgdiplus.so.0存在于ldconfig缓存中,但程序仍然无法运行。 我也尝试在应用程序配置中添加DllMap条目,如下所示
<?xml version="1.0"?>
<configuration>
<startup>
<supportedRuntime version="v2.0.50727"/>
</startup>
<dllmap dll="gdiplus.dll" target="libgdiplus.so.0"/>
</configuration>
请过去让我知道是否有人偶然发现了这个问题。
你已经追查错误。 您的单声道版本不支持EnableVisualStyles。 升级到支持它的版本(据我记得它是> = 2.9),或者尝试在你的.net应用程序中禁用此功能,这将导致“不那么好的UI元素”。 对我来说,它工作,因为我正在研究gentoo。 突然间,在出现之后,我的单声道应用程序不再崩溃。
还要确保libgdiplus.so.0实际上已安装并且在路径中,它不是默认情况下在mono中。 但是,是的,主要的是CentOS默认配备了过时的单声道版本。
链接地址: http://www.djcxy.com/p/90059.html上一篇: Executing .Net Application using Mono on CentOS or Linux
下一篇: Attempting to host a .net web application on Apache Mono