GNS3: dynamips compile untuk simulator Cisco: Difference between revisions

From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs)
Created page with "sumber: https://github.com/GNS3/dynamips ==instalasi== apt install libelf-dev libpcap0.8-dev libpcap-dev cmake ==Compile== cd /usr/local/src git clone git://github.com/..."
 
Onnowpurbo (talk | contribs)
 
(2 intermediate revisions by the same user not shown)
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://github.com/GNS3/dynamips.git
  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
  make install
  make install


atau


 
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 ..

Referensi

Pranala Menarik