Skip to content

Instantly share code, notes, and snippets.

@akatche
Forked from trastle/99fixbadproxy
Created December 6, 2019 13:33
Show Gist options
  • Save akatche/e18ff087123e97ea064d105e72f4065e to your computer and use it in GitHub Desktop.
Save akatche/e18ff087123e97ea064d105e72f4065e 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 clear.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