tshark :***内存错误***:[6265]:GSlice:断言失败:sinfo->n_allocated > 0

tshark :***内存错误***:[6265]:GSlice:断言失败:sinfo->n_allocated > 0

我已经wireshark-1.10.14-7.el7.x86_64安装了,当我运行 tshark 时,大约 15 到 20 秒后出现错误。它只能工作几秒钟并抛出错误

有一个红帽错误 1176967,但要看到需要红帽订阅。我如何在 Cent OS 7 中解决此问题。

我正在运行的命令是:

sudo -S stdbuf -o L tshark -Q -B 20 -i eth0                                               \
'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' \
-Y'http.request.method == "GET" && http.request.uri contains "/imagepage/"'   \
-T fields -e http.host -e http.request.uri 2>/dev/null >somefile

在搜索时这里我发现了这个,但我如何设置这个值G_SLICE=always_malloc。我不知道这是否有帮助。

在此输入图像描述

答案1

尝试导出以下变量(对我有用)

export G_SLICE=always-malloc evolution

查看更多这里

相关内容