-
Notifications
You must be signed in to change notification settings - Fork 225
keepwn edited this page Jul 16, 2015
·
5 revisions
-
Q: Linux下,已经安装Mono,报错信息为
System.DllNotFoundException: libgdiplus.so
,怎么解决?A: 应该是没有
libgdiplus.so
的原因,请先安装libgdiplus。 -
Q: 在kali/ubuntu下运行程序的时候报如下错误:
Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly 'Altman, Version=3.0.0.37363, Culture=neutral, PublicKeyToken=null' or one of its dependencies. File name: 'Altman, Version=3.0.0.37363, Culture=neutral, PublicKeyToken=null' [ERROR] FATAL UNHANDLED EXCEPTION: System.IO.FileNotFoundException: Could not load file or assembly 'Altman, Version=3.0.0.37363, Culture=neutral, PublicKeyToken=null' or one of its dependencies. File name: 'Altman, Version=3.0.0.37363, Culture=neutral, PublicKeyToken=null'
**A**: 这似乎是mono的一个bug,原因是找不到指定目录下的dll文件。将Bin目录下的`Altman.*.dll`和`Eto.*.dll`剪切到程序根目录就ok了。
- **Q**: Altman连接aspEval类型,无法连接?
**A**: 是之前脚本类型错误的命名导致的。实际上aspEval对应的一句话服务端代码为`<%Execute Request("a")%>`而不是eval,修改一下服务端代码就可以了。