From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 115583 invoked by alias); 12 Feb 2016 15:36:31 -0000 Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com Received: (qmail 115562 invoked by uid 89); 12 Feb 2016 15:36:30 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: Yes, score=6.0 required=5.0 tests=AWL,BAYES_50,EXECUTABLE_URI,KAM_EXEURI,KAM_INFOUSMEBIZ,RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 spammy=D*yandex.ru, Dir, UD:www.linkedin.com, www.linkedin.com X-HELO: mail-io0-f178.google.com Received: from mail-io0-f178.google.com (HELO mail-io0-f178.google.com) (209.85.223.178) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Fri, 12 Feb 2016 15:36:20 +0000 Received: by mail-io0-f178.google.com with SMTP id 9so95380026iom.1 for ; Fri, 12 Feb 2016 07:36:20 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to :content-type:content-transfer-encoding; bh=RmV+cSyJ+OpzLntFaY5tHZ+aUJHHsAyoMkqIgCLgtmk=; b=Ib4JhF69zQXZZqHyGs/Qr73l071XO4amWX41xFij8OpfLoNuhQL8ZxBBGWmY2T6e/U JO+DTbx0ssNGecEYoerL3K6q6jko2n+kpfPXFK62UVdtpMFe3/qR04PA2+3xmJ6KYTOq 9FvD/yC0gzW+TjNqAzAyZT5Z9ggUv45ELWvJk5wZCXswv+53mXSuvbmMLGP2RTMumnej f6VftQqMNphhT+TZ5VHdXulAs8g+ADNZbziJiqHADuAv0Wrke0B0H63Cy872Ij7pihP5 oId75j37Sv2MzOW9Cnyk5fVwF91onXfNV7S0lEc+dO0rOVucHIZFZ1YaTTIO71r7QqHg 5MSA== X-Gm-Message-State: AG10YORi13Nxxb9Eu4yJ2dHOBaoMTHdInwVySwxfuFAJCmKG3FRMRgPO+8LBMvdXO6i8NWnsME2Ki2p5JxJMbQ== X-Received: by 10.107.169.77 with SMTP id s74mr3519960ioe.126.1455291378099; Fri, 12 Feb 2016 07:36:18 -0800 (PST) MIME-Version: 1.0 Received: by 10.107.180.3 with HTTP; Fri, 12 Feb 2016 07:35:58 -0800 (PST) From: Matthew Adams Date: Fri, 12 Feb 2016 15:36:00 -0000 Message-ID: Subject: [FIXED] was: Re: Unattended setup succeeding but not really To: cygwin@cygwin.com Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2016-02/txt/msg00171.txt.bz2 Thanks to http://superuser.com/questions/1031675/why-is-this-dos-batch-file= -that-installs-cygwin-unattended-failing?noredirect=3D1#comment1451429_1031= 675 the installation has been fixed! The problem was that I was using -D without understanding that it meant "download only". I was basing everything on the output of the setup executable when giving --help as an argument. Notice the description of the -D option: C:\Users\user\cyg64>cygsetup64.exe --help Command Line Options: -D --download Download from internet ... It would be nice if the description was "Download from internet but do not install" or something. -matthew On Thu, Jan 28, 2016 at 10:32 AM, Matthew Adams w= rote: > > Anyone knowledgeable has had a chance to look into this? > > On Tue, Jan 26, 2016 at 5:30 PM, Matthew Adams = wrote: >> >> Logs, right. Here's the DOS window output & text of logs. I'll also pa= ste in an email-word-wrap-friendlier version of the batch script. I'll att= ach logs, too, but I don't know if they'll make it through to the list. >> >> =3D=3D=3D=3D=3D Begin DOS Session =3D=3D=3D=3D=3D >> C:\Users\user>cyg.bat >> >> C:\Users\user>setlocal >> >> C:\Users\user>if exist C:\Users\user\cyg64 rmdir /s /q C:\Users\user\cyg= 64 >> >> C:\Users\user>mkdir C:\Users\user\cyg64 >> >> C:\Users\user>set CYGSETUP=3DC:\Users\user\cyg64\cygsetup64.exe >> >> C:\Users\user>for /F "tokens=3D4-7 delims=3D[.] " %i in ('ver') do (if %= i =3D=3D Version (set v=3D%j.%k ) else (set v=3D%i.%j ) ) >> >> C:\Users\user>(if 6 =3D=3D Version (set v=3D3.9600 ) else (set v=3D6.3 = ) ) >> >> C:\Users\user>if 6.3 =3D=3D 6.1 (bitsadmin /transfer "CygwinDownload" = https://www.cygwin.com/setup-x86_64.exe C:\Users\user\cyg64\cygsetup64 >> .exe ) else (powershell -command "& { iwr https://www.cygwin.com/se= tup-x86_64.exe -OutFile $env:CYGSETUP } " ) >> >> C:\Users\user>C:\Users\user\cyg64\cygsetup64.exe -D -q -R C:\Users\user\= cyg64 -a x86_64 -l C:\Users\user\cyg64 -s http://cygwin.mirror.con >> stant.com -P openssh,autossh,nano,vim,git >> note: Hand installation over to elevated child process. >> Starting cygwin install, version 2.873 >> User has backup/restore rights >> io_stream_cygfile: fopen(/etc/setup/setup.rc) failed 2 No such file or d= irectory >> Current Directory: C:\Users\user\cyg64 >> >> C:\Users\user>endlocal >> >> C:\Users\user>Could not open service McShield for query, start and stop.= McAfee may not be installed, or we don't have access. >> Selected local directory: C:\Users\user\cyg64 >> net: Direct >> site: http://cygwin.mirror.constant.com/ >> io_stream_cygfile: fopen(/etc/setup/installed.db) failed 2 No such file = or directory >> io_stream_cygfile: fopen(/etc/setup/timestamp) failed 2 No such file or = directory >> Adding required dependency binutils: Selecting version 2.25-4 for instal= lation. >> Adding required dependency bzip2: Selecting version 1.0.6-2 for installa= tion. >> Adding required dependency ca-certificates: Selecting version 2.6-1 for = installation. >> Adding required dependency csih: Selecting version 0.9.9-1 for installat= ion. >> Adding required dependency cygrunsrv: Selecting version 1.62-1 for insta= llation. >> Adding required dependency cygwin-devel: Selecting version 2.4.1-1 for i= nstallation. >> Adding required dependency diffutils: Selecting version 3.3-3 for instal= lation. >> Adding required dependency groff: Selecting version 1.22.3-1 for install= ation. >> Adding required dependency less: Selecting version 481-1 for installatio= n. >> Adding required dependency libargp: Selecting version 20110921-2 for ins= tallation. >> Adding required dependency libattr1: Selecting version 2.4.46-1 for inst= allation. >> Adding required dependency libblkid1: Selecting version 2.25.2-2 for ins= tallation. >> Adding required dependency libbz2_1: Selecting version 1.0.6-2 for insta= llation. >> Adding required dependency libcatgets1: Selecting version 1.1-2 for inst= allation. >> Adding required dependency libcom_err2: Selecting version 1.42.12-2 for = installation. >> Adding required dependency libcrypt0: Selecting version 1.1-1 for instal= lation. >> Adding required dependency libcurl4: Selecting version 7.45.0-1 for inst= allation. >> Adding required dependency libdb5.3: Selecting version 5.3.21-1 for inst= allation. >> Adding required dependency libedit0: Selecting version 20130712-1 for in= stallation. >> Adding required dependency libexpat1: Selecting version 2.1.0-3 for inst= allation. >> Adding required dependency libffi6: Selecting version 3.2.1-2 for instal= lation. >> Adding required dependency libgcc1: Selecting version 4.9.3-1 for instal= lation. >> Adding required dependency libgdbm4: Selecting version 1.11-1 for instal= lation. >> Adding required dependency libgmp10: Selecting version 6.1.0-3p1 for ins= tallation. >> Adding required dependency libgssapi_krb5_2: Selecting version 1.13.2-3 = for installation. >> Adding required dependency libiconv: Selecting version 1.14-3 for instal= lation. >> Adding required dependency libiconv2: Selecting version 1.14-3 for insta= llation. >> Adding required dependency libidn11: Selecting version 1.29-1 for instal= lation. >> Adding required dependency libintl8: Selecting version 0.19.5.1-2 for in= stallation. >> Adding required dependency libk5crypto3: Selecting version 1.13.2-3 for = installation. >> Adding required dependency libkrb5support0: Selecting version 1.13.2-3 f= or installation. >> Adding required dependency libkrb5_3: Selecting version 1.13.2-3 for ins= tallation. >> Adding required dependency liblzma5: Selecting version 5.2.2-1 for insta= llation. >> Adding required dependency libmpfr4: Selecting version 3.1.3-1 for insta= llation. >> Adding required dependency libncursesw10: Selecting version 6.0-1.201510= 17 for installation. >> Adding required dependency libopenldap2_4_2: Selecting version 2.4.42-1 = for installation. >> Adding required dependency libp11-kit0: Selecting version 0.22.1-1 for i= nstallation. >> Adding required dependency libpcre1: Selecting version 8.37-2 for instal= lation. >> Adding required dependency libpipeline1: Selecting version 1.4.0-1 for i= nstallation. >> Adding required dependency libpopt0: Selecting version 1.16-1 for instal= lation. >> Adding required dependency libsasl2_3: Selecting version 2.1.26-9 for in= stallation. >> Adding required dependency libsigsegv2: Selecting version 2.10-2 for ins= tallation. >> Adding required dependency libsmartcols1: Selecting version 2.25.2-2 for= installation. >> Adding required dependency libsqlite3_0: Selecting version 3.10.1-1 for = installation. >> Adding required dependency libssh2_1: Selecting version 1.5.0-1 for inst= allation. >> Adding required dependency libssp0: Selecting version 4.9.3-1 for instal= lation. >> Adding required dependency libstdc++6: Selecting version 4.9.3-1 for ins= tallation. >> Adding required dependency libtasn1_6: Selecting version 4.5-1 for insta= llation. >> Adding required dependency libuuid-devel: Selecting version 2.25.2-2 for= installation. >> Adding required dependency libuuid1: Selecting version 2.25.2-2 for inst= allation. >> Adding required dependency lynx: Selecting version 2.8.7-2 for installat= ion. >> Adding required dependency p11-kit: Selecting version 0.22.1-1 for insta= llation. >> Adding required dependency p11-kit-trust: Selecting version 0.22.1-1 for= installation. >> Adding required dependency perl: Selecting version 5.22.1-1 for installa= tion. >> Adding required dependency perl-Error: Selecting version 0.17024-1 for i= nstallation. >> Adding required dependency perl_autorebase: Selecting version 5.22.1-1 f= or installation. >> Adding required dependency perl_base: Selecting version 5.22.1-1 for ins= tallation. >> Adding required dependency popt: Selecting version 1.16-1 for installati= on. >> Adding required dependency python: Selecting version 2.7.10-1 for instal= lation. >> Adding required dependency rsync: Selecting version 3.1.1-1 for installa= tion. >> Adding required dependency tcsh: Selecting version 6.19.00-2 for install= ation. >> Adding required dependency vim-common: Selecting version 7.4.891-1 for i= nstallation. >> Adding required dependency xxd: Selecting version 7.4.891-1 for installa= tion. >> Adding required dependency xz: Selecting version 5.2.2-1 for installatio= n. >> Adding required dependency zlib0: Selecting version 1.2.8-3 for installa= tion. >> Adding required dependency _update-info-dir: Selecting version 00512-1 f= or installation. >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/_autorebase/_autorebase-001002-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/_update-info-dir/_update-info-dir-00512-1.tar.bz2 >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/alternatives/alternatives-1.3.30c-10.tar.bz2 >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/autossh/autossh-1.4e-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/base-cygwin/base-cygwin-3.8-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/base-files/base-files-4.2-4.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/bash/bash-4.3.42-4.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/binutils/binutils-2.25-4.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/bzip2/bzip2-1.0.6-2.tar.bz2 >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/ca-certificates/ca-certificates-2.6-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/coreutils/coreutils-8.24-3.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/csih/csih-0.9.9-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/cygrunsrv/cygrunsrv-1.62-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/cygutils/cygutils-1.4.15-2.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/cygwin/cygwin-2.4.1-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/cygwin/cygwin-devel/cygwin-devel-2.4.1-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/dash/dash-0.5.8-3.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/diffutils/diffutils-3.3-3.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/editrights/editrights-1.03-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/file/file-5.25-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/findutils/findutils-4.5.12-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/gawk/gawk-4.1.3-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/getent/getent-2.18.90-4.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/git/git-2.7.0-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/grep/grep-2.21-2.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/groff/groff-1.22.3-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/gzip/gzip-1.6-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/hostname/hostname-3.13-1.tar.bz2 >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/texinfo/info/info-6.0-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/ipc-utils/ipc-utils-1.0-2.tar.bz2 >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/less/less-481-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/libargp/libargp-20110921-2.tar.bz2 >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/attr/libattr1/libattr1-2.4.46-1.tar.bz2 >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/util-linux/libblkid1/libblkid1-2.25.2-2.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/bzip2/libbz2_1/libbz2_1-1.0.6-2.tar.bz2 >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/catgets/libcatgets1/libcatgets1-1.1-2.tar.bz2 >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/e2fsprogs/libcom_err2/libcom_err2-1.42.12-2.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/crypt/libcrypt0/libcrypt0-1.1-1.tar.bz2 >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/curl/libcurl4/libcurl4-7.45.0-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/db/libdb5.3/libdb5.3-5.3.21-1.tar.bz2 >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/libedit/libedit0/libedit0-20130712-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/expat/libexpat1/libexpat1-2.1.0-3.tar.bz2 >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/libffi/libffi6/libffi6-3.2.1-2.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/gcc/libgcc1/libgcc1-4.9.3-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/gdbm/libgdbm4/libgdbm4-1.11-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/gmp/libgmp10/libgmp10-6.1.0-3p1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/krb5/libgssapi_krb5_2/libgssapi_krb5_2-1.13.2-3.tar >> .xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/libiconv/libiconv-1.14-3.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/libiconv/libiconv2/libiconv2-1.14-3.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/libidn/libidn11/libidn11-1.29-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/gettext/libintl8/libintl8-0.19.5.1-2.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/krb5/libk5crypto3/libk5crypto3-1.13.2-3.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/krb5/libkrb5_3/libkrb5_3-1.13.2-3.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/krb5/libkrb5support0/libkrb5support0-1.13.2-3.tar.x >> z >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/xz/liblzma5/liblzma5-5.2.2-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/mpfr/libmpfr4/libmpfr4-3.1.3-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/ncurses/libncursesw10/libncursesw10-6.0-1.20151017. >> tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/openldap/libopenldap2_4_2/libopenldap2_4_2-2.4.42-1 >> .tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/openssl/libopenssl100/libopenssl100-1.0.2e-1.tar.xz >> >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/p11-kit/libp11-kit0/libp11-kit0-0.22.1-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/pcre/libpcre1/libpcre1-8.37-2.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/libpipeline/libpipeline1/libpipeline1-1.4.0-1.tar.x >> z >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/popt/libpopt0/libpopt0-1.16-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/readline/libreadline7/libreadline7-6.3.8-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/cyrus-sasl/libsasl2_3/libsasl2_3-2.1.26-9.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/libsigsegv/libsigsegv2/libsigsegv2-2.10-2.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/util-linux/libsmartcols1/libsmartcols1-2.25.2-2.tar >> .xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/sqlite3/libsqlite3_0/libsqlite3_0-3.10.1-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/libssh2/libssh2_1/libssh2_1-1.5.0-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/gcc/libssp0/libssp0-4.9.3-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/gcc/libstdc++6/libstdc++6-4.9.3-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/libtasn1/libtasn1_6/libtasn1_6-4.5-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/util-linux/libuuid-devel/libuuid-devel-2.25.2-2.tar >> .xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/util-linux/libuuid1/libuuid1-2.25.2-2.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/login/login-1.11-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/lynx/lynx-2.8.7-2.tar.bz2 >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/man-db/man-db-2.7.4-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/mintty/mintty-2.2.2-0.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/nano/nano-2.4.1-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/openssh/openssh-7.1p2-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/openssl/openssl-1.0.2e-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/p11-kit/p11-kit-0.22.1-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/p11-kit/p11-kit-trust/p11-kit-trust-0.22.1-1.tar.xz >> >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/perl/perl-5.22.1-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/perl-Error/perl-Error-0.17024-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/perl/perl_autorebase/perl_autorebase-5.22.1-1.tar.x >> z >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/perl/perl_base/perl_base-5.22.1-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/popt/popt-1.16-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/python/python-2.7.10-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/rebase/rebase-4.4.1-1.tar.bz2 >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/rsync/rsync-3.1.1-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/run/run-1.3.4-2.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/sed/sed-4.2.2-3.tar.bz2 >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/tar/tar-1.28-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/tcsh/tcsh-6.19.00-2.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/ncurses/terminfo/terminfo-6.0-1.20151017.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/tzcode/tzcode-2015g-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/util-linux/util-linux-2.25.2-2.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/vim/vim-7.4.891-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/vim/vim-common/vim-common-7.4.891-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/vim/vim-minimal/vim-minimal-7.4.891-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/which/which-2.20-2.tar.bz2 >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/vim/xxd/xxd-7.4.891-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/xz/xz-5.2.2-1.tar.xz >> Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%2= f/x86_64/release/zlib/zlib0/zlib0-1.2.8-3.tar.xz >> Ending cygwin install >> >> C:\Users\user>dir cyg64 >> Volume in drive C has no label. >> Volume Serial Number is 0CDE-4AF4 >> >> Directory of C:\Users\user\cyg64 >> >> 01/26/2016 05:20 PM . >> 01/26/2016 05:20 PM .. >> 01/26/2016 05:19 PM 877,568 cygsetup64.exe >> 01/26/2016 05:19 PM etc >> 01/26/2016 05:19 PM http%3a%2f%2fcygwin.mirror.consta= nt.com%2f >> 01/26/2016 05:20 PM 23,075 setup.log >> 01/26/2016 05:20 PM 47,475 setup.log.full >> 3 File(s) 948,118 bytes >> 4 Dir(s) 36,915,232,768 bytes free >> =3D=3D=3D=3D=3D End DOS Session =3D=3D=3D=3D=3D >> >> =3D=3D=3D=3D=3D Begin setup.log =3D=3D=3D=3D=3D >> 2016/01/26 17:19:25 Starting cygwin install, version 2.873 >> 2016/01/26 17:19:25 User has backup/restore rights >> 2016/01/26 17:19:25 io_stream_cygfile: fopen(/etc/setup/setup.rc) failed= 2 No such file or directory >> 2016/01/26 17:19:25 Current Directory: C:\Users\user\cyg64 >> 2016/01/26 17:19:25 Could not open service McShield for query, start and= stop. McAfee may not be installed, or we don't have access. >> 2016/01/26 17:19:25 Selected local directory: C:\Users\user\cyg64 >> 2016/01/26 17:19:25 net: Direct >> 2016/01/26 17:19:26 site: http://cygwin.mirror.constant.com/ >> 2016/01/26 17:19:29 io_stream_cygfile: fopen(/etc/setup/installed.db) fa= iled 2 No such file or directory >> 2016/01/26 17:19:29 io_stream_cygfile: fopen(/etc/setup/timestamp) faile= d 2 No such file or directory >> 2016/01/26 17:19:30 Adding required dependency binutils: Selecting versi= on 2.25-4 for installation. >> 2016/01/26 17:19:30 Adding required dependency bzip2: Selecting version = 1.0.6-2 for installation. >> 2016/01/26 17:19:30 Adding required dependency ca-certificates: Selectin= g version 2.6-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency csih: Selecting version 0= .9.9-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency cygrunsrv: Selecting vers= ion 1.62-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency cygwin-devel: Selecting v= ersion 2.4.1-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency diffutils: Selecting vers= ion 3.3-3 for installation. >> 2016/01/26 17:19:30 Adding required dependency groff: Selecting version = 1.22.3-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency less: Selecting version 4= 81-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libargp: Selecting versio= n 20110921-2 for installation. >> 2016/01/26 17:19:30 Adding required dependency libattr1: Selecting versi= on 2.4.46-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libblkid1: Selecting vers= ion 2.25.2-2 for installation. >> 2016/01/26 17:19:30 Adding required dependency libbz2_1: Selecting versi= on 1.0.6-2 for installation. >> 2016/01/26 17:19:30 Adding required dependency libcatgets1: Selecting ve= rsion 1.1-2 for installation. >> 2016/01/26 17:19:30 Adding required dependency libcom_err2: Selecting ve= rsion 1.42.12-2 for installation. >> 2016/01/26 17:19:30 Adding required dependency libcrypt0: Selecting vers= ion 1.1-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libcurl4: Selecting versi= on 7.45.0-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libdb5.3: Selecting versi= on 5.3.21-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libedit0: Selecting versi= on 20130712-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libexpat1: Selecting vers= ion 2.1.0-3 for installation. >> 2016/01/26 17:19:30 Adding required dependency libffi6: Selecting versio= n 3.2.1-2 for installation. >> 2016/01/26 17:19:30 Adding required dependency libgcc1: Selecting versio= n 4.9.3-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libgdbm4: Selecting versi= on 1.11-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libgmp10: Selecting versi= on 6.1.0-3p1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libgssapi_krb5_2: Selecti= ng version 1.13.2-3 for installation. >> 2016/01/26 17:19:30 Adding required dependency libiconv: Selecting versi= on 1.14-3 for installation. >> 2016/01/26 17:19:30 Adding required dependency libiconv2: Selecting vers= ion 1.14-3 for installation. >> 2016/01/26 17:19:30 Adding required dependency libidn11: Selecting versi= on 1.29-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libintl8: Selecting versi= on 0.19.5.1-2 for installation. >> 2016/01/26 17:19:30 Adding required dependency libk5crypto3: Selecting v= ersion 1.13.2-3 for installation. >> 2016/01/26 17:19:30 Adding required dependency libkrb5support0: Selectin= g version 1.13.2-3 for installation. >> 2016/01/26 17:19:30 Adding required dependency libkrb5_3: Selecting vers= ion 1.13.2-3 for installation. >> 2016/01/26 17:19:30 Adding required dependency liblzma5: Selecting versi= on 5.2.2-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libmpfr4: Selecting versi= on 3.1.3-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libncursesw10: Selecting = version 6.0-1.20151017 for installation. >> 2016/01/26 17:19:30 Adding required dependency libopenldap2_4_2: Selecti= ng version 2.4.42-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libp11-kit0: Selecting ve= rsion 0.22.1-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libpcre1: Selecting versi= on 8.37-2 for installation. >> 2016/01/26 17:19:31 Adding required dependency libpipeline1: Selecting v= ersion 1.4.0-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libpopt0: Selecting versi= on 1.16-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libsasl2_3: Selecting ver= sion 2.1.26-9 for installation. >> 2016/01/26 17:19:31 Adding required dependency libsigsegv2: Selecting ve= rsion 2.10-2 for installation. >> 2016/01/26 17:19:31 Adding required dependency libsmartcols1: Selecting = version 2.25.2-2 for installation. >> 2016/01/26 17:19:31 Adding required dependency libsqlite3_0: Selecting v= ersion 3.10.1-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libssh2_1: Selecting vers= ion 1.5.0-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libssp0: Selecting versio= n 4.9.3-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libstdc++6: Selecting ver= sion 4.9.3-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libtasn1_6: Selecting ver= sion 4.5-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libuuid-devel: Selecting = version 2.25.2-2 for installation. >> 2016/01/26 17:19:31 Adding required dependency libuuid1: Selecting versi= on 2.25.2-2 for installation. >> 2016/01/26 17:19:31 Adding required dependency lynx: Selecting version 2= .8.7-2 for installation. >> 2016/01/26 17:19:31 Adding required dependency p11-kit: Selecting versio= n 0.22.1-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency p11-kit-trust: Selecting = version 0.22.1-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency perl: Selecting version 5= .22.1-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency perl-Error: Selecting ver= sion 0.17024-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency perl_autorebase: Selectin= g version 5.22.1-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency perl_base: Selecting vers= ion 5.22.1-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency popt: Selecting version 1= .16-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency python: Selecting version= 2.7.10-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency rsync: Selecting version = 3.1.1-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency tcsh: Selecting version 6= .19.00-2 for installation. >> 2016/01/26 17:19:31 Adding required dependency vim-common: Selecting ver= sion 7.4.891-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency xxd: Selecting version 7.= 4.891-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency xz: Selecting version 5.2= .2-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency zlib0: Selecting version = 1.2.8-3 for installation. >> 2016/01/26 17:19:31 Adding required dependency _update-info-dir: Selecti= ng version 00512-1 for installation. >> 2016/01/26 17:19:31 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/_autorebase/_autorebase-001002-1.tar.xz >> 2016/01/26 17:19:31 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/_update-info-dir/_update-info-dir-0051= 2-1.tar.bz2 >> 2016/01/26 17:19:31 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/alternatives/alternatives-1.3.30c-10.t= ar.bz2 >> 2016/01/26 17:19:32 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/autossh/autossh-1.4e-1.tar.xz >> 2016/01/26 17:19:32 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/base-cygwin/base-cygwin-3.8-1.tar.xz >> 2016/01/26 17:19:32 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/base-files/base-files-4.2-4.tar.xz >> 2016/01/26 17:19:34 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/bash/bash-4.3.42-4.tar.xz >> 2016/01/26 17:19:37 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/binutils/binutils-2.25-4.tar.xz >> 2016/01/26 17:19:38 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/bzip2/bzip2-1.0.6-2.tar.bz2 >> 2016/01/26 17:19:39 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/ca-certificates/ca-certificates-2.6-1.= tar.xz >> 2016/01/26 17:19:41 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/coreutils/coreutils-8.24-3.tar.xz >> 2016/01/26 17:19:42 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/csih/csih-0.9.9-1.tar.xz >> 2016/01/26 17:19:42 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/cygrunsrv/cygrunsrv-1.62-1.tar.xz >> 2016/01/26 17:19:43 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/cygutils/cygutils-1.4.15-2.tar.xz >> 2016/01/26 17:19:45 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/cygwin/cygwin-2.4.1-1.tar.xz >> 2016/01/26 17:19:46 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/cygwin/cygwin-devel/cygwin-devel-2.4.1= -1.tar.xz >> 2016/01/26 17:19:47 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/dash/dash-0.5.8-3.tar.xz >> 2016/01/26 17:19:47 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/diffutils/diffutils-3.3-3.tar.xz >> 2016/01/26 17:19:48 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/editrights/editrights-1.03-1.tar.xz >> 2016/01/26 17:19:49 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/file/file-5.25-1.tar.xz >> 2016/01/26 17:19:50 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/findutils/findutils-4.5.12-1.tar.xz >> 2016/01/26 17:19:52 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/gawk/gawk-4.1.3-1.tar.xz >> 2016/01/26 17:19:52 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/getent/getent-2.18.90-4.tar.xz >> 2016/01/26 17:19:55 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/git/git-2.7.0-1.tar.xz >> 2016/01/26 17:19:56 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/grep/grep-2.21-2.tar.xz >> 2016/01/26 17:19:58 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/groff/groff-1.22.3-1.tar.xz >> 2016/01/26 17:19:58 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/gzip/gzip-1.6-1.tar.xz >> 2016/01/26 17:19:58 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/hostname/hostname-3.13-1.tar.bz2 >> 2016/01/26 17:20:00 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/texinfo/info/info-6.0-1.tar.xz >> 2016/01/26 17:20:00 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/ipc-utils/ipc-utils-1.0-2.tar.bz2 >> 2016/01/26 17:20:00 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/less/less-481-1.tar.xz >> 2016/01/26 17:20:01 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libargp/libargp-20110921-2.tar.bz2 >> 2016/01/26 17:20:01 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/attr/libattr1/libattr1-2.4.46-1.tar.bz2 >> 2016/01/26 17:20:01 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/util-linux/libblkid1/libblkid1-2.25.2-= 2.tar.xz >> 2016/01/26 17:20:02 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/bzip2/libbz2_1/libbz2_1-1.0.6-2.tar.bz2 >> 2016/01/26 17:20:02 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/catgets/libcatgets1/libcatgets1-1.1-2.= tar.bz2 >> 2016/01/26 17:20:02 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/e2fsprogs/libcom_err2/libcom_err2-1.42= .12-2.tar.xz >> 2016/01/26 17:20:02 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/crypt/libcrypt0/libcrypt0-1.1-1.tar.bz2 >> 2016/01/26 17:20:03 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/curl/libcurl4/libcurl4-7.45.0-1.tar.xz >> 2016/01/26 17:20:05 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/db/libdb5.3/libdb5.3-5.3.21-1.tar.bz2 >> 2016/01/26 17:20:05 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libedit/libedit0/libedit0-20130712-1.t= ar.xz >> 2016/01/26 17:20:05 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/expat/libexpat1/libexpat1-2.1.0-3.tar.= bz2 >> 2016/01/26 17:20:06 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libffi/libffi6/libffi6-3.2.1-2.tar.xz >> 2016/01/26 17:20:06 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/gcc/libgcc1/libgcc1-4.9.3-1.tar.xz >> 2016/01/26 17:20:06 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/gdbm/libgdbm4/libgdbm4-1.11-1.tar.xz >> 2016/01/26 17:20:07 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/gmp/libgmp10/libgmp10-6.1.0-3p1.tar.xz >> 2016/01/26 17:20:08 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/krb5/libgssapi_krb5_2/libgssapi_krb5_2= -1.13.2-3.tar.xz >> 2016/01/26 17:20:08 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libiconv/libiconv-1.14-3.tar.xz >> 2016/01/26 17:20:09 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libiconv/libiconv2/libiconv2-1.14-3.ta= r.xz >> 2016/01/26 17:20:09 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libidn/libidn11/libidn11-1.29-1.tar.xz >> 2016/01/26 17:20:10 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/gettext/libintl8/libintl8-0.19.5.1-2.t= ar.xz >> 2016/01/26 17:20:10 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/krb5/libk5crypto3/libk5crypto3-1.13.2-= 3.tar.xz >> 2016/01/26 17:20:11 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/krb5/libkrb5_3/libkrb5_3-1.13.2-3.tar.= xz >> 2016/01/26 17:20:11 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/krb5/libkrb5support0/libkrb5support0-1= .13.2-3.tar.xz >> 2016/01/26 17:20:12 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/xz/liblzma5/liblzma5-5.2.2-1.tar.xz >> 2016/01/26 17:20:12 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/mpfr/libmpfr4/libmpfr4-3.1.3-1.tar.xz >> 2016/01/26 17:20:13 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/ncurses/libncursesw10/libncursesw10-6.= 0-1.20151017.tar.xz >> 2016/01/26 17:20:14 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/openldap/libopenldap2_4_2/libopenldap2= _4_2-2.4.42-1.tar.xz >> 2016/01/26 17:20:15 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/openssl/libopenssl100/libopenssl100-1.= 0.2e-1.tar.xz >> 2016/01/26 17:20:16 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/p11-kit/libp11-kit0/libp11-kit0-0.22.1= -1.tar.xz >> 2016/01/26 17:20:16 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/pcre/libpcre1/libpcre1-8.37-2.tar.xz >> 2016/01/26 17:20:16 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libpipeline/libpipeline1/libpipeline1-= 1.4.0-1.tar.xz >> 2016/01/26 17:20:17 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/popt/libpopt0/libpopt0-1.16-1.tar.xz >> 2016/01/26 17:20:17 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/readline/libreadline7/libreadline7-6.3= .8-1.tar.xz >> 2016/01/26 17:20:18 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/cyrus-sasl/libsasl2_3/libsasl2_3-2.1.2= 6-9.tar.xz >> 2016/01/26 17:20:18 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libsigsegv/libsigsegv2/libsigsegv2-2.1= 0-2.tar.xz >> 2016/01/26 17:20:18 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/util-linux/libsmartcols1/libsmartcols1= -2.25.2-2.tar.xz >> 2016/01/26 17:20:20 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/sqlite3/libsqlite3_0/libsqlite3_0-3.10= .1-1.tar.xz >> 2016/01/26 17:20:20 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libssh2/libssh2_1/libssh2_1-1.5.0-1.ta= r.xz >> 2016/01/26 17:20:20 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/gcc/libssp0/libssp0-4.9.3-1.tar.xz >> 2016/01/26 17:20:21 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/gcc/libstdc++6/libstdc++6-4.9.3-1.tar.= xz >> 2016/01/26 17:20:21 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libtasn1/libtasn1_6/libtasn1_6-4.5-1.t= ar.xz >> 2016/01/26 17:20:22 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/util-linux/libuuid-devel/libuuid-devel= -2.25.2-2.tar.xz >> 2016/01/26 17:20:22 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/util-linux/libuuid1/libuuid1-2.25.2-2.= tar.xz >> 2016/01/26 17:20:22 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/login/login-1.11-1.tar.xz >> 2016/01/26 17:20:24 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/lynx/lynx-2.8.7-2.tar.bz2 >> 2016/01/26 17:20:26 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/man-db/man-db-2.7.4-1.tar.xz >> 2016/01/26 17:20:26 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/mintty/mintty-2.2.2-0.tar.xz >> 2016/01/26 17:20:27 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/nano/nano-2.4.1-1.tar.xz >> 2016/01/26 17:20:29 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/openssh/openssh-7.1p2-1.tar.xz >> 2016/01/26 17:20:30 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/openssl/openssl-1.0.2e-1.tar.xz >> 2016/01/26 17:20:30 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/p11-kit/p11-kit-0.22.1-1.tar.xz >> 2016/01/26 17:20:31 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/p11-kit/p11-kit-trust/p11-kit-trust-0.= 22.1-1.tar.xz >> 2016/01/26 17:20:35 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/perl/perl-5.22.1-1.tar.xz >> 2016/01/26 17:20:35 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/perl-Error/perl-Error-0.17024-1.tar.xz >> 2016/01/26 17:20:35 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/perl/perl_autorebase/perl_autorebase-5= .22.1-1.tar.xz >> 2016/01/26 17:20:36 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/perl/perl_base/perl_base-5.22.1-1.tar.= xz >> 2016/01/26 17:20:37 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/popt/popt-1.16-1.tar.xz >> 2016/01/26 17:20:40 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/python/python-2.7.10-1.tar.xz >> 2016/01/26 17:20:41 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/rebase/rebase-4.4.1-1.tar.bz2 >> 2016/01/26 17:20:42 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/rsync/rsync-3.1.1-1.tar.xz >> 2016/01/26 17:20:43 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/run/run-1.3.4-2.tar.xz >> 2016/01/26 17:20:44 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/sed/sed-4.2.2-3.tar.bz2 >> 2016/01/26 17:20:45 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/tar/tar-1.28-1.tar.xz >> 2016/01/26 17:20:46 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/tcsh/tcsh-6.19.00-2.tar.xz >> 2016/01/26 17:20:46 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/ncurses/terminfo/terminfo-6.0-1.201510= 17.tar.xz >> 2016/01/26 17:20:47 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/tzcode/tzcode-2015g-1.tar.xz >> 2016/01/26 17:20:48 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/util-linux/util-linux-2.25.2-2.tar.xz >> 2016/01/26 17:20:50 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/vim/vim-7.4.891-1.tar.xz >> 2016/01/26 17:20:54 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/vim/vim-common/vim-common-7.4.891-1.ta= r.xz >> 2016/01/26 17:20:55 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/vim/vim-minimal/vim-minimal-7.4.891-1.= tar.xz >> 2016/01/26 17:20:55 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/which/which-2.20-2.tar.bz2 >> 2016/01/26 17:20:56 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/vim/xxd/xxd-7.4.891-1.tar.xz >> 2016/01/26 17:20:56 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/xz/xz-5.2.2-1.tar.xz >> 2016/01/26 17:20:57 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/zlib/zlib0/zlib0-1.2.8-3.tar.xz >> 2016/01/26 17:20:57 Ending cygwin install >> =3D=3D=3D=3D=3D End setup.log =3D=3D=3D=3D=3D >> >> =3D=3D=3D=3D=3D Begin setup.log.full =3D=3D=3D=3D=3D >> 2016/01/26 17:19:25 Starting cygwin install, version 2.873 >> 2016/01/26 17:19:25 User has backup/restore rights >> 2016/01/26 17:19:25 io_stream_cygfile: fopen(/etc/setup/setup.rc) failed= 2 No such file or directory >> 2016/01/26 17:19:25 Current Directory: C:\Users\user\cyg64 >> 2016/01/26 17:19:25 Could not open service McShield for query, start and= stop. McAfee may not be installed, or we don't have access. >> 2016/01/26 17:19:25 Selected local directory: C:\Users\user\cyg64 >> 2016/01/26 17:19:25 net: Direct >> Cached mirror list unavailable >> get_url_to_membuf http://cygwin.com/mirrors.lst >> getUrlToStream http://cygwin.com/mirrors.lst >> 2016/01/26 17:19:26 site: http://cygwin.mirror.constant.com/ >> get_url_to_membuf http://cygwin.mirror.constant.com/x86_64/setup.xz.sig >> getUrlToStream http://cygwin.mirror.constant.com/x86_64/setup.xz.sig >> getUrlToStream failed! >> get_url_to_membuf failed! >> get_url_to_membuf http://cygwin.mirror.constant.com/x86_64/setup.xz >> getUrlToStream http://cygwin.mirror.constant.com/x86_64/setup.xz >> getUrlToStream failed! >> get_url_to_membuf failed! >> get_url_to_membuf http://cygwin.mirror.constant.com/x86_64/setup.bz2.sig >> getUrlToStream http://cygwin.mirror.constant.com/x86_64/setup.bz2.sig >> get_url_to_membuf http://cygwin.mirror.constant.com/x86_64/setup.bz2 >> getUrlToStream http://cygwin.mirror.constant.com/x86_64/setup.bz2 >> 2016/01/26 17:19:29 io_stream_cygfile: fopen(/etc/setup/installed.db) fa= iled 2 No such file or directory >> 2016/01/26 17:19:29 io_stream_cygfile: fopen(/etc/setup/timestamp) faile= d 2 No such file or directory >> .ini setup_version is 2.873, our setup_version is 2.873 >> Added manual package autossh >> Added manual package git >> Added manual package nano >> Added manual package openssh >> Added manual package vim >> 2016/01/26 17:19:30 Adding required dependency binutils: Selecting versi= on 2.25-4 for installation. >> 2016/01/26 17:19:30 Adding required dependency bzip2: Selecting version = 1.0.6-2 for installation. >> 2016/01/26 17:19:30 Adding required dependency ca-certificates: Selectin= g version 2.6-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency csih: Selecting version 0= .9.9-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency cygrunsrv: Selecting vers= ion 1.62-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency cygwin-devel: Selecting v= ersion 2.4.1-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency diffutils: Selecting vers= ion 3.3-3 for installation. >> 2016/01/26 17:19:30 Adding required dependency groff: Selecting version = 1.22.3-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency less: Selecting version 4= 81-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libargp: Selecting versio= n 20110921-2 for installation. >> 2016/01/26 17:19:30 Adding required dependency libattr1: Selecting versi= on 2.4.46-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libblkid1: Selecting vers= ion 2.25.2-2 for installation. >> 2016/01/26 17:19:30 Adding required dependency libbz2_1: Selecting versi= on 1.0.6-2 for installation. >> 2016/01/26 17:19:30 Adding required dependency libcatgets1: Selecting ve= rsion 1.1-2 for installation. >> 2016/01/26 17:19:30 Adding required dependency libcom_err2: Selecting ve= rsion 1.42.12-2 for installation. >> 2016/01/26 17:19:30 Adding required dependency libcrypt0: Selecting vers= ion 1.1-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libcurl4: Selecting versi= on 7.45.0-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libdb5.3: Selecting versi= on 5.3.21-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libedit0: Selecting versi= on 20130712-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libexpat1: Selecting vers= ion 2.1.0-3 for installation. >> 2016/01/26 17:19:30 Adding required dependency libffi6: Selecting versio= n 3.2.1-2 for installation. >> 2016/01/26 17:19:30 Adding required dependency libgcc1: Selecting versio= n 4.9.3-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libgdbm4: Selecting versi= on 1.11-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libgmp10: Selecting versi= on 6.1.0-3p1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libgssapi_krb5_2: Selecti= ng version 1.13.2-3 for installation. >> 2016/01/26 17:19:30 Adding required dependency libiconv: Selecting versi= on 1.14-3 for installation. >> 2016/01/26 17:19:30 Adding required dependency libiconv2: Selecting vers= ion 1.14-3 for installation. >> 2016/01/26 17:19:30 Adding required dependency libidn11: Selecting versi= on 1.29-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libintl8: Selecting versi= on 0.19.5.1-2 for installation. >> 2016/01/26 17:19:30 Adding required dependency libk5crypto3: Selecting v= ersion 1.13.2-3 for installation. >> 2016/01/26 17:19:30 Adding required dependency libkrb5support0: Selectin= g version 1.13.2-3 for installation. >> 2016/01/26 17:19:30 Adding required dependency libkrb5_3: Selecting vers= ion 1.13.2-3 for installation. >> 2016/01/26 17:19:30 Adding required dependency liblzma5: Selecting versi= on 5.2.2-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libmpfr4: Selecting versi= on 3.1.3-1 for installation. >> 2016/01/26 17:19:30 Adding required dependency libncursesw10: Selecting = version 6.0-1.20151017 for installation. >> 2016/01/26 17:19:30 Adding required dependency libopenldap2_4_2: Selecti= ng version 2.4.42-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libp11-kit0: Selecting ve= rsion 0.22.1-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libpcre1: Selecting versi= on 8.37-2 for installation. >> 2016/01/26 17:19:31 Adding required dependency libpipeline1: Selecting v= ersion 1.4.0-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libpopt0: Selecting versi= on 1.16-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libsasl2_3: Selecting ver= sion 2.1.26-9 for installation. >> 2016/01/26 17:19:31 Adding required dependency libsigsegv2: Selecting ve= rsion 2.10-2 for installation. >> 2016/01/26 17:19:31 Adding required dependency libsmartcols1: Selecting = version 2.25.2-2 for installation. >> 2016/01/26 17:19:31 Adding required dependency libsqlite3_0: Selecting v= ersion 3.10.1-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libssh2_1: Selecting vers= ion 1.5.0-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libssp0: Selecting versio= n 4.9.3-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libstdc++6: Selecting ver= sion 4.9.3-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libtasn1_6: Selecting ver= sion 4.5-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency libuuid-devel: Selecting = version 2.25.2-2 for installation. >> 2016/01/26 17:19:31 Adding required dependency libuuid1: Selecting versi= on 2.25.2-2 for installation. >> 2016/01/26 17:19:31 Adding required dependency lynx: Selecting version 2= .8.7-2 for installation. >> 2016/01/26 17:19:31 Adding required dependency p11-kit: Selecting versio= n 0.22.1-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency p11-kit-trust: Selecting = version 0.22.1-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency perl: Selecting version 5= .22.1-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency perl-Error: Selecting ver= sion 0.17024-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency perl_autorebase: Selectin= g version 5.22.1-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency perl_base: Selecting vers= ion 5.22.1-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency popt: Selecting version 1= .16-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency python: Selecting version= 2.7.10-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency rsync: Selecting version = 3.1.1-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency tcsh: Selecting version 6= .19.00-2 for installation. >> 2016/01/26 17:19:31 Adding required dependency vim-common: Selecting ver= sion 7.4.891-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency xxd: Selecting version 7.= 4.891-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency xz: Selecting version 5.2= .2-1 for installation. >> 2016/01/26 17:19:31 Adding required dependency zlib0: Selecting version = 1.2.8-3 for installation. >> 2016/01/26 17:19:31 Adding required dependency _update-info-dir: Selecti= ng version 00512-1 for installation. >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/_autor= ebase/_autorebase-001002-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/_autorebase/_autorebase-001002-1.tar.x= z.tmp >> 2016/01/26 17:19:31 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/_autorebase/_autorebase-001002-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/_updat= e-info-dir/_update-info-dir-00512-1.tar.bz2 C:\Users\user\cyg64/http%3a%2f%= 2fcygwin.mirror.constant.com%2f/x86_64/release/_update-info-dir/_update-inf= o-dir-00512-1.tar.bz2.tmp >> 2016/01/26 17:19:31 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/_update-info-dir/_update-info-dir-0051= 2-1.tar.bz2 >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/altern= atives/alternatives-1.3.30c-10.tar.bz2 C:\Users\user\cyg64/http%3a%2f%2fcyg= win.mirror.constant.com%2f/x86_64/release/alternatives/alternatives-1.3.30c= -10.tar.bz2.tmp >> 2016/01/26 17:19:31 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/alternatives/alternatives-1.3.30c-10.t= ar.bz2 >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/autoss= h/autossh-1.4e-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.cons= tant.com%2f/x86_64/release/autossh/autossh-1.4e-1.tar.xz.tmp >> 2016/01/26 17:19:32 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/autossh/autossh-1.4e-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/base-c= ygwin/base-cygwin-3.8-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirr= or.constant.com%2f/x86_64/release/base-cygwin/base-cygwin-3.8-1.tar.xz.tmp >> 2016/01/26 17:19:32 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/base-cygwin/base-cygwin-3.8-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/base-f= iles/base-files-4.2-4.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror= .constant.com%2f/x86_64/release/base-files/base-files-4.2-4.tar.xz.tmp >> 2016/01/26 17:19:32 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/base-files/base-files-4.2-4.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/bash/b= ash-4.3.42-4.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant= .com%2f/x86_64/release/bash/bash-4.3.42-4.tar.xz.tmp >> 2016/01/26 17:19:34 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/bash/bash-4.3.42-4.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/binuti= ls/binutils-2.25-4.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.co= nstant.com%2f/x86_64/release/binutils/binutils-2.25-4.tar.xz.tmp >> 2016/01/26 17:19:37 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/binutils/binutils-2.25-4.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/bzip2/= bzip2-1.0.6-2.tar.bz2 C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.consta= nt.com%2f/x86_64/release/bzip2/bzip2-1.0.6-2.tar.bz2.tmp >> 2016/01/26 17:19:38 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/bzip2/bzip2-1.0.6-2.tar.bz2 >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/ca-cer= tificates/ca-certificates-2.6-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcyg= win.mirror.constant.com%2f/x86_64/release/ca-certificates/ca-certificates-2= .6-1.tar.xz.tmp >> 2016/01/26 17:19:39 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/ca-certificates/ca-certificates-2.6-1.= tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/coreut= ils/coreutils-8.24-3.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.= constant.com%2f/x86_64/release/coreutils/coreutils-8.24-3.tar.xz.tmp >> 2016/01/26 17:19:41 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/coreutils/coreutils-8.24-3.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/csih/c= sih-0.9.9-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.= com%2f/x86_64/release/csih/csih-0.9.9-1.tar.xz.tmp >> 2016/01/26 17:19:42 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/csih/csih-0.9.9-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/cygrun= srv/cygrunsrv-1.62-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.= constant.com%2f/x86_64/release/cygrunsrv/cygrunsrv-1.62-1.tar.xz.tmp >> 2016/01/26 17:19:42 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/cygrunsrv/cygrunsrv-1.62-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/cyguti= ls/cygutils-1.4.15-2.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.= constant.com%2f/x86_64/release/cygutils/cygutils-1.4.15-2.tar.xz.tmp >> 2016/01/26 17:19:43 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/cygutils/cygutils-1.4.15-2.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/cygwin= /cygwin-2.4.1-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.const= ant.com%2f/x86_64/release/cygwin/cygwin-2.4.1-1.tar.xz.tmp >> 2016/01/26 17:19:45 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/cygwin/cygwin-2.4.1-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/cygwin= /cygwin-devel/cygwin-devel-2.4.1-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2f= cygwin.mirror.constant.com%2f/x86_64/release/cygwin/cygwin-devel/cygwin-dev= el-2.4.1-1.tar.xz.tmp >> 2016/01/26 17:19:46 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/cygwin/cygwin-devel/cygwin-devel-2.4.1= -1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/dash/d= ash-0.5.8-3.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.= com%2f/x86_64/release/dash/dash-0.5.8-3.tar.xz.tmp >> 2016/01/26 17:19:47 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/dash/dash-0.5.8-3.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/diffut= ils/diffutils-3.3-3.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.c= onstant.com%2f/x86_64/release/diffutils/diffutils-3.3-3.tar.xz.tmp >> 2016/01/26 17:19:47 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/diffutils/diffutils-3.3-3.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/editri= ghts/editrights-1.03-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirro= r.constant.com%2f/x86_64/release/editrights/editrights-1.03-1.tar.xz.tmp >> 2016/01/26 17:19:48 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/editrights/editrights-1.03-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/file/f= ile-5.25-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.c= om%2f/x86_64/release/file/file-5.25-1.tar.xz.tmp >> 2016/01/26 17:19:49 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/file/file-5.25-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/findut= ils/findutils-4.5.12-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirro= r.constant.com%2f/x86_64/release/findutils/findutils-4.5.12-1.tar.xz.tmp >> 2016/01/26 17:19:50 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/findutils/findutils-4.5.12-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/gawk/g= awk-4.1.3-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.= com%2f/x86_64/release/gawk/gawk-4.1.3-1.tar.xz.tmp >> 2016/01/26 17:19:52 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/gawk/gawk-4.1.3-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/getent= /getent-2.18.90-4.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.con= stant.com%2f/x86_64/release/getent/getent-2.18.90-4.tar.xz.tmp >> 2016/01/26 17:19:52 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/getent/getent-2.18.90-4.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/git/gi= t-2.7.0-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.co= m%2f/x86_64/release/git/git-2.7.0-1.tar.xz.tmp >> 2016/01/26 17:19:55 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/git/git-2.7.0-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/grep/g= rep-2.21-2.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.c= om%2f/x86_64/release/grep/grep-2.21-2.tar.xz.tmp >> 2016/01/26 17:19:56 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/grep/grep-2.21-2.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/groff/= groff-1.22.3-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.consta= nt.com%2f/x86_64/release/groff/groff-1.22.3-1.tar.xz.tmp >> 2016/01/26 17:19:58 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/groff/groff-1.22.3-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/gzip/g= zip-1.6-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.co= m%2f/x86_64/release/gzip/gzip-1.6-1.tar.xz.tmp >> 2016/01/26 17:19:58 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/gzip/gzip-1.6-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/hostna= me/hostname-3.13-1.tar.bz2 C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.c= onstant.com%2f/x86_64/release/hostname/hostname-3.13-1.tar.bz2.tmp >> 2016/01/26 17:19:58 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/hostname/hostname-3.13-1.tar.bz2 >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/texinf= o/info/info-6.0-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.con= stant.com%2f/x86_64/release/texinfo/info/info-6.0-1.tar.xz.tmp >> 2016/01/26 17:20:00 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/texinfo/info/info-6.0-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/ipc-ut= ils/ipc-utils-1.0-2.tar.bz2 C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.= constant.com%2f/x86_64/release/ipc-utils/ipc-utils-1.0-2.tar.bz2.tmp >> 2016/01/26 17:20:00 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/ipc-utils/ipc-utils-1.0-2.tar.bz2 >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/less/l= ess-481-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.co= m%2f/x86_64/release/less/less-481-1.tar.xz.tmp >> 2016/01/26 17:20:00 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/less/less-481-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/libarg= p/libargp-20110921-2.tar.bz2 C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror= .constant.com%2f/x86_64/release/libargp/libargp-20110921-2.tar.bz2.tmp >> 2016/01/26 17:20:01 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libargp/libargp-20110921-2.tar.bz2 >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/attr/l= ibattr1/libattr1-2.4.46-1.tar.bz2 C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/attr/libattr1/libattr1-2.4.46-1.tar.bz= 2.tmp >> 2016/01/26 17:20:01 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/attr/libattr1/libattr1-2.4.46-1.tar.bz2 >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/util-l= inux/libblkid1/libblkid1-2.25.2-2.tar.xz C:\Users\user\cyg64/http%3a%2f%2fc= ygwin.mirror.constant.com%2f/x86_64/release/util-linux/libblkid1/libblkid1-= 2.25.2-2.tar.xz.tmp >> 2016/01/26 17:20:01 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/util-linux/libblkid1/libblkid1-2.25.2-= 2.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/bzip2/= libbz2_1/libbz2_1-1.0.6-2.tar.bz2 C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/bzip2/libbz2_1/libbz2_1-1.0.6-2.tar.bz= 2.tmp >> 2016/01/26 17:20:02 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/bzip2/libbz2_1/libbz2_1-1.0.6-2.tar.bz2 >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/catget= s/libcatgets1/libcatgets1-1.1-2.tar.bz2 C:\Users\user\cyg64/http%3a%2f%2fcy= gwin.mirror.constant.com%2f/x86_64/release/catgets/libcatgets1/libcatgets1-= 1.1-2.tar.bz2.tmp >> 2016/01/26 17:20:02 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/catgets/libcatgets1/libcatgets1-1.1-2.= tar.bz2 >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/e2fspr= ogs/libcom_err2/libcom_err2-1.42.12-2.tar.xz C:\Users\user\cyg64/http%3a%2f= %2fcygwin.mirror.constant.com%2f/x86_64/release/e2fsprogs/libcom_err2/libco= m_err2-1.42.12-2.tar.xz.tmp >> 2016/01/26 17:20:02 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/e2fsprogs/libcom_err2/libcom_err2-1.42= .12-2.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/crypt/= libcrypt0/libcrypt0-1.1-1.tar.bz2 C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/crypt/libcrypt0/libcrypt0-1.1-1.tar.bz= 2.tmp >> 2016/01/26 17:20:02 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/crypt/libcrypt0/libcrypt0-1.1-1.tar.bz2 >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/curl/l= ibcurl4/libcurl4-7.45.0-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mi= rror.constant.com%2f/x86_64/release/curl/libcurl4/libcurl4-7.45.0-1.tar.xz.= tmp >> 2016/01/26 17:20:03 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/curl/libcurl4/libcurl4-7.45.0-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/db/lib= db5.3/libdb5.3-5.3.21-1.tar.bz2 C:\Users\user\cyg64/http%3a%2f%2fcygwin.mir= ror.constant.com%2f/x86_64/release/db/libdb5.3/libdb5.3-5.3.21-1.tar.bz2.tmp >> 2016/01/26 17:20:05 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/db/libdb5.3/libdb5.3-5.3.21-1.tar.bz2 >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/libedi= t/libedit0/libedit0-20130712-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygw= in.mirror.constant.com%2f/x86_64/release/libedit/libedit0/libedit0-20130712= -1.tar.xz.tmp >> 2016/01/26 17:20:05 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libedit/libedit0/libedit0-20130712-1.t= ar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/expat/= libexpat1/libexpat1-2.1.0-3.tar.bz2 C:\Users\user\cyg64/http%3a%2f%2fcygwin= .mirror.constant.com%2f/x86_64/release/expat/libexpat1/libexpat1-2.1.0-3.ta= r.bz2.tmp >> 2016/01/26 17:20:05 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/expat/libexpat1/libexpat1-2.1.0-3.tar.= bz2 >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/libffi= /libffi6/libffi6-3.2.1-2.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mir= ror.constant.com%2f/x86_64/release/libffi/libffi6/libffi6-3.2.1-2.tar.xz.tmp >> 2016/01/26 17:20:06 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libffi/libffi6/libffi6-3.2.1-2.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/gcc/li= bgcc1/libgcc1-4.9.3-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror= .constant.com%2f/x86_64/release/gcc/libgcc1/libgcc1-4.9.3-1.tar.xz.tmp >> 2016/01/26 17:20:06 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/gcc/libgcc1/libgcc1-4.9.3-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/gdbm/l= ibgdbm4/libgdbm4-1.11-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirr= or.constant.com%2f/x86_64/release/gdbm/libgdbm4/libgdbm4-1.11-1.tar.xz.tmp >> 2016/01/26 17:20:06 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/gdbm/libgdbm4/libgdbm4-1.11-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/gmp/li= bgmp10/libgmp10-6.1.0-3p1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mi= rror.constant.com%2f/x86_64/release/gmp/libgmp10/libgmp10-6.1.0-3p1.tar.xz.= tmp >> 2016/01/26 17:20:07 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/gmp/libgmp10/libgmp10-6.1.0-3p1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/krb5/l= ibgssapi_krb5_2/libgssapi_krb5_2-1.13.2-3.tar.xz C:\Users\user\cyg64/http%3= a%2f%2fcygwin.mirror.constant.com%2f/x86_64/release/krb5/libgssapi_krb5_2/l= ibgssapi_krb5_2-1.13.2-3.tar.xz.tmp >> 2016/01/26 17:20:08 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/krb5/libgssapi_krb5_2/libgssapi_krb5_2= -1.13.2-3.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/libico= nv/libiconv-1.14-3.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.co= nstant.com%2f/x86_64/release/libiconv/libiconv-1.14-3.tar.xz.tmp >> 2016/01/26 17:20:08 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libiconv/libiconv-1.14-3.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/libico= nv/libiconv2/libiconv2-1.14-3.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwi= n.mirror.constant.com%2f/x86_64/release/libiconv/libiconv2/libiconv2-1.14-3= .tar.xz.tmp >> 2016/01/26 17:20:09 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libiconv/libiconv2/libiconv2-1.14-3.ta= r.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/libidn= /libidn11/libidn11-1.29-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mi= rror.constant.com%2f/x86_64/release/libidn/libidn11/libidn11-1.29-1.tar.xz.= tmp >> 2016/01/26 17:20:09 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libidn/libidn11/libidn11-1.29-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/gettex= t/libintl8/libintl8-0.19.5.1-2.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygw= in.mirror.constant.com%2f/x86_64/release/gettext/libintl8/libintl8-0.19.5.1= -2.tar.xz.tmp >> 2016/01/26 17:20:10 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/gettext/libintl8/libintl8-0.19.5.1-2.t= ar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/krb5/l= ibk5crypto3/libk5crypto3-1.13.2-3.tar.xz C:\Users\user\cyg64/http%3a%2f%2fc= ygwin.mirror.constant.com%2f/x86_64/release/krb5/libk5crypto3/libk5crypto3-= 1.13.2-3.tar.xz.tmp >> 2016/01/26 17:20:10 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/krb5/libk5crypto3/libk5crypto3-1.13.2-= 3.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/krb5/l= ibkrb5_3/libkrb5_3-1.13.2-3.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.= mirror.constant.com%2f/x86_64/release/krb5/libkrb5_3/libkrb5_3-1.13.2-3.tar= .xz.tmp >> 2016/01/26 17:20:11 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/krb5/libkrb5_3/libkrb5_3-1.13.2-3.tar.= xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/krb5/l= ibkrb5support0/libkrb5support0-1.13.2-3.tar.xz C:\Users\user\cyg64/http%3a%= 2f%2fcygwin.mirror.constant.com%2f/x86_64/release/krb5/libkrb5support0/libk= rb5support0-1.13.2-3.tar.xz.tmp >> 2016/01/26 17:20:11 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/krb5/libkrb5support0/libkrb5support0-1= .13.2-3.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/xz/lib= lzma5/liblzma5-5.2.2-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirro= r.constant.com%2f/x86_64/release/xz/liblzma5/liblzma5-5.2.2-1.tar.xz.tmp >> 2016/01/26 17:20:12 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/xz/liblzma5/liblzma5-5.2.2-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/mpfr/l= ibmpfr4/libmpfr4-3.1.3-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mir= ror.constant.com%2f/x86_64/release/mpfr/libmpfr4/libmpfr4-3.1.3-1.tar.xz.tmp >> 2016/01/26 17:20:12 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/mpfr/libmpfr4/libmpfr4-3.1.3-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/ncurse= s/libncursesw10/libncursesw10-6.0-1.20151017.tar.xz C:\Users\user\cyg64/htt= p%3a%2f%2fcygwin.mirror.constant.com%2f/x86_64/release/ncurses/libncursesw1= 0/libncursesw10-6.0-1.20151017.tar.xz.tmp >> 2016/01/26 17:20:13 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/ncurses/libncursesw10/libncursesw10-6.= 0-1.20151017.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/openld= ap/libopenldap2_4_2/libopenldap2_4_2-2.4.42-1.tar.xz C:\Users\user\cyg64/ht= tp%3a%2f%2fcygwin.mirror.constant.com%2f/x86_64/release/openldap/libopenlda= p2_4_2/libopenldap2_4_2-2.4.42-1.tar.xz.tmp >> 2016/01/26 17:20:14 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/openldap/libopenldap2_4_2/libopenldap2= _4_2-2.4.42-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/openss= l/libopenssl100/libopenssl100-1.0.2e-1.tar.xz C:\Users\user\cyg64/http%3a%2= f%2fcygwin.mirror.constant.com%2f/x86_64/release/openssl/libopenssl100/libo= penssl100-1.0.2e-1.tar.xz.tmp >> 2016/01/26 17:20:15 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/openssl/libopenssl100/libopenssl100-1.= 0.2e-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/p11-ki= t/libp11-kit0/libp11-kit0-0.22.1-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2f= cygwin.mirror.constant.com%2f/x86_64/release/p11-kit/libp11-kit0/libp11-kit= 0-0.22.1-1.tar.xz.tmp >> 2016/01/26 17:20:16 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/p11-kit/libp11-kit0/libp11-kit0-0.22.1= -1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/pcre/l= ibpcre1/libpcre1-8.37-2.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirr= or.constant.com%2f/x86_64/release/pcre/libpcre1/libpcre1-8.37-2.tar.xz.tmp >> 2016/01/26 17:20:16 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/pcre/libpcre1/libpcre1-8.37-2.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/libpip= eline/libpipeline1/libpipeline1-1.4.0-1.tar.xz C:\Users\user\cyg64/http%3a%= 2f%2fcygwin.mirror.constant.com%2f/x86_64/release/libpipeline/libpipeline1/= libpipeline1-1.4.0-1.tar.xz.tmp >> 2016/01/26 17:20:16 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libpipeline/libpipeline1/libpipeline1-= 1.4.0-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/popt/l= ibpopt0/libpopt0-1.16-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirr= or.constant.com%2f/x86_64/release/popt/libpopt0/libpopt0-1.16-1.tar.xz.tmp >> 2016/01/26 17:20:17 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/popt/libpopt0/libpopt0-1.16-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/readli= ne/libreadline7/libreadline7-6.3.8-1.tar.xz C:\Users\user\cyg64/http%3a%2f%= 2fcygwin.mirror.constant.com%2f/x86_64/release/readline/libreadline7/librea= dline7-6.3.8-1.tar.xz.tmp >> 2016/01/26 17:20:17 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/readline/libreadline7/libreadline7-6.3= .8-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/cyrus-= sasl/libsasl2_3/libsasl2_3-2.1.26-9.tar.xz C:\Users\user\cyg64/http%3a%2f%2= fcygwin.mirror.constant.com%2f/x86_64/release/cyrus-sasl/libsasl2_3/libsasl= 2_3-2.1.26-9.tar.xz.tmp >> 2016/01/26 17:20:18 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/cyrus-sasl/libsasl2_3/libsasl2_3-2.1.2= 6-9.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/libsig= segv/libsigsegv2/libsigsegv2-2.10-2.tar.xz C:\Users\user\cyg64/http%3a%2f%2= fcygwin.mirror.constant.com%2f/x86_64/release/libsigsegv/libsigsegv2/libsig= segv2-2.10-2.tar.xz.tmp >> 2016/01/26 17:20:18 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libsigsegv/libsigsegv2/libsigsegv2-2.1= 0-2.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/util-l= inux/libsmartcols1/libsmartcols1-2.25.2-2.tar.xz C:\Users\user\cyg64/http%3= a%2f%2fcygwin.mirror.constant.com%2f/x86_64/release/util-linux/libsmartcols= 1/libsmartcols1-2.25.2-2.tar.xz.tmp >> 2016/01/26 17:20:18 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/util-linux/libsmartcols1/libsmartcols1= -2.25.2-2.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/sqlite= 3/libsqlite3_0/libsqlite3_0-3.10.1-1.tar.xz C:\Users\user\cyg64/http%3a%2f%= 2fcygwin.mirror.constant.com%2f/x86_64/release/sqlite3/libsqlite3_0/libsqli= te3_0-3.10.1-1.tar.xz.tmp >> 2016/01/26 17:20:20 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/sqlite3/libsqlite3_0/libsqlite3_0-3.10= .1-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/libssh= 2/libssh2_1/libssh2_1-1.5.0-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwi= n.mirror.constant.com%2f/x86_64/release/libssh2/libssh2_1/libssh2_1-1.5.0-1= .tar.xz.tmp >> 2016/01/26 17:20:20 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libssh2/libssh2_1/libssh2_1-1.5.0-1.ta= r.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/gcc/li= bssp0/libssp0-4.9.3-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror= .constant.com%2f/x86_64/release/gcc/libssp0/libssp0-4.9.3-1.tar.xz.tmp >> 2016/01/26 17:20:20 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/gcc/libssp0/libssp0-4.9.3-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/gcc/li= bstdc++6/libstdc++6-4.9.3-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.= mirror.constant.com%2f/x86_64/release/gcc/libstdc++6/libstdc++6-4.9.3-1.tar= .xz.tmp >> 2016/01/26 17:20:21 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/gcc/libstdc++6/libstdc++6-4.9.3-1.tar.= xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/libtas= n1/libtasn1_6/libtasn1_6-4.5-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygw= in.mirror.constant.com%2f/x86_64/release/libtasn1/libtasn1_6/libtasn1_6-4.5= -1.tar.xz.tmp >> 2016/01/26 17:20:21 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/libtasn1/libtasn1_6/libtasn1_6-4.5-1.t= ar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/util-l= inux/libuuid-devel/libuuid-devel-2.25.2-2.tar.xz C:\Users\user\cyg64/http%3= a%2f%2fcygwin.mirror.constant.com%2f/x86_64/release/util-linux/libuuid-deve= l/libuuid-devel-2.25.2-2.tar.xz.tmp >> 2016/01/26 17:20:22 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/util-linux/libuuid-devel/libuuid-devel= -2.25.2-2.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/util-l= inux/libuuid1/libuuid1-2.25.2-2.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcyg= win.mirror.constant.com%2f/x86_64/release/util-linux/libuuid1/libuuid1-2.25= .2-2.tar.xz.tmp >> 2016/01/26 17:20:22 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/util-linux/libuuid1/libuuid1-2.25.2-2.= tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/login/= login-1.11-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant= .com%2f/x86_64/release/login/login-1.11-1.tar.xz.tmp >> 2016/01/26 17:20:22 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/login/login-1.11-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/lynx/l= ynx-2.8.7-2.tar.bz2 C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant= .com%2f/x86_64/release/lynx/lynx-2.8.7-2.tar.bz2.tmp >> 2016/01/26 17:20:24 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/lynx/lynx-2.8.7-2.tar.bz2 >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/man-db= /man-db-2.7.4-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.const= ant.com%2f/x86_64/release/man-db/man-db-2.7.4-1.tar.xz.tmp >> 2016/01/26 17:20:26 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/man-db/man-db-2.7.4-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/mintty= /mintty-2.2.2-0.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.const= ant.com%2f/x86_64/release/mintty/mintty-2.2.2-0.tar.xz.tmp >> 2016/01/26 17:20:26 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/mintty/mintty-2.2.2-0.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/nano/n= ano-2.4.1-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.= com%2f/x86_64/release/nano/nano-2.4.1-1.tar.xz.tmp >> 2016/01/26 17:20:27 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/nano/nano-2.4.1-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/openss= h/openssh-7.1p2-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.con= stant.com%2f/x86_64/release/openssh/openssh-7.1p2-1.tar.xz.tmp >> 2016/01/26 17:20:29 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/openssh/openssh-7.1p2-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/openss= l/openssl-1.0.2e-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.co= nstant.com%2f/x86_64/release/openssl/openssl-1.0.2e-1.tar.xz.tmp >> 2016/01/26 17:20:30 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/openssl/openssl-1.0.2e-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/p11-ki= t/p11-kit-0.22.1-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.co= nstant.com%2f/x86_64/release/p11-kit/p11-kit-0.22.1-1.tar.xz.tmp >> 2016/01/26 17:20:30 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/p11-kit/p11-kit-0.22.1-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/p11-ki= t/p11-kit-trust/p11-kit-trust-0.22.1-1.tar.xz C:\Users\user\cyg64/http%3a%2= f%2fcygwin.mirror.constant.com%2f/x86_64/release/p11-kit/p11-kit-trust/p11-= kit-trust-0.22.1-1.tar.xz.tmp >> 2016/01/26 17:20:31 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/p11-kit/p11-kit-trust/p11-kit-trust-0.= 22.1-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/perl/p= erl-5.22.1-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant= .com%2f/x86_64/release/perl/perl-5.22.1-1.tar.xz.tmp >> 2016/01/26 17:20:35 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/perl/perl-5.22.1-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/perl-E= rror/perl-Error-0.17024-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mi= rror.constant.com%2f/x86_64/release/perl-Error/perl-Error-0.17024-1.tar.xz.= tmp >> 2016/01/26 17:20:35 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/perl-Error/perl-Error-0.17024-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/perl/p= erl_autorebase/perl_autorebase-5.22.1-1.tar.xz C:\Users\user\cyg64/http%3a%= 2f%2fcygwin.mirror.constant.com%2f/x86_64/release/perl/perl_autorebase/perl= _autorebase-5.22.1-1.tar.xz.tmp >> 2016/01/26 17:20:35 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/perl/perl_autorebase/perl_autorebase-5= .22.1-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/perl/p= erl_base/perl_base-5.22.1-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.= mirror.constant.com%2f/x86_64/release/perl/perl_base/perl_base-5.22.1-1.tar= .xz.tmp >> 2016/01/26 17:20:36 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/perl/perl_base/perl_base-5.22.1-1.tar.= xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/popt/p= opt-1.16-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.c= om%2f/x86_64/release/popt/popt-1.16-1.tar.xz.tmp >> 2016/01/26 17:20:37 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/popt/popt-1.16-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/python= /python-2.7.10-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.cons= tant.com%2f/x86_64/release/python/python-2.7.10-1.tar.xz.tmp >> 2016/01/26 17:20:40 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/python/python-2.7.10-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/rebase= /rebase-4.4.1-1.tar.bz2 C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.cons= tant.com%2f/x86_64/release/rebase/rebase-4.4.1-1.tar.bz2.tmp >> 2016/01/26 17:20:41 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/rebase/rebase-4.4.1-1.tar.bz2 >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/rsync/= rsync-3.1.1-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constan= t.com%2f/x86_64/release/rsync/rsync-3.1.1-1.tar.xz.tmp >> 2016/01/26 17:20:42 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/rsync/rsync-3.1.1-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/run/ru= n-1.3.4-2.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.co= m%2f/x86_64/release/run/run-1.3.4-2.tar.xz.tmp >> 2016/01/26 17:20:43 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/run/run-1.3.4-2.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/sed/se= d-4.2.2-3.tar.bz2 C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.c= om%2f/x86_64/release/sed/sed-4.2.2-3.tar.bz2.tmp >> 2016/01/26 17:20:44 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/sed/sed-4.2.2-3.tar.bz2 >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/tar/ta= r-1.28-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com= %2f/x86_64/release/tar/tar-1.28-1.tar.xz.tmp >> 2016/01/26 17:20:45 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/tar/tar-1.28-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/tcsh/t= csh-6.19.00-2.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constan= t.com%2f/x86_64/release/tcsh/tcsh-6.19.00-2.tar.xz.tmp >> 2016/01/26 17:20:46 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/tcsh/tcsh-6.19.00-2.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/ncurse= s/terminfo/terminfo-6.0-1.20151017.tar.xz C:\Users\user\cyg64/http%3a%2f%2f= cygwin.mirror.constant.com%2f/x86_64/release/ncurses/terminfo/terminfo-6.0-= 1.20151017.tar.xz.tmp >> 2016/01/26 17:20:46 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/ncurses/terminfo/terminfo-6.0-1.201510= 17.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/tzcode= /tzcode-2015g-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.const= ant.com%2f/x86_64/release/tzcode/tzcode-2015g-1.tar.xz.tmp >> 2016/01/26 17:20:47 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/tzcode/tzcode-2015g-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/util-l= inux/util-linux-2.25.2-2.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mir= ror.constant.com%2f/x86_64/release/util-linux/util-linux-2.25.2-2.tar.xz.tmp >> 2016/01/26 17:20:48 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/util-linux/util-linux-2.25.2-2.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/vim/vi= m-7.4.891-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.= com%2f/x86_64/release/vim/vim-7.4.891-1.tar.xz.tmp >> 2016/01/26 17:20:50 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/vim/vim-7.4.891-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/vim/vi= m-common/vim-common-7.4.891-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwi= n.mirror.constant.com%2f/x86_64/release/vim/vim-common/vim-common-7.4.891-1= .tar.xz.tmp >> 2016/01/26 17:20:54 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/vim/vim-common/vim-common-7.4.891-1.ta= r.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/vim/vi= m-minimal/vim-minimal-7.4.891-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcyg= win.mirror.constant.com%2f/x86_64/release/vim/vim-minimal/vim-minimal-7.4.8= 91-1.tar.xz.tmp >> 2016/01/26 17:20:55 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/vim/vim-minimal/vim-minimal-7.4.891-1.= tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/which/= which-2.20-2.tar.bz2 C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constan= t.com%2f/x86_64/release/which/which-2.20-2.tar.bz2.tmp >> 2016/01/26 17:20:55 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/which/which-2.20-2.tar.bz2 >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/vim/xx= d/xxd-7.4.891-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.const= ant.com%2f/x86_64/release/vim/xxd/xxd-7.4.891-1.tar.xz.tmp >> 2016/01/26 17:20:56 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/vim/xxd/xxd-7.4.891-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/xz/xz-= 5.2.2-1.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.constant.com%= 2f/x86_64/release/xz/xz-5.2.2-1.tar.xz.tmp >> 2016/01/26 17:20:56 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/xz/xz-5.2.2-1.tar.xz >> get_url_to_file http://cygwin.mirror.constant.com//x86_64/release/zlib/z= lib0/zlib0-1.2.8-3.tar.xz C:\Users\user\cyg64/http%3a%2f%2fcygwin.mirror.co= nstant.com%2f/x86_64/release/zlib/zlib0/zlib0-1.2.8-3.tar.xz.tmp >> 2016/01/26 17:20:57 Downloaded C:\Users\user\cyg64/http%3a%2f%2fcygwin.m= irror.constant.com%2f/x86_64/release/zlib/zlib0/zlib0-1.2.8-3.tar.xz >> 2016/01/26 17:20:57 Ending cygwin install >> =3D=3D=3D=3D=3D End setup.log.full =3D=3D=3D=3D=3D >> >> =3D=3D=3D=3D=3D Begin email-word-wrap-friendly DOS script =3D=3D=3D=3D=3D >> setlocal >> >> if exist %HOMEDRIVE%%HOMEPATH%\cyg64 ( >> rmdir /s /q %HOMEDRIVE%%HOMEPATH%\cyg64 >> ) >> mkdir %HOMEDRIVE%%HOMEPATH%\cyg64 >> >> set CYGSETUP=3D%HOMEDRIVE%%HOMEPATH%\cyg64\cygsetup64.exe >> >> for /f "tokens=3D4-7 delims=3D[.] " %%i in ('ver') do ( >> if %%i=3D=3DVersion (set v=3D%%j.%%k) else (set v=3D%%i.%%j) >> ) >> if %v%=3D=3D6.1 ( >> bitsadmin /transfer "CygwinDownload" ^ >> https://www.cygwin.com/setup-x86_64.exe %CYGSETUP% >> ) else ( >> powershell -command ^ >> "& { iwr https://www.cygwin.com/setup-x86_64.exe -OutFile $env:CYGSE= TUP } " >> ) >> >> %CYGSETUP% -D -q -R %HOMEDRIVE%%HOMEPATH%\cyg64 -a x86_64 ^ >> -l %HOMEDRIVE%%HOMEPATH%\cyg64 -s http://cygwin.mirror.constant.com ^ >> -P openssh,autossh,nano,vim,git >> >> endlocal >> =3D=3D=3D=3D=3D End email-word-wrap-friendly DOS script =3D=3D=3D=3D=3D >> >> On Tue, Jan 26, 2016 at 2:31 PM, Andrey Repin wrot= e: >>> >>> Greetings, Matthew Adams! >>> >>> > After assembling information from all over the Internet, I've managed >>> > to come up with a DOS batch script that should be working AFAICT, but >>> > after the Cygwin setup executable finishes (seemingly successfully), >>> > there is no bin directory in the Cygwin root folder. >>> >>> > Why is it failing? Fixes welcome! :) >>> >>> > NB: It attempts to cleanly install in a directory called cyg64 in the >>> > current user's home directory. >>> >>> > setlocal >>> >>> > if exist %HOMEDRIVE%%HOMEPATH%\cyg64 rmdir /s /q %HOMEDRIVE%%HOMEPATH= %\cyg64 >>> > mkdir %HOMEDRIVE%%HOMEPATH%\cyg64 >>> >>> > set CYGSETUP=3D%HOMEDRIVE%%HOMEPATH%\cyg64\cygsetup64.exe >>> >>> > for /f "tokens=3D4-7 delims=3D[.] " %%i in ('ver') do (if %%i=3D=3DVe= rsion >>> > (set v=3D%%j.%%k) else (set v=3D%%i.%%j)) >>> > if %v%=3D=3D6.1 ( >>> > bitsadmin /transfer "CygwinDownload" >>> > https://www.cygwin.com/setup-x86_64.exe %CYGSETUP% >>> > ) else ( >>> > powershell -command "& { iwr https://www.cygwin.com/setup-x86_64.exe >>> > -OutFile $env:CYGSETUP } " >>> > ) >>> >>> > %CYGSETUP% -D -q -R %HOMEDRIVE%%HOMEPATH%\cyg64 -a x86_64 -l >>> > %HOMEDRIVE%%HOMEPATH%\cyg64 -s http://cygwin.mirror.constant.com -P >>> > openssh,autossh,nano,vim,git >>> >>> > endlocal >>> >>> What is in the logs? >>> >>> >>> -- >>> With best regards, >>> Andrey Repin >>> Tuesday, January 26, 2016 23:31:16 >>> >>> Sorry for my terrible english... >>> >> >> >> >> -- >> mailto:matthew@matthewadams.me >> skype:matthewadams12 >> googletalk:matthew@matthewadams.me >> http://matthewadams.me >> http://www.linkedin.com/in/matthewadams > > > > > -- > mailto:matthew@matthewadams.me > skype:matthewadams12 > googletalk:matthew@matthewadams.me > http://matthewadams.me > http://www.linkedin.com/in/matthewadams --=20 mailto:matthew@matthewadams.me skype:matthewadams12 googletalk:matthew@matthewadams.me http://matthewadams.me http://www.linkedin.com/in/matthewadams -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple