Clearsigned 文件无效,来自 01.org 包?

Lor*_*ich 23 apt intel-graphics gnupg

我正在运行 Ubuntu 14.04 LTS,并且我有一个 HD 4600 集成图形芯片。

lspci | grep VGA

00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller (rev 06)
Run Code Online (Sandbox Code Playgroud)

英特尔刚刚为 Ubuntu 14.04 发布了新版本的图形驱动程序。
https://01.org/linuxgraphics/downloads/2014/intelr-graphics-installer-1.0.5-linux

当我尝试安装它时,我被困在:

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
Run Code Online (Sandbox Code Playgroud)

它阻止sudo apt-get update完成。我得到和以前一样的错误。

我去了软件和更新,在其他软件选项卡下,我删除了错误的存储库:http://download.01.org/gfx/ubuntu/14.04/main,然后我可以更新我的存储库。但是我无法安装英特尔显卡驱动程序!

我希望我说得有道理。这是可用的第一天,所以我指望英特尔尽快解决这个问题,如果没有,我希望有人能帮助找到解决办法。

小智 38

安装程序包含错误的存储库 URL。要解决此问题,您需要:

  1. 启动安装程序并尝试安装,出现错误,关闭安装程序。
  2. 打开控制台并输入:

    sudo -H gedit /etc/apt/sources.list.d/intellinuxgraphics.list
    
    Run Code Online (Sandbox Code Playgroud)
  3. 用下面的文本替换文本,不要关闭 gedit 就离开它

    deb https://download.01.org/gfx/ubuntu/14.04/main/ trusty main #Intel Graphics drivers
    
    Run Code Online (Sandbox Code Playgroud)
  4. 再次启动安装程序,按开始按钮,按安装按钮并快速切换到 gedit 并按住 CTRL+ S

    sudo apt-get update 可能会产生:

    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
    
    Run Code Online (Sandbox Code Playgroud)

    修复它:

    sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A902DDA375E52366
    
    Run Code Online (Sandbox Code Playgroud)

  • 无法获取 http://download.01.org/gfx/ubuntu/14.04/main/pool/main/i/intel-gpu-tools/intel-gpu-tools_1.6-1_amd64.deb 大小不匹配 (3认同)
  • 不得不尝试几次才能让它工作,但它确实做到了。非常感谢! (2认同)