X-Recipient: archive-cygwin@delorie.com
X-Spam-Check-By: sourceware.org
From: "Ian Puleston" <ian@underpressuredivers.com>
To: <cygwin@cygwin.com>
References: <047f01c95bcd$850a7c50$8f1f74f0$@com>
In-Reply-To: <047f01c95bcd$850a7c50$8f1f74f0$@com>
Subject: RE: Install error on Perl PROC::Background under Cygwin
Date: Thu, 11 Dec 2008 12:58:09 -0800
Message-ID: <048001c95bd3$2c263ba0$8472b2e0$@com>
MIME-Version: 1.0
Content-Type: text/plain; 	charset="us-ascii"
Content-Transfer-Encoding: 7bit
X-IsSubscribed: yes
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

> -----Original Message-----
> From: Ian Puleston
> 
> I have perl 5.10.0 installed in cygwin, and I'm getting an error trying
> to install the Proc::Background module for it. "ERROR: Can't create
> '/usr/bin'; Do not have write permissions on '/usr/bin'"

That perl module uses the ExtUtils::Install module to install itself, so I
tried upgrading that to the latest and got a similar error trying to install
that one:

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
ERROR: Can't create '/usr/lib/perl5/5.10/ExtUtils'
Do not have write permissions on '/usr/lib/perl5/5.10/ExtUtils'
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

But then examining write permissions on that file led me to the cause. This
PC is logged into a Windows domain and in Cygwin my group is "Domain Users",
but for some reason the Cygwin installation directories had all been created
with group "Users" and with no write permission on directories including
/usr/bin. The following two commands, which needed to be run from an
elevated bash window, fixed it and allowed the perl module to install
properly:

[~]: chgrp -R "Domain Users" /cygdrive/c/Cygwin/    
[~]: chmod +w /usr/bin/

Ian



--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

