This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Multiple installations and 3PPs (FAQ alert)


On Fri, 21 Jan 2005, Christopher Faylor wrote:

> On Fri, Jan 21, 2005 at 11:17:30PM -0500, Larry Hall wrote:
> >Perhaps this was the reference Dick had in mind?
> >
> >How do I uninstall all of Cygwin?
> ><http://cygwin.com/faq/faq_toc.html#TOC20>
>
> Perhaps.
>
> Joshua, if you have a chance, could you add something about using mount
> to remove the options.  Of course, this might be sort of a chicken/egg
> thing.
>
> You could do something like:
>
> mount --remove-all-mounts
>
> Then use "My Computer" to delete the cygwin directory.
>
> This would still leave an Cygnus Solutions key in the registry, though.
>
> cgf

Should we, perhaps, provide a small 'uninstall' script, maybe in
/usr/sbin, that would perform a umount and then use regtool to remove the
registry key?  It could even be a .bat, which will enable it to delete all
of Cygwin once the last Cygwin process exits...  A postinstall script
could generate it, too, so that it contains explicit paths of the Cygwin
root directory.  Something like

------ BEGIN gen-uninst.sh ------
#!/bin/sh
CYGDIR="`/bin/cygpath -aw /`"
cat > /usr/sbin/uninstall.bat <<EOF
$CYGDIR\\umount -s -A
$CYGDIR\\umount -A
copy $CYGDIR\\cygwin1.dll $CYGDIR\\regtool.exe %TEMP%
$CYGDIR\\rm -rf /
del /s $CYGDIR
%TEMP%\\regtool remove "/HKLM/Software/Cygnus Solutions"
%TEMP%\\regtool remove "/HKCU/Software/Cygnus Solutions"
del %TEMP%\\cygwin1.dll %TEMP%\\regtool.exe
EOF
------- END gen-uninst.sh -------

(I don't recall whether the cygwin DLL will try to create the HKLM key or
only the HKCU key if none are present).
	Igor
-- 
				http://cs.nyu.edu/~pechtcha/
      |\      _,,,---,,_		pechtcha@cs.nyu.edu
ZZZzz /,`.-'`'    -.  ;-;;,_		igor@watson.ibm.com
     |,4-  ) )-,_. ,\ (  `'-'		Igor Pechtchanski, Ph.D.
    '---''(_/--'  `-'\_) fL	a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

"The Sun will pass between the Earth and the Moon tonight for a total
Lunar eclipse..." -- WCBS Radio Newsbrief, Oct 27 2004, 12:01 pm EDT

--
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/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]