(08-10-2021, 02:25 AM)jed Wrote: @biketool Your SourcesList may be malformed, see the Debian Wiki: sources.list format, Example sources.list
Try this:
Code:deb http://deb.debian.org/debian/ unstable main contrib non-free
The SourcesList is composed such that you define:
- The type of archive, binary or source code (deb, src)
- The mirror, in this case the geo mirror (http(s)://deb.debian.org/debian/)
- The distribution or codename (unstable, sid)
- The component(s) (main, contrib, non-free)
There is an FAQ entry for this, I'd suggest not interfering with the repositories beyond what is outlined there, as Mobian takes an unorthodox approach to configuring repositories.
Yup... it was the space between deb.debian.org/debian and sid(or buster) I commented out my line and added
Code:
deb http://deb.debian.org/debian sid contrib non-free
Just to not I had to hand add the sources.list file it was missing in this install.
(edit)
I also tweaked /etc/apt/preferences.d/00-mobian-priority so mobile friendly Mobian updates are chosen over Debian
I moved /etc/apt/preferences.d/00-mobian-priority to /etc/apt/preferences.d/00-mobian-priorityOLD
then made a new /etc/apt/preferences.d/00-mobian-priority
Code:
Package: *
Pin: release o=Mobian
Pin-Priority: 700
Package: *
Pin: release n=sid
Pin-Priority: 300
Package: *
Pin: release o=Debian
Pin-Priority: 500