yersinia软件安装完成后无法启动-G图形化问题
一开始报错> Hmmm... it seems that you don't have gtk support or Yersinia
has been configured with --disable-gtk option...
Go and get it!!
搜索gpt后得到了安装依赖的命令
sudo apt update
sudo apt install libgtk-3-dev
然而还是不起作用,因为找不到apt install的yersinia配置文件在哪个位置,选择直接自己clone一个yersinia
git clone https://github.com/tomac/yersinia /opt/yersinia(clone一个)
apt install autoconf libgtk-3-dev libnet1-dev libgtk2.0-dev(下载依赖)
cd /opt/yersinia(进入文件目录)
./autogen.sh(检查依赖)
./configure --with-gtk(原本是./configure)
make
make install
在输入上述命令后得到
Yersinia, our beloved one, has been configured with the following options.
Remote admin : true
Use ncurses : true
Use gtk : yes
以上输出
然而仍旧无法通过yersinia -G命令开启图形化界面
怀疑是原本install的yersinia干扰了我clone的yersinia
执行完全清除命令sudo apt purge yersinia
随后得到图形化界面,但是仍旧产生大量报错,目前作者仍未修复,建议使用命令行操作
评论 (0)