
Miguel Herreros Cejas
PreguntaSimplemente hay que descargar el Packete que viene en el curso, crear un nuevo folder y extraer los archivos dentro de ese folder.
Situarse en ese folder desde la terminal e insertar el comando ./install
Cuando termine la instalación, reiniciar el ordenador.
Si cuando reinciamos, e insertamos packettracer en la consola, solo sale un mensaje diciendo “Starting Packet Tracer 7.1.1”, pero no se hace nada más, entonces hay que seguir las siguientes instrucciones.
https://askubuntu.com/questions/963457/cisco-packet-tracer-7-1-wont-start
Navigate to the directory where PacketTracer is installed (this is the default):
cd /opt/pt/bin
then run PacketTracer7
./PacketTracer7
Now, if it shows a list of “libqt5xxx” missing libraries, please install them all.
sudo apt install libqt5xxx*
Remember, just write everything that is behind the first “.”(dot) and to put the * in the end of the name of the package.
In my case, it was a package named “libQt5Script.so.5”, so I did this:
sudo apt-get install libqt5script*
After that, running PacketTracer7
./PacketTracer7
should now work.