Clearsigned file isn't valid, from 01.org package?
The installer contains the wrong repository url. To fix this you need:
- Start the installer and try to install, you got error, close installer.
Open console and type:
sudo -H gedit /etc/apt/sources.list.d/intellinuxgraphics.list
Replace text with text below, don't close gedit just leave it:
deb https://download.01.org/gfx/ubuntu/14.04/main/ trusty main #Intel Graphics drivers
Start the installer again, press Begin button, press Install button and fast switch to gedit and hold CTRL+S.
sudo apt-get update
may yield:GPG error: https://download.01.org trusty InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A902DDA375E52366
Fix it with:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A902DDA375E52366
Here's the easier solution for those with problems:
- Open Nautilus(file explorer), go to Edit -> Preferences -> Behavior, and make sure that under Executable text files, Ask each time is selected! (if not, select it)
- Close the window
- Open Nautilus (if not already open)
- Right click New document > Empty document
- Name it script.sh
Open it and enter this:
#! /bin/bash while [ 1 ]; do sudo sed --in-place 's/http:/https:/g' /etc/apt/sources.list.d/intellinuxgraphics.list sleep 1 done
Save it and close it
- Right click on
script.sh
and select Permissions - Check Allow executing this file as program
- Close the window
- Double click it
- Select Run in terminal
- Enter password
- DO NOT close the terminal
- Begin installation, and everything should work
I also got Failed to fetch download.01.org/gfx/ubuntu/14.04/main/pool/main/i/… Size mismatch error and this fixed the problem. You can delete script file and close the terminal when the installation is finished.
Edit: There is simpler way:
Enter this in terminal:
#! /bin/bash while [ 1 ]; do sudo sed --in-place 's/http:/https:/g' /etc/apt/sources.list.d/intellinuxgraphics.list sleep 1 done
Enter password
- Run the installer