Skip to content

Instantly share code, notes, and snippets.

@ipan
Created January 18, 2018 01:24
Show Gist options
  • Save ipan/127c24c35b290330dd7ee6d3dfb71d82 to your computer and use it in GitHub Desktop.
Save ipan/127c24c35b290330dd7ee6d3dfb71d82 to your computer and use it in GitHub Desktop.
disable and remove apt repo #apt #sed #linux

disable apt repo

sudo sed -i 's:^deb:#deb:' /etc/apt/sources.list

remove unwanted repo:

sed -i '/^#/d' sources.list
sed -i '/^deb-src/d' sources.list
sed -i '/backports/d' sources.list
sed -i '/multiverse/d' sources.list
sed -i '/^$/d' sources.list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment