Created
May 4, 2024 11:57
-
-
Save congnt24/f4aed1bbd95909aed29f8882f888cf70 to your computer and use it in GitHub Desktop.
install dep for tabby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Downloading packages | |
wget http://ftp.it.debian.org/debian/pool/main/g/gconf/gconf2_3.2.6-8_amd64.deb | |
wget http://ftp.it.debian.org/debian/pool/main/g/gconf/libgconf-2-4_3.2.6-8_amd64.deb | |
wget http://ftp.it.debian.org/debian/pool/main/g/gconf/gconf2-common_3.2.6-8_all.deb | |
wget http://ftp.it.debian.org/debian/pool/main/g/gconf/gconf-service_3.2.6-8_amd64.deb | |
wget http://ftp.it.debian.org/debian/pool/main/o/openldap/libldap-2.5-0_2.5.13%2bdfsg-5_amd64.deb | |
# Configuring the libgconf-2-4 package | |
sudo dpkg --configure -a | |
# Installing the libldap-2.5-0 package | |
sudo apt-get install libldap-2.5-0 | |
# Installing the gconf packages | |
sudo dpkg -i gconf2_3.2.6-8_amd64.deb | |
sudo dpkg -i libgconf-2-4_3.2.6-8_amd64.deb | |
sudo dpkg -i gconf2-common_3.2.6-8_all.deb | |
sudo dpkg -i gconf-service_3.2.6-8_amd64.deb | |
# Resolving any potential dependency issues | |
sudo apt-get -f install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment