Clearsigned file isn't valid, from 01.org package?
I'm running Ubuntu 14.04 LTS, and I have an HD 4600 integrated graphics chip.
lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller (rev 06)
Intel just released the new version of their Graphics driver for Ubuntu 14.04.
https://01.org/linuxgraphics/downloads/2014/intelr-graphics-installer-1.0.5-linux
When I try to install it, I get stuck at:
Finished : E:GPG error: http://download.01.org trusty InRelease: Clearsigned file isn't valid, got 'NODATA' (does the network require authentication?) [ ] ◦
main-window.c/on_transaction_finished: Package transaction finished with an error
And it prevents sudo apt-get update
from completing. I get the same error as before.
I went to Software & Updates and under Other Software tab I removed the bad repository: http://download.01.org/gfx/ubuntu/14.04/main
, and then I could update my repositories. But I cannot install the Intel Graphics Driver!
I hope I'm making sense. This is the first day this is available, so I'm counting on Intel to fix this soon, if not, I hope someone can help find a work around.
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