GNS3: dynamips compile untuk simulator Cisco: Difference between revisions
From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
| Line 7: | Line 7: | ||
==Compile== | ==Compile== | ||
sudo su | |||
apt install libc6-dev-i386 | |||
apt install libelf-dev:i386 libpcap0.8-dev:i386 | |||
apt install git cmake | |||
cd /usr/local/src | cd /usr/local/src | ||
git clone | git clone https://github.com/GNS3/dynamips.git | ||
cd dynamips | cd dynamips | ||
mkdir build | mkdir build | ||
cd build | cd build | ||
cmake .. | cmake .. -DDYNAMIPS_ARCH=x86 | ||
make | |||
make install | |||
atau | atau | ||
cmake -DCMAKE_INSTALL_PREFIX=/target/path .. | cmake -DCMAKE_INSTALL_PREFIX=/target/path .. | ||
==Referensi== | ==Referensi== | ||
Latest revision as of 22:14, 21 December 2018
sumber: https://github.com/GNS3/dynamips
instalasi
apt install libelf-dev libpcap0.8-dev libpcap-dev cmake
Compile
sudo su apt install libc6-dev-i386 apt install libelf-dev:i386 libpcap0.8-dev:i386 apt install git cmake cd /usr/local/src git clone https://github.com/GNS3/dynamips.git cd dynamips mkdir build cd build cmake .. -DDYNAMIPS_ARCH=x86 make make install
atau
cmake -DCMAKE_INSTALL_PREFIX=/target/path ..