Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Message-ID: <3959BAF8.F08E3B32@cygnus.com>
Date: Wed, 28 Jun 2000 10:44:40 +0200
From: Corinna Vinschen <vinschen@cygnus.com>
Reply-To: cygwin <cygwin@sourceware.cygnus.com>
X-Mailer: Mozilla 4.73 [en] (X11; I; Linux 2.2.14 i686)
X-Accept-Language: de, en
MIME-Version: 1.0
To: Dave Arnold <avr_fan@hotmail.com>
CC: cygwin@sourceware.cygnus.com
Subject: Re: Inetutils and mount points
References: <003e01bfe0db$ec71bdc0$56251004@darnold-home.sybase.com>
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Dave Arnold wrote:
> autoexec.bat file but I still feel funny having so much nice stuff in a
> directory called e:\temp(this is my cygwin root directory /
> 
> If I want to change the name to something better like e:/cygwin  how would I
> do this?
> 
> I suspect I could do what you guys have been talking about, which is unmount
> everything including /  /usr/bin  /usr/lib and others then change the dir
> name from temp to cygwin then
> 
> > mount -f -s -b e:/cygwin /
> > mount -f -s -b e:/cygwin/bin /usr/bin
> > mount -f -s -b e:/cygwin/lib /usr/lib
> 
> and update my $PATH right?

First create the system mounts as above, then remove your user
mounts by

	umount /usr/lib
	umount /usr/bin
	umount /

then leave bash and rename your temp to cygwin and you are thru.
You don't need to change your $PATH.

For people who want to have user mount points instead:

cd to /bin and do all changes by prefixing the commands with "./":

	cd /bin
	./umount /usr/lib
	./umount /usr/bin
	./umount /
	./mount -f -b e:/cygwin /
	./mount -f -b e:/cygwin/bin /usr/bin
	./mount -f -b e:/cygwin/lib /usr/lib

then leave bash and rename your temp to cygwin.

Corinna

-- 
Corinna Vinschen
Cygwin Developer
Cygnus Solutions, a Red Hat company

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

