web-dev-qa-db-ja.com

EtherApeがUbuntu 18.04で動作しない

ターミナルからetherapeを実行してみましたが、これが出力でした、どうすれば修正できますか

 (etherape:19453): libglade-WARNING **: 22:36:39.057: Could not load support for `gnome': libgnome.so: cannot open shared object file: No such file or directory
 (etherape:19453): libglade-WARNING **: 22:36:39.131: unknown widget class 'GnomeCanvas'
 (etherape:19453): Gtk-WARNING **: 22:36:39.131: gtk_scrolled_window_add(): cannot add non scrollable widget use gtk_scrolled_window_add_with_viewport() instead
 EtherApe-INFO: 22:36:39.141: sctp protocol not supported
 EtherApe-INFO: 22:36:39.141: ddp protocol not supported
 EtherApe-INFO: 22:36:39.141: ddp protocol not supported
 EtherApe-INFO: 22:36:39.141: ddp protocol not supported
 EtherApe-INFO: 22:36:39.141: ddp protocol not supported
 (etherape:19453): GLib-GObject-WARNING **: 22:36:39.142: invalid cast from 'GtkLabel' to 'GnomeCanvas'
 (etherape:19453): GnomeCanvas-CRITICAL **: 22:36:39.142: gnome_canvas_root: assertion 'GNOME_IS_CANVAS (canvas)' failed
 (etherape:19453): GnomeCanvas-CRITICAL **: 22:36:39.142: gnome_canvas_item_new: assertion 'GNOME_IS_CANVAS_GROUP (parent)' failed
 ERROR:diagram.c:250:addref_canvas_obj: assertion failed: (obj) unexpected EOF in read_all() critical: read_all() failed on control socket
 Aborted (core dumped)
1

これはetherapeの依存関係の問題です。 libgnomeuiをインストールして修正してください:

Sudo apt install libgnomeui-0

2
LoBS