ubuntu apt-get update 开始时很慢

ubuntu apt-get update 开始时很慢

最近我觉得 apt-get update 对于某些服务器的运行速度比其他服务器慢得多。

xxx@xxx:/usr/lib/php5/20121212$ sudo apt-get update
Ign http://downloads-distro.mongodb.org dist InRelease

有些服务器执行apt-get update后不到半秒上面的第二行就出现了。而其他服务器大约需要 5 秒钟才能显示第二行。

sudo strace apt-get update发现慢速服务器会在下面停留几秒钟

open("/etc/apt/sources.list", O_RDONLY) = 4
read(4, "# \n\n# deb cdrom:[Ubuntu-Server 1"..., 8191) = 3488
pipe([5, 6])                            = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f0ab30f3a50) = 30800
close(6)                                = 0
fcntl(5, F_GETFL)                       = 0 (flags O_RDONLY)
fstat(5, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0ab2f68000
lseek(5, 0, SEEK_CUR)                   = -1 ESPIPE (Illegal seek)
read(5, "i386\n    <----------------- here

几秒钟后,它继续如下

                , 4096)                 = 5
read(5, "", 4096)                       = 0
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=30800, si_status=0, si_utime=307, si_stime=167} ---
close(5)                                = 0
munmap(0x7f0ab2f68000, 4096)

所有服务器的输出几乎相同。

如何解决这个问题?

答案1

最后,我的朋友发现了问题所在。

这是因为我们为系统用户设置的打开文件数限制过大,这是 ubuntu 的一个 bug。

我们设置了更小的打开文件限制,apt-get 更新变得更快。

https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1332440

相关内容