26th July 2024

Installing Packet Tracer on Ubuntu

Cisco Packet Tracer (CPT) is a free network simulator program developed by Networking Academy. You can download and use this program on your Netacad website or from this link.

How to Install Packet Tracer on Ubuntu?

The 7.2.2 version of Packet Tracer was released for download on Netacad on September 11, 2019. Although this is a maintenance release, it removes dependent Java files for Skills Assessment.

Networking Academy has prepared a Setup GUI to make it easier to install CPT on Linux systems. Old versions were downloading as tar.gz, now the file extension of the CPT is .run.

When installing Packet Tracer Cisco simulator software on your Linux computer, you should definitely install the libpng12 file. Otherwise, after installation, it will not react when you try to run the program.

After downloading the program to your computer, open the terminal in the “PacketTracer-7.2.2-ubuntu-setup.run” folder.

Packet Tracer Dowloand
Packet Tracer Dowloand
Open in Terminal
Open in Terminal

 

First check your internet connection and check the Ubuntu system version with “cat / etc / os-release” command.

Ubuntu version
Ubuntu version

 

After configuring the file permission, run the following command in the terminal to start the upload.

chmod +x PacketTracer-7.2.2-ubuntu-setup.run
./PacketTracer-7.2.2-ubuntu-setup.run
chmod and ./PacketTracer-7.2.2-ubuntu-setup.run
chmod and ./PacketTracer-7.2.2-ubuntu-setup.run

 

Do not change the default location in the Installation Folder window and continue by clicking the “Next” button.

configure installation folder
configure the installation folder
configure the installation folder
configure the installation folder

After reading the license agreement of Packet Tracer, accept it and continue by clicking “Next”.

Packet Tracer License Agreement
Packet Tracer License Agreement

Click “Install” to start the installation.

Readly to install
Ready to install

After entering the “root” password, continue by pressing the “OK” button.

"root" password
“root” password

After completing the installation process, click on “Finish”.

installation process
installation process

Type “packettracer” and press Enter to run CPT in Terminal.

You can examine that Packet Tracer could not be started from the image below. This is because dependent packages for CPT are not installed.

LEARN MORE  SSH Configuration on Cisco Router
Packet tracer cannot run
Packet tracer cannot run

 

Open the Ubuntu sources list with the command “nano /etc/apt/sources.list” and add the address below to the list and save the file. Save file command = (Ctrl+x and Y)

sudo nano /etc/apt/sources.list
deb https://ftp.debian.org/debian stable main contrib non-free
nano /etc/apt/sources.list
nano /etc/apt/sources.list

 

Update the Ubuntu repository list using the apt-update command.

sudo apt update
sudo apt update

 

One of the most important dependent packages for Packet Tracer is “libpng”. To download “Libpng”, run the command below in the terminal.

wget https://ftp.us.debian.org/debian/pool/main/libp/libpng/libpng12-0_1.2.50-2+deb8u3_amd64.deb

If the certificate fails, you can enter “wget https://ftp.us.debian.org/debian/pool/main/libp/libpng/libpng12-0_1.2.50-2+deb8u3_amd64.deb –o-check-certificate” command.

download "Libpng"
download “Libpng”

 

Run “dpkg -i libpng12-0_1.2.50-2 + deb8u3_amd64.deb” to start the “libpng” installation on Ubuntu.

dpkg -i libpng12-0_1.2.50-2+deb8u3_amd64.deb

While installing Libpng, you may get an error in the terminal like below because the “multiarch-support” package is required for this software to work.

multiarch-support
multiarch-support

 

Run the “apt install multiarch-support” command to install the “multiarch” package in Ubuntu.

apt install multiarch-support
apt install multiarch-support
apt install multiarch-support

 

After trying to install “libpng” again, you will see that the process was successful. Try to run the simulator program with the “packettracer” command in the terminal.

Now Packet Tracer runs smoothly in Ubuntu.

Leave a Reply

Your email address will not be published. Required fields are marked *