Blame

1d4d54 J4nis05 2024-05-30 15:47:33 1
### 1. Open the APT `sources.list` File
2
```shell
3
sudo nano /etc/apt/sources.list
4
```
5
6
### 2. Remove any `cdrom` entries
7
* Sometimes Debian Adds the Install CD (aka. the Install USB) as a source for apt packages
8
* If `apt` can't access an entry it just throws errors
9
* Should the `sources.list` contain Lines starting with `deb cdrom:[Debian...` comment it out by adding a `# ` to the start of the Line
10
11
### 3. Update APT
12
After Saving the `sources.list` file Update apt by running
13
```shell
14
sudo apt update
15
```