This should be possible, but you'll need to provide about 2GB of extra storage to /var/cache/apt. Assuming you have an additional 16GB SSD with a partition containing enough free space mounted at /data (or a micro SD card, or external USB disk, or ...), this could look like:
Code:
sudo -i
mkdir /data/alt.var.cache.apt
cd /var/cache
cp -a apt /data/alt.var.cache.apt
mv apt apt.old
ln -s /data/alt.var/cache.apt/apt .
If your disk space is mounted somewhere other than /data or your directory is named something else, adjust the paths accordingly. You can reverse the process when you are done with the upgrade.
Bookmarks