红联Linux门户
Linux帮助

在archlinux下安装GNS3+Wireshark+QEMU+VPCS+Virtualbox

发布时间:2017-01-27 10:17:04来源:linux网站作者:Rao_JL
一、GNS3安装:
1.yaourt安装:
在/etc/pacman.conf 配置文件在末尾加入
[archlinuxcn]
#The Chinese Arch Linux communities packages.
SigLevel = Optional TrustAll
Server   = http://repo.archlinuxcn.org/$arch
安装yaourt:
pacman -S yaourt
用yaourt安装:
yaourt -S gns3-gui
yaourt -S gns3-server
用yaourt安装的话貌似会出现错误:不能连接到本地 127.0.0.1:3080。
2.从github下载源码安装
安装GNS3-SERVER:
sudo pacman -S python-pip qt5-svg qt5-webkit python-pyqt5 python-jsonsch  ema python-jinja python-raven python-docker-py python-psutil python-para  miko python-sip
sudo pacman -S git
git clone  https://github.com/GNS3/gns3-server.git
cd gns3-server
检查版本:
git tag | grep v1.5.1
选择安装版本:
git checkout v1.5.1
安装:
sudo python3 setup.py install
安装GNS3-GUI:
git clone https://github.com/GNS3/gns3-gui.git
cd gns3-gui
git tag | grep v1.5.1
git checkout v1.5.1 
sudo python3 setup.py install
至此,GNS3安装完成!
 
二、Wireshark/QEMU/VPCS/Dynamips 安装:
pacman -S wireshark qemu vpcs dynamips virtualbox
 
本文永久更新地址:http://www.linuxdiyf.com/linux/27970.html