Dynamic MMap ran out of room
getting the above error means that your apt cache is out of space. This is solved simply by editing
/etc/apt/apt.conf or /etc/apt/apt.conf.d/70debconf and adding the following line :
APT::Cache-Limit “10000000″; ( this is equal to 10m, set it to whatever you want or need )
That’s it but remember that by increasing the cache you might end up with a full drive so run:
apt-get clean
once in a while.

tank you
it-s works-
i did this, and it doesnt seem to work.
I tried this and it worked, albeit with a small change:
APT::Cache-Limit “10000000″;should be
"APT::Cache-Limit 10000000;without the quotation marks, otherwise apt doesn’t didn’t seem to register the change in my case.
best of luck to anyone who runs into this issue
I used APT::Cache-Limit “50000000″ (to increase from 25000000) in /etc/apt/apt.conf.d/70debconf when trying to get this to work in KNOPPIX 6.2
Worked like a charm. Thanks GKOO!!