CenOS 7にnux-dextop repoを追加してアップデートを行ったらtimeout errorになってしまいました。
My GNU/Linux related projects
http://li.nux.ro/
1 2 3 4 5 6 7 8 9 10 11 |
nux-dextop/x86_64/primary_db FAILED http://li.nux.ro/download/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: [Errno 12] Timeout on http://li.nux.ro/download/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: (28, 'Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds') 他のミラーを試します。 nux-dextop/x86_64/primary_db FAILED http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: [Errno 12] Timeout on http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: (28, 'Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds') 他のミラーを試します。 nux-dextop/x86_64/primary_db FAILED http://li.nux.ro/download/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: [Errno 12] Timeout on http://li.nux.ro/download/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: (28, 'Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds') 他のミラーを試します。 nux-dextop/x86_64/primary_db FAILED http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: [Errno 12] Timeout on http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: (28, 'Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds') |
回線が遅くてtimeoutになっています。
Clear OS always showing “Operation too slow. Less than 1 bytes/sec”
http://serverfault.com/questions/439014/clear-os-always-showing-operation-too-slow-less-than-1-bytes-sec
defaultではminrate=1000byte/s, timeout=30s
minrate This sets the low speed threshold in bytes per second. If the server is sending data slower than this for at least timeout’ seconds, Yum aborts the connection. The default is 1000′.
timeout Number of seconds to wait for a connection before timing out. Defaults to 30 seconds. This may be too short of a time for extremely overloaded sites.
これをminrate=1byte/s, timeout=500sに変更して再実行しました。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
[root@host01 ~]# vi /etc/yum.repos.d/nux-dextop.repo [root@host01 ~]# cat /etc/yum.repos.d/nux-dextop.repo [nux-dextop] name=Nux.Ro RPMs for general desktop use baseurl=http://li.nux.ro/download/nux/dextop/el7/$basearch/ http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/$basearch/ enabled=1 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-nux.ro protect=0 minrate = 1 timeout = 500 [nux-dextop-testing] name=Nux.Ro RPMs for general desktop use - testing baseurl=http://li.nux.ro/download/nux/dextop-testing/el7/$basearch/ enabled=0 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-nux.ro protect=0 |
ちなみにyum全体で変更する場合は/etc/yum.confの[main]セクションに記述すればいいようです。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
nux-dextop/x86_64/primary_db FAILED http://li.nux.ro/download/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: [Errno 12] Timeout on http://li.nux.ro/download/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: (28, 'Operation too slow. Less than 1 bytes/sec transferred the last 500 seconds') 他のミラーを試します。 nux-dextop/x86_64/primary_db FAILED http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: [Errno 12] Timeout on http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: (28, 'Operation too slow. Less than 1 bytes/sec transferred the last 500 seconds') 他のミラーを試します。 nux-dextop/x86_64/primary_db FAILED http://li.nux.ro/download/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: [Errno 14] curl#18 - "transfer closed with 275309 bytes remaining to read" 他のミラーを試します。 nux-dextop/x86_64/primary_db FAILED http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: [Errno 12] Timeout on http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: (28, 'Operation too slow. Less than 1 bytes/sec transferred the last 500 seconds') 他のミラーを試します。 nux-dextop/x86_64/primary_db FAILED http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: [Errno 12] Timeout on http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: (28, 'Operation too slow. Less than 1 bytes/sec transferred the last 500 seconds') 他のミラーを試します。 nux-dextop/x86_64/primary_db FAILED http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: [Errno 12] Timeout on http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: (28, 'Operation too slow. Less than 1 bytes/sec transferred the last 500 seconds') 他のミラーを試します。 nux-dextop/x86_64/primary_db FAILED http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: [Errno 12] Timeout on http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: (28, 'Operation too slow. Less than 1 bytes/sec transferred the last 500 seconds') 他のミラーを試します。 nux-dextop/x86_64/primary_db FAILED http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: [Errno 12] Timeout on http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: (28, 'Operation too slow. Less than 1 bytes/sec transferred the last 500 seconds') 他のミラーを試します。 nux-dextop/x86_64/primary_db FAILED http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: [Errno 12] Timeout on http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/x86_64/repodata/01a46bf5cc48d401320afb98a254a6c71cd82fe50c7e0e699c47d515e6edf22a-primary.sqlite.bz2: (28, 'Operation too slow. Less than 1 bytes/sec transferred the last 500 seconds') 他のミラーを試します。 nux-dextop/x86_64/primary_db | 1.5 MB 00:08 ============================= N/S matched: ffmpeg ============================== ffmpeg-compat-debuginfo.x86_64 : Debug information for package ffmpeg-compat ffmpeg-compat-devel.x86_64 : Development package for ffmpeg-compat ffmpeg-debuginfo.x86_64 : Debug information for package ffmpeg ffmpeg-devel.x86_64 : Development package for ffmpeg ffmpeg-libs.x86_64 : Libraries for ffmpeg ffmpegthumbnailer-debuginfo.x86_64 : Debug information for package : ffmpegthumbnailer ffmpegthumbnailer-devel.x86_64 : Headers and libraries for building apps that : use ffmpegthumbnailer gstreamer-ffmpeg.x86_64 : GStreamer FFmpeg-based plug-ins gstreamer-ffmpeg-debuginfo.x86_64 : Debug information for package : gstreamer-ffmpeg mythffmpeg.x86_64 : MythTV build of FFmpeg audacious-plugins-freeworld-ffaudio.x86_64 : FFMpeg/FAAD2 based input plugin for : Audacious ffmpeg.x86_64 : Digital VCR and streaming server ffmpeg-compat.x86_64 : Digital VCR and streaming server ffmpegthumbnailer.x86_64 : Lightweight video thumbnailer that can be used by : file managers kodi-pvr-mediaportal-tvserver.x86_64 : Kodi frontend for the MediaPortal TV : Server (ffmpeg + tsreader version) xbmc-pvr-mediaportal-tvserver.x86_64 : XBMC frontend for the MediaPortal TV : Server (ffmpeg + tsreader version) Name and summary matches only, use "search all" for everything. |
ミラーサイトも軒並み遅いので結局変更しなくてもじっと待ってればダウンロードできたのかな。