mirror of
https://github.com/sahinakkaya/til.git
synced 2024-11-22 00:29:37 +01:00
TIL: Deleting a repository that is not needed
This commit is contained in:
parent
76985ca774
commit
696c13c46c
13
system/deleting-a-repository-that-is-not-needed.md
Normal file
13
system/deleting-a-repository-that-is-not-needed.md
Normal file
@ -0,0 +1,13 @@
|
||||
Say you added a repository with `sudo add-apt-repository -y ppa:...` and you want to delete it maybe because it gives you an error while you are trying to update your system:
|
||||
```
|
||||
E: The repository 'http://ppa.launchpad.net/...' does not have a Release file.
|
||||
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
|
||||
N: See apt-secure(8) manpage for repository creation and user configuration details.
|
||||
```
|
||||
|
||||
You will need to find corresponding file in `sources.list.d` and delete it.
|
||||
|
||||
```
|
||||
cd /etc/apt/sources.list.d
|
||||
sudo rm bad-repo.list
|
||||
```
|
Loading…
Reference in New Issue
Block a user