05-20-2017, 02:46 PM
Those brave enough to fix this themselves can do the following to fix:
change line 699 from:
to:
notice the added semicolon after ubuntu3.10
Then run:
Please confirm this fix works.
Code:
sudo leafpad /var/lib/dpkg/info/grub-pc.postinst
change line 699 from:
Code:
if dpkg --compare-versions "$2" lt-nl 2.02~beta2-36ubuntu3.10 then
to:
Code:
if dpkg --compare-versions "$2" lt-nl 2.02~beta2-36ubuntu3.10; then
notice the added semicolon after ubuntu3.10
Then run:
Code:
sudo dpkg --configure grub-pc
Please confirm this fix works.