Introduction
This article aims to provide a step-by-step guide on launching a GNS3 Virtual Machine (VM) on HP-VT-x enabled VMware Workstation 16 Pro. For users who desperately need to work on GNS3 projects, this guide will help get you started.
Prerequisites
Before proceeding, ensure that you have the following prerequisites:
- A valid license for VMware Workstation 16 Pro
- A compatible operating system (Windows, Linux, or macOS)
- A compatible processor with VT-x support
- GNS3 software installed on the host machine
Step 1: Install VMware Workstation 16 Pro
Follow the instructions provided by VMware to install VMware Workstation 16 Pro on your host machine. You can download the installer from the VMware website and follow the on-screen instructions.
Step 2: Create a New VM
Once VMware Workstation 16 Pro is installed, create a new VM using the following steps:
- Click on "Create a New Virtual Machine" in the VMware Workstation welcome screen.
- Select the operating system type and version that you want to install, then click "Next".
- Customize the VM settings as per your requirements, such as the amount of RAM, number of processors, and hard disk size.
- On the "Installation Method" screen, select "Install an operating system from an ISO file", and browse to the location of your GNS3 ISO file.
- Click "Next" to start the installation process.
Step 3: Enable VT-x
To enable VT-x on the new VM, follow these steps:
- Power on the VM and log in to the operating system.
- Press the "Windows key + R" to open the Run dialog box, then type "bios" and press Enter.
- Press the F2 key to enter the BIOS setup menu.
- Navigate to the "Advanced" tab, then to "Virtualization" and enable "Intel VT-x".
- Save and exit the BIOS setup menu.
Step 4: Install GNS3 on the VM
Once the VM is up and running, install GNS3 on it using the following steps:
- Open a terminal or command prompt window and update the package index:
- Install the required dependencies:
- Clone the GNS3 repository:
- Navigate to the cloned repository:
- Install the dependencies:
- Install GNS3:
sudo apt update
sudo apt install -y build-essential git python3-dev python3-pip
git clone https://github.com/GNS3Project/gns3-server.git
cd gns3-server
pip install -r requirements.txt
python3 setup.py install
Step 5: Launch GNS3
Once GNS3 is installed, launch it from the VM:
gns3
In this article, we have covered the steps to launch a GNS3 VM on HP-VT-x enabled VMware Workstation 16 Pro. We have discussed the prerequisites, creating a new VM, enabling VT-x, and installing and launching GNS3 on the VM.
References