-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinstallDependencies.sh
19 lines (12 loc) · 923 Bytes
/
installDependencies.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!bin/bash
echo "Download Dependencies" &&
( cd $HOME/Downloads && mkdir installCiscoPacketTracerDependecies && cd $HOME/Downloads/installCiscoPacketTracerDependecies &&
wget https://github.com/PetrusNoleto/Error-in-install-cisco-packet-tracer-in-ubuntu-23.10-unmet-dependencies/releases/download/CiscoPacketTracerFixUnmetDependenciesUbuntu23.10/libegl1-mesa_23.0.4-0ubuntu1.22.04.1_amd64.deb &&
wget https://github.com/PetrusNoleto/Error-in-install-cisco-packet-tracer-in-ubuntu-23.10-unmet-dependencies/releases/download/CiscoPacketTracerFixUnmetDependenciesUbuntu23.10/libgl1-mesa-glx_23.0.4-0ubuntu1.22.04.1_amd64.deb )
echo Installing gdebi &&
sudo apt install gdebi
echo install Dependencies &&
(cd $HOME/Downloads/installCiscoPacketTracerDependecies &&
sudo gdebi ./libegl1-mesa_23.0.4-0ubuntu1.22.04.1_amd64.deb ./libgl1-mesa-glx_23.0.4-0ubuntu1.22.04.1_amd64.deb
)
echo "install Dependencies Finished"