-
-
Save pije76/691ae891d681fe5ff5834b2bfb9722a8 to your computer and use it in GitHub Desktop.
Fix `Error: Timeout was reached ` when doing `apt-get update`
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 | |
# source: https://www.linuxquestions.org/questions/debian-26/apt-get-update-gets-stuck-while-reading-package-list-on-my-slug-795324/ | |
mv /var/lib/dpkg/status /var/lib/dpkg/status.broken.bak | |
cp /var/lib/dpkg/status-old /var/lib/dpkg/status | |
rm -rf /var/lib/apt/lists/* | |
dpkg --configure -a | |
aptitude update | |
aptitude upgrade | |
aptitude install -f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment