kernel.org was compromised, and the debian mirrors taken offline in the fallout from that. Switched to just using ftp.debian.org, but then when running apt-get update, would get the error:
Reading package lists... Error! E: Dynamic MMap ran out of room E: Error occurred while processing ntp (NewVersion1) E: Problem with MergeList /var/lib/dpkg/status E: The package lists or status file could not be parsed or opened.
Solution is to make sure cache limit for APT is high enough, and that there’s enough room under /var to handle the cache. To up the limit to 50M, I set
APT::Cache-Limit "50000000";
in /etc/apt/apt.conf (had previously upped it to 20M).
(NTS: check df output; /var should never be so close to being full that space available there should matter, but to be safe, might as well do a
apt-get clean
to empty the cache.)