X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:reply-to:message-id:to:subject :in-reply-to:references:mime-version:content-type :content-transfer-encoding; q=dns; s=default; b=Q/Ii47Zdbrn6wPrB V2zXSs/jEcM+TTF188Okr3THUWW7hYJjrsuWTvBrm0fLvn1qqZyaCuBO0Zq+biOM 7CDb6RzRKPFfwKN9YvW38Wc+Gd0i65EUWwVSczG8k282Lalirn2hgf83KfywgL/9 FyJYL9EOG6G4N3G0/SI/+KXZ2hs= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:reply-to:message-id:to:subject :in-reply-to:references:mime-version:content-type :content-transfer-encoding; s=default; bh=I44HOPsC5iz9aVZe8v7xbB 0HCPY=; b=d7m9U0BbRZGkHV8Krt1HbaKcqwRA5x37neBpKOOzqv5+eEJFKURYHH YWqJsAkn4YPtYywk2+aMApEF9lq2zshEsa2vPhw3Xa2Hvy/LmWzrXKN282rvxP0A QE6cDP7M3Hslp/GCIpTyx+j3RDSYER4jTL7WkfDUzWUZ1SlQv1ueo= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=3.8 required=5.0 tests=AWL,BAYES_50,FREEMAIL_FROM,KAM_THEBAT,SPF_SOFTFAIL autolearn=no version=3.3.2 X-HELO: smtpback.ht-systems.ru Date: Wed, 6 Aug 2014 20:01:36 +0400 From: Andrey Repin Reply-To: cygwin AT cygwin DOT com Message-ID: <715654858.20140806200136@yandex.ru> To: Nikhil Nair , cygwin AT cygwin DOT com Subject: Re: Cygwin terminal collapse In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Greetings, Nikhil Nair! > One thing I should, perhaps, mention: I'd also been using Cygwin Ports, and > it looks like I'd got more recent versions of some packages by adding that > repository. > So, any further hints would be most welcome... Using Ports is not a problem per se, but NOT using ports AFTER you've used them once may trigger serious issues in package consistency. I have this little script #!/bin/sh ARCH=x86 if [ "$(uname -m)" = "x86_64" ]; then ARCH=${ARCH}_64 fi LANG=C wget -N "http://cygwin.com/setup-${ARCH}.exe" if [ "$1" = "ports" ]; then run ./setup-${ARCH}.exe -K http://cygwinports.org/ports.gpg else run ./setup-${ARCH}.exe fi and I always start it with "ports" option since I've used ports repo once to bump a number of applications to a desired version. Talking about your cause directly, seeing as simple resolutions did not quite worked, I suggest to go the long way. Make sure ALL the Cygwin applications are closed. That includes anything that is possible located in your Cygwin home directory, and any applications that may have files open from these directories. Rename your Cygwin folder to something else. Cygwin.old or whatever. Launch setup.exe and reinstall Cygwin anew. Pick appropriate type for your tasks, though. While Cygwin64 is mature enough for work, it still lacking/behind on some packages, and may not be suitable for your needs. -- WBR, Andrey Repin (anrdaemon AT yandex DOT ru) 06.08.2014, <19:55> Sorry for my terrible english... -- 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