Skip to content

Instantly share code, notes, and snippets.

@DeepCoreSystem
Forked from trastle/99fixbadproxy
Last active January 24, 2021 16:21
Show Gist options
  • Save DeepCoreSystem/4a1ce24a879baae6d230d0cbf8e0a229 to your computer and use it in GitHub Desktop.
Save DeepCoreSystem/4a1ce24a879baae6d230d0cbf8e0a229 to your computer and use it in GitHub Desktop.
Fixing the issue with apt caused by a bad local proxy: 1- Create 99fixbadproxy at /etc/apt/apt.conf.d/99fixbadproxy // 2- Run fix-apt.sh
Acquire::http::Pipeline-Depth "0";
Acquire::http::No-Cache=True;
Acquire::BrokenProxy=true;
#!/bin/bash
sudo rm /var/lib/apt/lists/*
sudo rm /var/lib/apt/lists/partial/*
sudo apt-get update
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment