0

I am using Lubuntu 14.04.2

I recently updated the xserver-xorg-video-intel-lts-utopic driver from:

2:2.99.914~1~exp1ubuntu4.3~trusty1

To

2:2.99.914~1~exp1ubuntu4.5~trusty1

Now I have randomly missing letters in the desktop icon text and other text in the GUI. I tried reloading the driver from Synaptic but it comes back periodically. The only solution I have found (albeit temporary) is to logout and log back in.

This was part of an update package that has gone awry.

I don't have the proprietary intel drivers installed, nor do I want to.

How do I revert back to the previous driver (2:2.99.914~1~exp1ubuntu4.5~trusty1) where I didn't have this issue?

The command line solution that mchid gave me below should work but I get an error message as seen below.

The solution provided does not have anything to do with my current issue as far as I can tell.

Thx

Nick

1 Answers1

1

You can use apt-mark hold to prevent a specific package from upgrading to a newer version.

Run the following commands install the version and to hold the package so that it doesn't upgrade:

sudo apt-get install xserver-xorg-video-intel=2:2.99.914~1~exp1ubuntu4.3~trusty1
sudo apt-mark hold xserver-xorg-video-intel=2:2.99.914~1~exp1ubuntu4.3~trusty1

To revert this, run the following command:

sudo apt-mark unhold xserver-xorg-video-intel=2:2.99.914~1~exp1ubuntu4.3~trusty1
mchid
  • 43,546
  • 8
  • 97
  • 150
  • I think this is what I want, but when I entered it into Terminal I received this: $ sudo apt-get install xserver-xorg-video-intel=2:2.99.914~1~exp1ubuntu4.3~trusty1 [sudo] password for: Reading package lists... Done Building dependency tree
    Reading state information... Done E: Version '2:2.99.914~1~exp1ubuntu4.3~trusty1' for 'xserver-xorg-video-intel' was not found
    – Treeant34 Aug 06 '15 at 16:28
  • I did some digging around in Synaptic and discovered it has installed xserver-xorg-video-intel-lts-utopic 2:2.99.914-1~exp1ubuntu4.5~trusty1. I changed the command to reflect this and ran it in terminal. I got the same error though. sudo apt-get install xserver-xorg-video-intel-lts-utopic=2:2.99.914-1~exp1ubuntu4.3~trusty1 [sudo] password for: Reading package lists... Done Building dependency tree
    Reading state information... Done E: Version '2:2.99.914-1~exp1ubuntu4.3~trusty1' for 'xserver-xorg-video-intel-lts-utopic' was not found.
    – Treeant34 Aug 06 '15 at 18:00
  • @Treeant34 if you are trying to add the hardware enablement stack, I know the wiki page shows instructions for how to add utopic but since utopic is no longer available you should add the stack for vivid instead. Just replace the word utopic with vivid. As for the old version of xorg, you might be able to download it from http://packages.ubuntu.com – mchid Aug 08 '15 at 21:02
  • @Treeant http://mirrors.kernel.org/ubuntu/pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.99.910-0ubuntu1_amd64.deb use wget to download this, use pkg or gdebi to install and use apt-mark to hold it. – mchid Aug 08 '15 at 22:28
  • I gave up earlier today and re-imaged with a previous clonezilla image, then reinstalled the updates minus the xserver-xorg-video-intel-lts-utopic driver. Thanks for all of your thoughts on this though. There should be a way to roll back to a previous driver (like Windows-yeah I know) – Treeant34 Aug 09 '15 at 01:04
  • @Treeant34 windows won't let you roll back to an EOL like XP just like ubuntu won't let you roll back to Utopic. – mchid Aug 09 '15 at 03:33