我一直在尝试更新计算机上的资料,但似乎无法读取我的软件包列表。似乎每次我这样做sudo apt-get install *something* && sudo apt-get update
都会卡在阅读包装清单中,这以前从来不是问题。这是我的规格,没什么:
- 记忆体:15.8 GB
- 处理器:AMD Phenom(tm)II x4 965处理器x 4
- 显卡:AMD BARTS上的镓0.4
- 操作系统类型:32位
- 网速:
我一直在尝试更新计算机上的资料,但似乎无法读取我的软件包列表。似乎每次我这样做sudo apt-get install *something* && sudo apt-get update
都会卡在阅读包装清单中,这以前从来不是问题。这是我的规格,没什么:
Answers:
我也看到了。
我没有解决方案,但是我有一种解决方法(echo 3 | sudo tee /proc/sys/vm/drop_caches
),可能还有更多信息,因此有人可以进一步进行调查。
这不是网络问题,因为在“读取包列表...”中,它只是读取中的文件/var/lib/apt/lists/
。A:
strace -tt -T -fo strace.log apt-get update
给出:
16394 14:43:03.921130 open("/var/lib/apt/lists/gb.archive.ubuntu.com_ubuntu_dists_precise_main_binary-i386_Packages", O_RDONLY|O_LARGEFILE) = 7 <0.000012>
[...]
16394 14:43:03.995238 read(6, "-3.1ubuntu2)\nConflicts: linux86\n"..., 32444) = 32444 <0.000111>
16394 14:43:05.787187 read(6, "c (<< 1:14.b.4-dfsg), erlang-exa"..., 32239) = 32239 <0.000069>
16394 14:43:05.788025 read(6, ".deb\nSize: 42130\nMD5sum: c7de671"..., 31695) = 31695 <0.000068>
16394 14:43:05.870734 read(6, "5: 29c4b395a92bdc12932f151c3643a"..., 31607) = 31607 <0.000071>
16394 14:43:05.890862 read(6, "e-pack-af-base\nFilename: pool/ma"..., 32538) = 32538 <0.000070>
16394 14:43:05.891425 read(6, "buntu-usb-live, ubuntu-dvd-live,"..., 32090) = 32090 <0.000066>
16394 14:43:05.891960 read(6, "cd9755b03ac2c9b8251125c7b6618\nDe"..., 32195) = 32195 <0.000034>
16394 14:43:06.043001 read(6, "rg>\nArchitecture: all\nVersion: 2"..., 32535) = 32535 <0.000072>
查看这8个read
系统调用如何花费了2秒,即使每个单独的调用花费了不到1毫秒。运行time apt-get update
或查看top
,该过程在这两个调用之间并不繁忙。那么为什么要延迟呢?
然后我做了:
echo t > /proc/sysrq-trigger
几次,并查看了以下结果kern.log
:
apt-get D 00000000 0 16790 12706 0x00000000
e8695d30 00000086 f7bd5e6c 00000000 f7bd5e44 f74a6580 c1990e00 c1990e00
efe46efe 000042cb f7b9de00 e71a7230 f74a6580 c107e116 00000000 00000000
044aa200 00000000 00000000 00000000 00000000 e8695d0c e8695d0c c1038de8
Call Trace:
[<c107e116>] ? enqueue_entity+0x186/0x220
[<c1038de8>] ? default_spin_lock_flags+0x8/0x10
[<c15e13bd>] ? _raw_spin_lock_irqsave+0x2d/0x40
[<c15e0533>] schedule+0x23/0x60
[<c15deecf>] schedule_timeout+0x12f/0x290
[<c1075c38>] ? ttwu_do_activate.constprop.86+0x58/0x70
[<c1055190>] ? usleep_range+0x40/0x40
[<c15e0846>] io_schedule_timeout+0x86/0xd0
[<c15cef7d>] balance_dirty_pages.isra.17+0x3f5/0x4b4
[<c15e118d>] ? _raw_spin_lock+0xd/0x10
[<c1180781>] ? __set_page_dirty_buffers+0x81/0xb0
[<c110deb5>] ? set_page_dirty+0x55/0x60
[<c11812c9>] ? __block_page_mkwrite+0xe9/0x170
[<c110f3ae>] balance_dirty_pages_ratelimited_nr+0xde/0x100
[<c1126f53>] do_wp_page+0x503/0x830
[<c1128ef7>] handle_pte_fault+0x267/0x2c0
[<c1129c62>] handle_mm_fault+0x1e2/0x280
[<c15e4988>] do_page_fault+0x158/0x4c0
[<c104e4dc>] ? irq_exit+0x5c/0xa0
[<c15e22d0>] ? do_debug+0x180/0x180
[<c15e4830>] ? vmalloc_fault+0x195/0x195
[<c15e1c53>] error_code+0x67/0x6c
因此,不知道这意味着什么,而是关于页面错误的处理,因此指出了潜在的内存管理问题。
然后,我尝试了:
echo 3 >/proc/sys/vm/drop_caches
这确实使问题消失了。
现在,它看起来非常像内核问题。因此,我已经更新到最新的内核(从3.8 backport raring
),这就是我的工作所在。如果新内核仍然存在问题,将更新。
新内核确实存在该问题,尽管还不算太糟糕。同样的事情
echo 3 | sudo tee /proc/sys/vm/drop_caches
解决了一段时间的问题。我只看到这种情况发生在MSI笔记本电脑上(产品名称:CR61 2M / CX61 2OC / CX61 2OD)。
正如btrace
aptitude
/ 确认的,apt-get
当时确实确实在做一些磁盘I / O。它/var/cache/apt/pkgcache.bin.<random-chars>
在内存中映射了一个临时文件(),这就是为什么它不显示在strace
输出中的原因。
仍然无法解释为什么它仅在某些机器上发生,为什么删除缓存有帮助,为什么切换到64位有帮助。
有没有人能复制它,一个有趣的测试可以看到如果下运行时也发生eatmydata
或者移动/var/cache/apt
到tmpfs
或RAMDISK帮助。
http://antti-juhani.kaijanaho.fi/newblog/archives/521上的建议在各种计算机上为我加速了几次:
sudo dpkg --clear-avail
sudo sync-available
(该博客还建议您sudo dpkg --forget-old-unavail
在两个步骤之间进行操作,但显然已弃用了该博客,不再需要它。)
在我的系统上,原因是LANGUAGE=
环境变量中的值不正确。它应包含en:fr:de
,而不是en_US.UTF-8,sl_SI.UTF-8
:
root@fik:~
# locale
LANG=en_US.UTF-8
LANGUAGE=en_US.UTF-8,sl_SI.UTF-8
LC_CTYPE=sl_SI.UTF-8
LC_NUMERIC=sl_SI.UTF-8
LC_TIME=sl_SI.UTF-8
LC_COLLATE=sl_SI.UTF-8
LC_MONETARY=sl_SI.UTF-8
LC_MESSAGES=en_US.UTF-8
LC_PAPER=sl_SI.UTF-8
LC_NAME=sl_SI.UTF-8
LC_ADDRESS=sl_SI.UTF-8
LC_TELEPHONE=sl_SI.UTF-8
LC_MEASUREMENT=sl_SI.UTF-8
LC_IDENTIFICATION=sl_SI.UTF-8
LC_ALL=
(通过strace
)运行后,该apt-get update
命令将在read()
调用中中断。执行需要花费很多时间,并且会占用一个CPU内核的所有可用周期:
root@fik:~
# strace apt-get update
[snip]
read(5, "form, hardware::opengl, implemen"..., 32146) = 32146
read(5, " Maintainers <pkg-bluetooth-main"..., 32658) = 32658
read(5, ": 17569748\nMD5sum: 9c20d52f9a0d5"..., 32200) = 32200
brk(0x55ac79212000) = 0x55ac79212000
read(5, "scription-md5: ca1156b27bec24d4c"..., 32469) = 32469
read(5, " Boost.Math Library\nMulti-Arch: "..., 32477) = 32477
read(5, "epends: libc6 (>= 2.4), lsb-base"..., 32648) = 32648
^C--- SIGINT {si_signo=SIGINT, si_code=SI_KERNEL} ---
strace: Process 18452 detached
如果我将其设置LANGUAGE=
为正确的值(例如en
),则一切将再次恢复正常:
root@fik:~
# export LANGUAGE=en
root@fik:~
# locale
LANG=en_US.UTF-8
LANGUAGE=en
LC_CTYPE=sl_SI.UTF-8
LC_NUMERIC=sl_SI.UTF-8
LC_TIME=sl_SI.UTF-8
LC_COLLATE=sl_SI.UTF-8
LC_MONETARY=sl_SI.UTF-8
LC_MESSAGES=en_US.UTF-8
LC_PAPER=sl_SI.UTF-8
LC_NAME=sl_SI.UTF-8
LC_ADDRESS=sl_SI.UTF-8
LC_TELEPHONE=sl_SI.UTF-8
LC_MEASUREMENT=sl_SI.UTF-8
LC_IDENTIFICATION=sl_SI.UTF-8
LC_ALL=
root@fik:~
# apt-get update
Hit:1 http://ftp.at.debian.org/debian experimental InRelease
Ign:3 http://ftp.at.debian.org/debian jessie InRelease
Hit:4 http://ftp.at.debian.org/debian jessie-updates InRelease
Hit:5 http://ftp.at.debian.org/debian jessie-backports InRelease
Hit:6 http://ftp.at.debian.org/debian sid InRelease
Hit:7 http://ftp.at.debian.org/debian stretch InRelease
Hit:8 http://ftp.at.debian.org/debian stretch-updates InRelease
Hit:9 http://ftp.at.debian.org/debian jessie Release
Hit:2 http://screenshots.getdeb.net xenial-getdeb InRelease
Hit:10 http://security.debian.org jessie/updates InRelease
Hit:11 http://security.debian.org stretch/updates InRelease
Reading package lists... Done
sudo apt-get update
,对吗?