我在安装包时遇到问题dionaea.
我输入后:
./configure --with-lcfg-include=/opt/dionaea/include/ \
--with-lcfg-lib=/opt/dionaea/lib/ \
--with-python=/opt/dionaea/bin/python3.1 \
--with-cython-dir=/usr/bin \
--with-udns-include=/opt/dionaea/include/ \
--with-udns-lib=/opt/dionaea/lib/ \
--with-emu-include=/opt/dionaea/include/ \
--with-emu-lib=/opt/dionaea/lib/ \
--with-gc-include=/usr/include/gc \
--with-ev-include=/opt/dionaea/include \
--with-ev-lib=/opt/dionaea/lib \
--with-nl-include=/opt/dionaea/include \
--with-nl-lib=/opt/dionaea/lib/ \
--with-curl-config=/opt/dionaea/bin/ \
--with-pcap-include=/opt/dionaea/include \
--with-pcap-lib=/opt/dionaea/lib/ \
--with-glib=/opt/dionaea
Run Code Online (Sandbox Code Playgroud)
下一步是:
#make
Run Code Online (Sandbox Code Playgroud)
出现错误消息:
make: *** No targets specified and no makefile found. Stop.
我的目录是 /usr/local/src
我正在尝试找到/制作一个算法来计算两个任意填充的2D对象的交集(一个新的填充对象).使用线或立方贝塞尔定义对象,并且可以具有孔或自相交.我知道几个现有的算法对多边形做了同样的事情,在这里列出.但是,我想支持beziers而不将它们细分为多边形,并且输出应该与没有交叉点的区域中的输入具有大致相同的控制点.
这是一个交互式程序来做一些CSG,但剪辑不需要是实时的.我已经搜索了一段时间,但没有找到好的起点.
登录Ubuntu 8.04时是否可以自动挂载TrueCrypt卷?它已经使用Seahorse密码管理器存储无线网络密钥.可以使用TrueCrypt从同一个密钥环获取其卷密码吗?目前,这似乎是将我的源代码存储在我随身携带的USB记忆棒上的最方便的方法.
我们为一个大型Flash项目的不同客户修改了几十个版本的SWF,现在必须替换每个副本中脚本中嵌入的一些字符串.其中一些的FLA文件很难找到甚至丢失(我继承了这个混乱,重构它目前不是一个选项).
是否有(免费)工具来替换ActionScript中使用的字符串?我尝试使用swfmill将文件转换为XML并返回但是它无法处理字符串中包含的国际字符,所以我只能部分转换它们.大多数字符串都被正确提取,因此另一个工具可以完成这项工作.
我使用正则表达式将BitSet normal toString转换为二进制字符串.例如,如果myBitSet.toString()返回{10},它会设置第10位和第0位,但应该只设置第10位.
...
Matcher m = Pattern.compile("(?=(" + "\\d+" + "))").matcher(temp);
while(m.find()) {
String test2 = m.group(1);
answer.setCharAt((2*OpSize -1 - Integer.valueOf(m.group(1))), '1');
}
.....
Run Code Online (Sandbox Code Playgroud)