Package Details: packettracer 8.2.2-1

Git Clone URL: https://aur.archlinux.org/packettracer.git (read-only, click to copy)
Package Base: packettracer
Description: A cross-platform visual simulation tool designed by Cisco Systems that allows users to create network topologies and imitate modern computer network
Upstream URL: https://www.netacad.com/courses/packet-tracer
Licenses: custom
Submitter: Vamp898
Maintainer: runnytu
Last Packager: runnytu
Votes: 147
Popularity: 0.83
First Submitted: 2009-02-18 07:52 (UTC)
Last Updated: 2024-03-09 22:29 (UTC)

Dependencies (16)

Required by (0)

Sources (4)

Pinned Comments

runnytu commented on 2020-01-04 16:58 (UTC) (edited on 2020-01-04 16:59 (UTC) by runnytu)

To install all versions of packettracer except 7.2.2, follow this guidelines: 1. Download the snapshot from this AUR. 2. Tar -zxf the packettracer.tar.gz snapshot (it creates the dir packettracer/ with the PKGBUILD on it). 3. Download the latest packettracer tarball from your Netacad account and copy it into the packettracer/ dir. 4. Create the package with the command makepkg (it creates a packettracer.pkg.tar.xz). 5. Install the package with either makepkg -i or sudo pacman -U packettracer.pkg.tar.xz.

Packettracer 7.2.2 are auto installable via run file, download it from netacad webpage and run it, you don't need this package.

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 .. 47 Next › Last »

dead_donkey commented on 2023-04-20 10:57 (UTC) (edited on 2023-04-20 10:57 (UTC) by dead_donkey)

BUG: Packet Tracer is not associated with mimetype x-scheme-handler/pttp by installation of this package--but it is in Ubuntu. PTTP is used to do assessments in NetAcad with Packet Tracer, potentially among other things.

For reference do $dpkg -e CiscoPacketTracer_821_Ubuntu_64bit.deb and see line 10 of the generated DEBIAN/postinst. See also /opt/packettracer/bin/updatepttp, but that's a binary executable that I'm scared to run cos idk what it does.

WORKAROUND: $xdg-mime default cisco-ptsa.desktop x-scheme-handler/pttp (spoiler alert: this this is line 10 of DEBIAN/postinst)

I know nothing about packages in Arch but as a friendly reminder putting this in the post-uninstallation script is probably a good idea too.

runnytu commented on 2023-04-01 11:18 (UTC)

@sTiKyt, when is icedtea-web requested/needed?

sTiKyt commented on 2023-03-30 20:14 (UTC)

Shoudn't icedtea-web be a dependency?

dead_donkey commented on 2023-03-15 05:34 (UTC)

@tategotoazarasi did you download it from https://www.netacad.com/portal/resources/packet-tracer? For me it has version 8.2.1 on that page. Maybe Cisco hasn't propagated the update worldwide yet?

tategotoazarasi commented on 2023-03-14 14:34 (UTC)

Where can I get CiscoPacketTracer_821_Ubuntu_64bit.deb? There is only 820 on the official website.

dead_donkey commented on 2023-03-13 08:33 (UTC)

The .desktop files added in the latest version of this package don't have the executable flag set by default; hence, when trying to launch them, I got an error 'You are not authorised to execute this file'. Just a straightforward chmod a+x is enough to fix.

cezarg1983 commented on 2023-03-12 19:58 (UTC)

Error with the last update

==> Making package: packettracer 8.2.1-1 (Sun Mar 12 15:49:05 2023) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Retrieving sources... ==> ERROR: CiscoPacketTracer_821_Ubuntu_64bit.deb was not found in the build directory and is not a URL. :: Unable to build packettracer - makepkg exited with code: 1

perseo commented on 2023-01-29 13:57 (UTC) (edited on 2023-01-29 14:12 (UTC) by perseo)

If you're using KDE plasma, you can do some fixes to the .desktop file:

1) Color correction if using dark themes:

sudo sed -i "s/\/opt\/packettracer\/packettracer/XDG_CURRENT_DESKTOP=GNOME \/opt\/packettracer\/packettracer/g" /usr/share/applications/cisco-pt.desktop
sudo sed -i "s/\/opt\/packettracer\/packettracer/XDG_CURRENT_DESKTOP=GNOME \/opt\/packettracer\/packettracer/g" /usr/share/applications/cisco-ptsa.desktop

2) Set window title for application:

echo "StartupWMClass=PacketTracer" | sudo tee -a /usr/share/applications/cisco-pt.desktop
echo "StartupWMClass=PacketTracer" | sudo tee -a /usr/share/applications/cisco-ptsa.desktop

Hope this helps somebody and saves some time.