Fedora DNF 报错

升级fedora 24以后,安装软件报错

1Complete! 2Traceback (most recent call last): 3 File "/bin/dnf", line 58, in <module> 4 main.user_main(sys.argv[1:], exit_code=True) 5 File "/usr/lib/python3.5/site-packages/dnf/cli/main.py", line 174, in user_main 6 errcode = main(args) 7 File "/usr/lib/python3.5/site-packages/dnf/cli/main.py", line 60, in main 8 return _main(base, args) 9 File "/usr/lib/python3.5/site-packages/dnf/base.py", line 102, in __exit__ 10 self.close() 11 File "/usr/lib/python3.5/site-packages/dnf/base.py", line 283, in close 12 self._tempfile_persistor.get_saved_tempfiles()) 13 File "/usr/lib/python3.5/site-packages/dnf/persistor.py", line 483, in get_saved_tempfiles 14 return self._get_json_db(self.db_path) 15 File "/usr/lib/python3.5/site-packages/dnf/persistor.py", line 425, in _get_json_db 16 default = json.loads(content) 17 File "/usr/lib64/python3.5/json/__init__.py", line 319, in loads 18 return _default_decoder.decode(s) 19 File "/usr/lib64/python3.5/json/decoder.py", line 339, in decode 20 obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 21 File "/usr/lib64/python3.5/json/decoder.py", line 355, in raw_decode 22 obj, end = self.scan_once(s, idx) 23json.decoder.JSONDecodeError: Unterminated string starting at: line 1 column 122871 (char 122870)

跟踪调试代码,/usr/lib64/python3.5/json/decoder.py,line 355 ,添加 print(s)

1345 def raw_decode(self, s, idx=0): 2346 """Decode a JSON document from ``s`` (a ``str`` beginning with 3347 a JSON document) and return a 2-tuple of the Python 4348 representation and the index in ``s`` where the document ended. 5349 6350 This can be used to decode a JSON document from a string that may 7351 have extraneous data at the end. 8352 9353 """ 10354 try: 11355 print(s) 12356 obj, end = self.scan_once(s, idx) 13357 except StopIteration as err: 14358 raise JSONDecodeError("Expecting value", s, err.value) from None 15359 return obj, end

打印内容:

1["/var/lib/dnf/system-upgrade/libteam-1.25-1.fc24.x86_64.rpm", 2 "/var/lib/dnf/system-upgrade/libmetalink-0.1.2-9.fc24.x86_64.rpm", 3"/var/lib/dnf/system-upgrade/xfwm4-4.12.3-3.fc24.x86_64.rpm", 4"/var/lib/dnf/system-upgrade/gnome-font-viewer-3.20.2-1.fc24.x86_64.rpm", 5 "/var/lib/dnf/system-upgrade/jzlib-1.1.3-4.fc24.noarch.rpm", 6"/var/lib/dnf/system-upgrade/libetonyek-0.1.6-4.fc24.x86_64.rpm", 7"/var/lib/dnf/system-upgrade/perl-File-Path-2.12-2.fc24.noarch.rpm", 8 "/var/lib/dnf/system-upgrade/alsa-plugins-pulseaudio-1.1.1-1.fc24.x86_64.rpm", 9"/var/lib/dnf/system-upgrade/python-lxml-3.4.4-4.fc24.x86_64.rpm", 10"/var/lib/dnf/system-upgrade/libreport-2.7.2-1.fc24.x86_64.rpm", 11"/var/lib/dnf/system-upgrade/libffado-2.2.1-8.fc24.x86_64.rpm", 12"/var/lib/dnf/system-upgrade/texlive-kastrup-svn15878.0-24.fc24.1.noarch.rpm", 13"/var/lib/dnf/system-upgrade/zenity-3.20.0-1.fc24.x86_64.rpm", 14 "/var/lib/dnf/system-upgrade/texlive-fpl-svn15878.1.002-24.fc24.1.noarch.rpm", 15"/var/lib/dnf/system-upgrade/texlive-lib-2015-24.20150728_r37987.fc24.x86_64.rpm", "/var/lib/ 16#结尾少了数组的结束符中括号 "]" 17Traceback (most recent call last): 18 File "/bin/dnf", line 58, in <module> 19 main.user_main(sys.argv[1:], exit_code=True) 20 File "/usr/lib/python3.5/site-packages/dnf/cli/main.py", line 174, in user_main 21 errcode = main(args) 22 File "/usr/lib/python3.5/site-packages/dnf/cli/main.py", line 60, in main 23 return _main(base, args) 24 File "/usr/lib/python3.5/site-packages/dnf/base.py", line 102, in __exit__ 25 self.close() 26 File "/usr/lib/python3.5/site-packages/dnf/base.py", line 283, in close 27 self._tempfile_persistor.get_saved_tempfiles()) 28 File "/usr/lib/python3.5/site-packages/dnf/persistor.py", line 483, in get_saved_tempfiles 29 return self._get_json_db(self.db_path) 30 File "/usr/lib/python3.5/site-packages/dnf/persistor.py", line 425, in _get_json_db 31 default = json.loads(content) 32 File "/usr/lib64/python3.5/json/__init__.py", line 319, in loads 33 return _default_decoder.decode(s) 34 File "/usr/lib64/python3.5/json/decoder.py", line 339, in decode 35 obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 36 File "/usr/lib64/python3.5/json/decoder.py", line 356, in raw_decode 37 obj, end = self.scan_once(s, idx) 38json.decoder.JSONDecodeError: Unterminated string starting at: line 1 column 122871 (char 122870) 39

/usr/lib/python3.5/site-packages/dnf/base.py  line 283:

1 279 if not self.conf.keepcache: 2 280 self._clean_packages(self._tempfiles) 3 281 if self._trans_success: 4 282 self._trans_tempfiles.update( 5 283 self._tempfile_persistor.get_saved_tempfiles()) 6 284 self._tempfile_persistor.empty() 7 285 if self._transaction.install_set: 8 286 self._clean_packages(self._trans_tempfiles) 9 287 else: 10 288 self._tempfile_persistor.tempfiles_to_add.update( 11 289 self._trans_tempfiles)

问题文件在:/var/cache/dnf/tempfiles.json,不完整的json array

如果不想改动代码:可以修改/etc/dnf/dnf.conf,添加keepcache=True,使代码不进入if表达式

[main]
gpgcheck=1
installonly_limit=3
clean_requirements_on_remove=True

keepcache=True

解决完了,发现如下问答:

http://superuser.com/questions/1102636/dnf-displays-error-after-package-install-on-fedora

点赞
收藏

评论区

加载中...

相关推荐

MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1

文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s

Oracle 分组与拼接字符串同时使用

SELECTT.,ROWNUMIDFROM(SELECTT.EMPLID,T.NAME,T.BU,T.REALDEPART,T.FORMATDATE,SUM(T.S0)S0,MAX(UPDATETIME)CREATETIME,LISTAGG(TOCHAR(

MySQL部分从库上面因为大量的临时表tmp_table造成慢查询

背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_

皕杰报表之UUID

​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为

手写Java HashMap源码

HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22

2020年前端实用代码段,为你的工作保驾护航

有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )

Fedora DNF 报错 - HelloWorld