当前位置: 首页>>技术教程>>正文


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

, ,

问题描述

我正在运行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)

英特尔刚刚发布了适用于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

并且它阻止sudo apt-get update完成。我收到与以前相同的错误。

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

我希望我有道理。这是它推出的第一天,所以我指望Intel尽快解决此问题,如果没有的话,我希望有人可以帮助您找到解决方法。

最佳方案

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

  1. 启动安装程序并尝试安装,出现错误,然后关闭安装程序。

  2. 打开控制台并键入:

    sudo -H gedit /etc/apt/sources.list.d/intellinuxgraphics.list
    
  3. 将文字替换为以下文字,不要关闭gedit即可:

    deb https://download.01.org/gfx/ubuntu/14.04/main/ trusty main #Intel Graphics drivers
    
  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
    

    使用以下方法修复:

    sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A902DDA375E52366
    

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/11636.html,未经允许,请勿转载。