cloonix中有什么特别的图像?我不能在gns3中使用相同的图像

时间:2015-05-05 14:05:37

标签: image networking virtual simulation qemu

我想在cloonix和gns3中使用相同的图片(.qcow2.img)来比较他们的表现。在GNS3中,我可以使用普通图像,但不能使用我在网站http://cloonix.fr/下载的图像。在cloonix中,我可以使用所有图像,但我在其他站点(而不是站点http://cloonix.fr/)下载的图像总是红色,我无法使用普通控制台。所以我想知道cloonix中的图像是否特殊。为什么我不能在gns3中使用它们?他们都使用QEMU,他们使用相同的类型。

1 个答案:

答案 0 :(得分:0)

在cloonix中,后门是通过在root用户中打开hvc0来初始化的。对于systemd来宾计算机,来宾虚拟机中的以下命令应该可以解决这个问题:

####################################
# systemd hvc0 for cloonix backdoor#
####################################
cd /lib/systemd/system
cp serial-getty@.service cloonix-getty@.service
sed -i s"%/sbin/agetty%/sbin/agetty -a root%" cloonix-getty@.service
mkdir -p /etc/systemd/system/getty.target.wants
cd /etc/systemd/system/getty.target.wants
ln -s /lib/systemd/system/cloonix-getty@.service cloonix-   getty@hvc0.service

对于使用inittab的旧计算机,请执行以下操作:       echo“T3:23:respawn:/ sbin / agetty -a root -8 38400 hvc0”>> / etc / inittab中