Update Manager got botched stalling zramswap-enabler update from zramswap-enabler_0.2.1-0~19~precise1_all.deb to 0~20.
Subsequently all this failed:
apt-get remove zramswap
apt-get install -f
apt-get autoclean
apt-get autoremove
synaptic
dpkg --configure -a
I then used the folowing long and fastidious method (overdetailed, newbie mode activated, beeing a newbie myself), to overcome this.
***********************************
note : < something > means a keyboard key
***********************************
pre-0 - Forgot this, I rebooted before doing this...
0 - Open a terminal:
0.1 - press simultaneously <control> <alt> <t>
or
0.2 - go through the menu for this step
1 - become root
sudo su <enter>
type_your_administrative_password <enter>
2 - stop zramswap-enabler, type
/etc/init.d/zramswap stop <enter>
3 - remove zramswap-enabler startup service
update-rc.d -f zramswap remove <enter>
4 - Remove zramswap-enabler files, choose one of of the following two options:
4.1 - YOU ASSUME, BY CHOOSING THIS OPTION, THAT YOU FULLY UNDERTAND ALL ITS IMPLICATIONS; just remove all the zramswap* files, type
find / -type f -name "zramswap*" -exec rm -f {} \; <enter>
or
4.2 - ask for permission for every removal, type
find / -type f -name "zramswap*" -exec rm -i {} \; <enter>
5 - To be on the safe side
5.1 - type
apt-get autoremove <enter>
5.2 - type
apt-get autoclean <enter>
5.3 - probably not needed, but just in case, type
apt-get remove zramswap-enabler <enter>
6 - close terminal
7 - reboot
***********************************
Good luck.
Bookmarks